ae3ce54f57
Sorts the Workflow table to be more predictable Adds new shared SCSS table rules. Adds a default with as 100% (there have never been half tables) Overwrites the rules for sticky tables
63 lines
1.0 KiB
SCSS
63 lines
1.0 KiB
SCSS
@import '~assets/styles/tables.scss';
|
|
|
|
.table-container {
|
|
overflow: auto;
|
|
|
|
table {
|
|
/** Title */
|
|
.mat-column-title {
|
|
min-width: 100px;
|
|
|
|
.mat-form-field {
|
|
width: 95%;
|
|
}
|
|
}
|
|
|
|
/** Filename */
|
|
.mat-column-filename {
|
|
min-width: 100px;
|
|
}
|
|
|
|
/** Information */
|
|
.mat-column-information {
|
|
min-width: 100px;
|
|
}
|
|
|
|
/** Hidden */
|
|
.mat-column-hidden {
|
|
min-width: 100px;
|
|
}
|
|
|
|
/** remove */
|
|
.mat-column-remove {
|
|
min-width: 100px;
|
|
}
|
|
|
|
.file-info-cell {
|
|
display: grid;
|
|
margin: 0;
|
|
|
|
span {
|
|
.mat-icon {
|
|
font-size: 130%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.selection-area {
|
|
margin-bottom: 1em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.upload-area {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.action-buttons {
|
|
button + button {
|
|
margin-left: 1em;
|
|
}
|
|
}
|