Blame view
templates/html/common/zim-table-style.css
1.57 KB
1f4a50657 Utilisation de fi... |
1 2 3 4 5 6 7 8 9 10 |
/* Table definition */ table { border-collapse: collapse; width: 98%; margin-left: auto; margin-right: auto; } td,th { |
8acad7fc6 Utilisation d'un ... |
11 |
border: 1px solid var(--main-td-th-border-color); |
1f4a50657 Utilisation de fi... |
12 13 14 |
padding: 4px; } |
8acad7fc6 Utilisation d'un ... |
15 16 17 |
tr:nth-child(odd){background-color: var(--main-tr-odd-background-color);} tr:nth-child(even){background-color: var(--main-tr-even-background-color);} |
1f4a50657 Utilisation de fi... |
18 |
|
8acad7fc6 Utilisation d'un ... |
19 |
tr:hover {background-color: var(--main-tr-hover-background-color);} |
1f4a50657 Utilisation de fi... |
20 21 22 23 24 25 26 27 28 29 30 31 |
th { padding-top: 6px; padding-bottom: 6px; /*background-color: #4CAF50;*/ /*background-color: #3a853c;*/ /*background-color: #85733a;*/ /*background-color: #3a7685;*/ /*background-color: #295e2a;*/ /*color: white;*/ /*background-color: #d1e1c1;*/ |
8acad7fc6 Utilisation d'un ... |
32 33 |
background-color: var(--main-th-background-color); color: var(--main-th-color); |
1f4a50657 Utilisation de fi... |
34 |
} |
a349cce98 + Ajouté les icon... |
35 |
|
8acad7fc6 Utilisation d'un ... |
36 |
/* Overriding for the navigation table in header */ |
a349cce98 + Ajouté les icon... |
37 38 39 40 41 42 43 44 45 46 47 48 |
table.navigation { border-collapse: collapse; width: auto; margin-left: 0; margin-right: auto; } td.navigation, th.navigation { border: 0; padding: 0; } |
8acad7fc6 Utilisation d'un ... |
49 50 51 52 |
tr.navigation { background-color: white; } |
a349cce98 + Ajouté les icon... |
53 54 55 |
tr.navigation:hover { background-color: white; } |