forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-notes.css
More file actions
72 lines (62 loc) · 1.08 KB
/
release-notes.css
File metadata and controls
72 lines (62 loc) · 1.08 KB
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
.table-of-contents a {
color: #02303A;
}
#fixed-issues-list ul,
.table-of-contents ul,
.topic ul {
list-style-type: none;
}
#fixed-issues-list li:before,
.table-of-contents ul li:before,
.topic ul li:before {
color: #02303A;
content: '\002022';
font: 0.9em bold sans-serif;
margin-left: -1em;
margin-right: 0.4em;
}
pre {
overflow: auto;
}
ul.toc-sub {
margin-bottom: 0;
}
button.display-toggle {
cursor: pointer;
}
a.incubating-marker {
display: inline;
color: white;
font-style: italic;
font-size: 0.6em;
text-shadow: none;
margin-left: 0.6em;
border-radius: 6px;
background-color: rgb(160, 160, 160);
border: 1px solid rgb(150, 150, 150);
padding: 1px 5px;
box-shadow: none;
cursor: pointer;
vertical-align: 1px;
}
a.incubating-marker:hover {
text-decoration: none;
border: 1px solid rgb(150, 150, 150);
}
/* Same as code highlighting values in docs.css */
.java_keyword {
color: #963;
}
.java_comment {
color: #998;
}
.java_plain, .java_type {
}
.java_separator {
}
.java_operator {
color: #555;
}
.java_literal {
color: #d14;
}