2017-07-11 16:50:29 +02:00
|
|
|
@import "colors";
|
2017-07-06 16:25:51 +02:00
|
|
|
@import "constants";
|
|
|
|
@import "mixins";
|
|
|
|
|
2017-07-27 16:02:35 +02:00
|
|
|
.table { // TODO : tester de remplacer par l'élément table uniquement
|
2017-07-06 16:25:51 +02:00
|
|
|
width: 100%;
|
|
|
|
|
2017-07-27 16:02:35 +02:00
|
|
|
tbody tr {
|
|
|
|
border-top: 1px solid $border-grey;
|
|
|
|
}
|
|
|
|
|
2017-07-06 16:25:51 +02:00
|
|
|
td {
|
2017-07-27 16:02:35 +02:00
|
|
|
@include vertical-padding($default-spacer);
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: (3 * $default-spacer) 2px;
|
2017-07-06 16:25:51 +02:00
|
|
|
}
|
|
|
|
|
2017-07-27 16:27:29 +02:00
|
|
|
&.hoverable {
|
|
|
|
tbody tr:hover {
|
|
|
|
background: $light-grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-27 15:30:25 +02:00
|
|
|
&.vertical {
|
2017-10-16 17:39:01 +02:00
|
|
|
font-size: 16px;
|
2017-07-27 15:30:25 +02:00
|
|
|
line-height: 22px;
|
2017-07-11 16:50:29 +02:00
|
|
|
|
2017-07-27 16:02:35 +02:00
|
|
|
tr {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2017-07-27 15:30:25 +02:00
|
|
|
th {
|
2017-07-27 16:02:35 +02:00
|
|
|
@include vertical-padding($default-spacer);
|
2017-07-27 15:30:25 +02:00
|
|
|
|
|
|
|
&.header-section {
|
|
|
|
color: $blue;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2017-07-11 16:50:29 +02:00
|
|
|
}
|
2017-07-06 16:25:51 +02:00
|
|
|
}
|
|
|
|
}
|