forked from Surachai-kent/css-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathast.json
More file actions
125 lines (125 loc) · 2.94 KB
/
ast.json
File metadata and controls
125 lines (125 loc) · 2.94 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
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
{
"type": "stylesheet",
"stylesheet": {
"rules": [
{
"type": "document",
"document": "url-prefix()",
"vendor": "-moz-",
"rules": [
{
"type": "comment",
"comment": " ui above ",
"position": {
"start": {
"line": 2,
"column": 3
},
"end": {
"line": 2,
"column": 17
},
"source": "input.css"
}
},
{
"type": "rule",
"selectors": [
".ui-select .ui-btn select"
],
"declarations": [
{
"type": "comment",
"comment": " ui inside ",
"position": {
"start": {
"line": 4,
"column": 5
},
"end": {
"line": 4,
"column": 20
},
"source": "input.css"
}
},
{
"type": "declaration",
"property": "opacity",
"value": ".0001",
"position": {
"start": {
"line": 5,
"column": 5
},
"end": {
"line": 6,
"column": 3
},
"source": "input.css"
}
}
],
"position": {
"start": {
"line": 3,
"column": 3
},
"end": {
"line": 6,
"column": 4
},
"source": "input.css"
}
},
{
"type": "rule",
"selectors": [
".icon-spin"
],
"declarations": [
{
"type": "declaration",
"property": "height",
"value": ".9em",
"position": {
"start": {
"line": 9,
"column": 5
},
"end": {
"line": 9,
"column": 17
},
"source": "input.css"
}
}
],
"position": {
"start": {
"line": 8,
"column": 3
},
"end": {
"line": 10,
"column": 4
},
"source": "input.css"
}
}
],
"position": {
"start": {
"line": 1,
"column": 1
},
"end": {
"line": 11,
"column": 2
},
"source": "input.css"
}
}
]
}
}