-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsideBar.html
214 lines (187 loc) · 5.18 KB
/
sideBar.html
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>extensionSideBar</title>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<style>
body {
margin: 0;
padding: 0;
font-size: 12px;
}
.toolbar {
width: 100%;
padding: 4px 0;
display: inline-block;
}
.bar-bottom-line {
border-top: 0;
border-right: 0;
border-left: 0;
margin: 0;
border-bottom: 1px solid #bdbdbd;
}
.content {
padding: 0 4px 0 4px;
}
.content ul {
margin: 0;
list-style: none;
-webkit-padding-start: 0;
}
.content span {
border: 1px solid #d5d5d5;
display: inline-block;
background-color: #ECE7E7;
text-align: center;
padding: 2px;
margin: 2px;
max-height: 20px;
min-width: 30px;
max-width: 100px;
cursor: default;
white-space: nowrap;
text-overflow: ellipsis;
}
/*id|class|attr*/
.content span.overflow-hide {
vertical-align: bottom;
overflow-x: hidden;
overflow-y: hidden;
}
.content span.isCheck {
background-color: white;
}
/*the attribute line is Not displayed by default*/
[class^=tag-line-attr-] {
display: none;
}
[class^=tag-line-attr-].show {
display: block;
}
ul.noAttr {
margin-left: 12px;
}
li.show {
/*margin-left: 24px;*/
margin-left: 30px;
}
li.show > span {
overflow: hidden;
border-style: dashed;
}
.fa {
width: 12px;
font-size: 14px;
cursor: pointer;
text-align: center;
}
.toolbar > .fa {
width: 20px;
margin: 0 0 0 8px;
font-size: 14px;
color: #505050;
}
.fa.fa-toggle-on {
color: #d80000;
}
.result {
padding: 8px 0 8px 18px;
}
.result span {
display: none;
line-height: 22px;
}
.result span.active {
display: initial;
font-family: monospace;
font-size: 12px;
}
.label-jQuery-expression, .label-elements-length {
line-height: 23px;
}
.label-jQuery-expression {
cursor: pointer;
}
.result span.alert {
color: red;
font-family: monospace;
font-size: 12px;
}
.result .calc-container .fa {
width: 14px;
margin: 5px 8px 8px 0;
font-size: 14px;
color: #505050;
}
.calc-container {
display: none;
margin-left: 46px;
}
.calc-container span {
display: inline-block;
text-align: center;
padding: 1px;
margin: 2px 4px 2px 0;
font-family: monospace;
font-size: 12px;
width: 63px;
overflow: hidden;
height: 20px;
border: 1px solid #d5d5d5;
background-color: #ECE7E7;
cursor: default;
}
.calc-container .line {
width: 470px;
margin-bottom: 10px;
/*min-height: 35px;*/
}
.operate-container span{
border-style: dashed;
}
.operate-container span.selected{
background-color: white;
border-style: solid;
}
.line span.click{
cursor: pointer;
}
.line span.selected{
background-color: white;
}
.line.simple-method span{
width: 77px;
}
.line span.lg-width{
padding-left: 0;
width: 64px;
font-size: 11px;
}
</style>
</head>
<body>
<div class="toolbar">
<i class="auto_locate fa fa-toggle-off" title="auto locate"></i>
<i class="locate fa fa-map-marker" title="locate"></i>
<i class="mark fa fa-th-large" title="mark"></i>
<i class="clear fa fa-eraser" title="clear all cover layers"></i>
<i class="copy fa fa-clipboard" title="copy to clipboard"></i>
<!--<i class="item-mark-links fa fa-list-ul" title="mark all visibel links"></i>-->
<i class="jq fa fa-file-code-o" title="inject jQuery" style="float: right;margin-right: 10px"></i>
</div>
<hr class="bar-bottom-line">
<div class="result">
<label class="label-elements-length">length</label>:<span class="selector-num active">0</span> <br/>
<label class="label-jQuery-expression">expression</label>:<span class="selector active"></span> <span
class="alert"></span> <br/>
<div class="calc-container"></div>
</div>
<br/>
<div class="content"></div>
<script src="jQuery-1.11.3-str.js"></script>
<script src="Helper.js"></script>
<script src="sideBar.js"></script>
</body>
</html>