-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcleandiff.css
87 lines (84 loc) · 1.39 KB
/
cleandiff.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
body{
background: rgb(36,36,36);
color: rgb(163,160,165);
/* a dim, but visible grey(ish) */
}
.diff {
display: table;
width: 100%;
}
.pre {
font-family: monospace;
white-space: pre;
}
.line{
clear: left;
display:table-row;
}
.unchanged {
display: none;
}
.expanded{
display: table-row;
background: #313131;
}
label {
display: inline-block;
cursor: pointer;
color: #F3D39D;
}
input[type=checkbox] {
display: none;
}
#unchanged_checkbox:checked ~ * .unchanged {
display: table-row;
background: #313131;
}
.linenums{
margin-right: 1rem;
padding-right: 0.5rem;
border-right: solid 1px #ccc;
text-align: right;
color: rgb(255,222,165);
width:7em;
text-overflow: ellipsis;
display:table-cell;
cursor: pointer;
}
.source{
margin-left: 1rem;
padding-left: 0.5rem;
display:table-cell;
}
.bold {font-style: bold;}
.green { color: #79DB73;}
.red { color: #f1a340;}
.filename {
color: rgba(115, 120, 144, 1);
font-family: sans-serif;
font-size: 120%;
padding-left: 6em;
border-bottom: solid 1px rgba(115, 120, 144, 1);
}
.chrome {
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
background: rgba(235,235,235,0.85);
border-bottom: 1px solid rgba(0,0,0,0.1);
text-align: left;
width: 100%;
position: relative;
left: -8;
top: -8;
}
label {
max-height: 20px;
}
#unchanged_toggle{
width: 30px;
margin-top: -20px;
float: left;
margin-right: 1em;
}
#unchanged_toggle g path {
fill: #F3D39D;
}