Skip to content

Commit 8785d23

Browse files
committed
Add doc
1 parent 5457994 commit 8785d23

34 files changed

+16315
-0
lines changed

diff.css

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
.changed .key,
2+
.added .key,
3+
.removed .key {
4+
font-weight: 600;
5+
}
6+
7+
.ichanged,
8+
.changed {
9+
color: #ec971f;
10+
}
11+
12+
.iremoved,
13+
.removed {
14+
color: #E23E57;
15+
text-decoration: line-through;
16+
}
17+
18+
.iadded,
19+
.added {
20+
color: #449d44;
21+
}
22+
23+
.json ul {
24+
padding-left: 15px;
25+
margin-left: -5px;
26+
padding-top: 5px;
27+
margin-top: -7px;
28+
list-style-type: none;
29+
background-image: url(./line.gif);
30+
background-repeat: repeat-y;
31+
background-position-y: 13px;
32+
background-position-x: 0;
33+
}
34+
35+
.json.j-fade li {
36+
color: #aaa;
37+
}
38+
39+
.json * {
40+
-webkit-transition: color .05s ease;
41+
-moz-transition: color .05s ease;
42+
-o-transition: color .05s ease;
43+
transition: color .1s ease;
44+
}
45+
46+
.json.line-off ul {
47+
background-image: none;
48+
}
49+
50+
.json ul[collapsed="on"] {
51+
background-image: none;
52+
}
53+
54+
.json ul[collapsed="on"] > * {
55+
display: none;
56+
}
57+
58+
.json ul[collapsed="on"] > *:first-child {
59+
display: block;
60+
}
61+
62+
.json li {
63+
margin-top: 1px;
64+
padding-left: 15px;
65+
}
66+
67+
.json ul:before,
68+
.json ul[collapsed="off"]:before {
69+
cursor: pointer;
70+
content: "\f0d7";
71+
position: absolute;
72+
font: normal normal normal 14px/1 FontAwesome;
73+
margin-left: -12px;
74+
margin-top: 3px;
75+
}
76+
77+
.json ul[collapsed="on"]:before {
78+
content: "\f0da";
79+
}
80+

0 commit comments

Comments
 (0)