-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathversion-tables.css
156 lines (135 loc) · 2.97 KB
/
version-tables.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
table tbody, th, td {
border: 1px solid #818589 !important;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 5px;
padding-right: 5px;
text-align: center;
}
tbody td {
background: #fff;
}
tbody td.red {
background: #f00;
color: #fff;
}
tbody td.blue {
background: #c9daf8;
}
tbody td.green {
background: #d9ead3;
}
tbody td.gray {
background: #f3f3f3;
}
tbody td.yellow {
background: #fff2cc;
}
/* version-table */
table.version-table tr.end-of-life th {
background: #f4cccc;
}
table.version-table tr.internal-support th {
background: #fce5cd;
}
table.version-table tr.maintenance th {
background: #fff2cc;
}
table.version-table tr.active th {
background: #d9ead3;
text-decoration: underline;
}
table.version-table tr.future th {
background: #fff;
}
table.version-table tr.future td {
font-style: italic;
}
table.version-table td:nth-child(4) {
text-align: start;
}
/* version-chart */
table.version-chart tr.end-of-life th {
background: #f4cccc;
}
table.version-chart tr.internal-support th {
background: #fce5cd;
}
table.version-chart tr.maintenance th {
background: #fff2cc;
}
table.version-chart tr.active th {
background: #d9ead3;
text-decoration: underline;
}
table.version-chart tr.future th {
background: #fff;
}
table.version-chart tr.future td {
font-style: italic;
}
table.version-chart td.internal-support {
background: #fce5cd;
}
table.version-chart td.maintenance {
background: #fff2cc;
}
table.version-chart td.active {
background: #d9ead3;
text-decoration: underline;
}
/* latest release column */
/*
* How to advance the selection of the latest release:
* Replace class 'y25q1' in the following selectors with 'y25q2' (the class
* referring to the quarter of the next release). Please also update this
* instruction as a courtesy to the next maintainer.
*/
/* visually replace 'yyQq' heading with string 'Latest' */
table.version-chart th.y25q1 span {
display: none;
}
table.version-chart th.y25q1::after {
content: "Latest"
}
/* draw a focus rectangle around the latest release column */
table.version-chart th.y25q1 {
border-top: 2px solid #e06666 !important;
border-left: 2px solid #e06666 !important;
border-right: 2px solid #e06666 !important;
}
table.version-chart td.y25q1 {
font-weight: bold;
border-left: 2px solid #e06666 !important;
border-right: 2px solid #e06666 !important;
}
table.version-chart tr:last-child td.y25q1 {
border-bottom: 2px solid #e06666 !important;
}
/* future release columns */
table.version-chart td:not(:has(~ .y25q1)):not(.y25q1) {
font-style: italic;
}
/* legend */
table.legend th {
font-weight: normal;
}
table.legend tr.end-of-life th {
background: #f4cccc;
}
table.legend tr.internal-support th {
background: #fce5cd;
}
table.legend tr.maintenance th {
background: #fff2cc;
}
table.legend tr.active th {
background: #d9ead3;
text-decoration: underline;
}
table.legend tr.future th {
background: #fff;
}
table.legend td:nth-child(2) {
text-align: start;
}