79 lines
1.3 KiB
SCSS
79 lines
1.3 KiB
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.table.dossiers-table {
|
|
font-size: 14px;
|
|
|
|
th {
|
|
vertical-align: middle;
|
|
padding: (2 * $default-spacer) $default-spacer;
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
}
|
|
|
|
thead a {
|
|
color: #000000;
|
|
}
|
|
|
|
.caret-icon {
|
|
vertical-align: top;
|
|
margin-top: 9px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.cell-link {
|
|
color: $black;
|
|
// In order to have identical height in the table header and the table rows,
|
|
// we compensate for the height difference between the biggest element of the header
|
|
// (the Personnaliser button, 38px) and the biggest cell-link element of the rows (the label, 28px)
|
|
padding: calc((2 * #{$default-spacer}) + ((38px - 28px) / 2)) $default-spacer;
|
|
display: block;
|
|
}
|
|
|
|
.icon.folder {
|
|
position: relative;
|
|
|
|
.notifications {
|
|
top: -3px;
|
|
right: -6px;
|
|
}
|
|
}
|
|
|
|
.notification-col {
|
|
width: 45px;
|
|
|
|
a {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.number-col {
|
|
width: 110px;
|
|
}
|
|
|
|
.folder-col {
|
|
text-align: center;
|
|
}
|
|
|
|
.status-col {
|
|
width: 110px;
|
|
|
|
.label {
|
|
width: 110px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.updated-at-col {
|
|
width: 110px;
|
|
}
|
|
|
|
.follow-col {
|
|
width: 200px;
|
|
text-align: right;
|
|
padding-left: $default-spacer;
|
|
padding-right: $default-spacer;
|
|
}
|
|
}
|