]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_tables.scss
Fixed some cross browser flexbox popup issues
[bookstack] / resources / assets / sass / _tables.scss
1
2 table.table {
3   width: 100%;
4   tr {
5     border-bottom: 1px solid #DDD;
6   }
7   th, td {
8     text-align: left;
9     border: none;
10     padding: $-xs $-xs;
11     vertical-align: middle;
12   }
13   th {
14     font-weight: bold;
15   }
16   tr:hover {
17     background-color: #EEE;
18   }
19 }
20
21 table {
22   max-width: 100%;
23   thead {
24     background-color: #F8F8F8;
25     font-weight: 500;
26   }
27 }
28
29 table.no-style {
30   td {
31     border: 0;
32     padding: 0;
33   }
34 }
35
36 table.list-table {
37   margin: 0 -$-xs;
38   td {
39     border: 0;
40     vertical-align: middle;
41     padding: $-xs;
42   }
43 }