binproxy 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/bin/binproxy +135 -0
- data/lib/binproxy.rb +2 -0
- data/lib/binproxy/bd_util.rb +267 -0
- data/lib/binproxy/bindata.rb +44 -0
- data/lib/binproxy/class_loader.rb +64 -0
- data/lib/binproxy/connection.rb +105 -0
- data/lib/binproxy/connection/filters.rb +190 -0
- data/lib/binproxy/logger.rb +17 -0
- data/lib/binproxy/parser.rb +76 -0
- data/lib/binproxy/parsers/chat_demo.rb +14 -0
- data/lib/binproxy/parsers/dns.rb +70 -0
- data/lib/binproxy/parsers/dumb_http.rb +28 -0
- data/lib/binproxy/parsers/msgpack.rb +56 -0
- data/lib/binproxy/parsers/plain_text.rb +4 -0
- data/lib/binproxy/parsers/raw_message.rb +4 -0
- data/lib/binproxy/parsers/x11_proto.rb +134 -0
- data/lib/binproxy/parsers/zmq.rb +62 -0
- data/lib/binproxy/proxy.rb +242 -0
- data/lib/binproxy/proxy_event.rb +57 -0
- data/lib/binproxy/proxy_message.rb +191 -0
- data/lib/binproxy/session.rb +47 -0
- data/lib/binproxy/web_console.rb +194 -0
- data/public/bright_squares.png +0 -0
- data/public/ui/app.js +54910 -0
- data/public/ui/fixed-data-table.css +509 -0
- data/views/application.scss +335 -0
- data/views/common.scss +90 -0
- data/views/config.haml +54 -0
- data/views/config.scss +15 -0
- data/views/index.haml +15 -0
- metadata +325 -0
@@ -0,0 +1,509 @@
|
|
1
|
+
/**
|
2
|
+
* FixedDataTable v0.6.3
|
3
|
+
*
|
4
|
+
* Copyright (c) 2015, Facebook, Inc.
|
5
|
+
* All rights reserved.
|
6
|
+
*
|
7
|
+
* This source code is licensed under the BSD-style license found in the
|
8
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
9
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
10
|
+
*/
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Copyright (c) 2015, Facebook, Inc.
|
14
|
+
* All rights reserved.
|
15
|
+
*
|
16
|
+
* This source code is licensed under the BSD-style license found in the
|
17
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
18
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
19
|
+
*
|
20
|
+
* @providesModule fixedDataTableCellGroupLayout
|
21
|
+
*/
|
22
|
+
|
23
|
+
.fixedDataTableCellGroupLayout_cellGroup {
|
24
|
+
-webkit-backface-visibility: hidden;
|
25
|
+
backface-visibility: hidden;
|
26
|
+
left: 0;
|
27
|
+
overflow: hidden;
|
28
|
+
position: absolute;
|
29
|
+
top: 0;
|
30
|
+
white-space: nowrap;
|
31
|
+
}
|
32
|
+
|
33
|
+
.fixedDataTableCellGroupLayout_cellGroup > .public_fixedDataTableCell_main {
|
34
|
+
display: inline-block;
|
35
|
+
vertical-align: top;
|
36
|
+
white-space: normal;
|
37
|
+
}
|
38
|
+
|
39
|
+
.fixedDataTableCellGroupLayout_cellGroupWrapper {
|
40
|
+
position: absolute;
|
41
|
+
top: 0;
|
42
|
+
}
|
43
|
+
/**
|
44
|
+
* Copyright (c) 2015, Facebook, Inc.
|
45
|
+
* All rights reserved.
|
46
|
+
*
|
47
|
+
* This source code is licensed under the BSD-style license found in the
|
48
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
49
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
50
|
+
*
|
51
|
+
* @providesModule fixedDataTableCellLayout
|
52
|
+
*/
|
53
|
+
|
54
|
+
.fixedDataTableCellLayout_main {
|
55
|
+
border-right-style: solid;
|
56
|
+
border-right-width: 1px;
|
57
|
+
border-width: 0 1px 0 0;
|
58
|
+
box-sizing: border-box;
|
59
|
+
display: block;
|
60
|
+
overflow: hidden;
|
61
|
+
position: absolute;
|
62
|
+
white-space: normal;
|
63
|
+
}
|
64
|
+
|
65
|
+
.fixedDataTableCellLayout_lastChild {
|
66
|
+
border-width: 0 1px 1px 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
.fixedDataTableCellLayout_alignRight {
|
70
|
+
text-align: right;
|
71
|
+
}
|
72
|
+
|
73
|
+
.fixedDataTableCellLayout_alignCenter {
|
74
|
+
text-align: center;
|
75
|
+
}
|
76
|
+
|
77
|
+
.fixedDataTableCellLayout_wrap1 {
|
78
|
+
display: table;
|
79
|
+
}
|
80
|
+
|
81
|
+
.fixedDataTableCellLayout_wrap2 {
|
82
|
+
display: table-row;
|
83
|
+
}
|
84
|
+
|
85
|
+
.fixedDataTableCellLayout_wrap3 {
|
86
|
+
display: table-cell;
|
87
|
+
vertical-align: middle;
|
88
|
+
}
|
89
|
+
|
90
|
+
.fixedDataTableCellLayout_columnResizerContainer {
|
91
|
+
position: absolute;
|
92
|
+
right: 0px;
|
93
|
+
width: 6px;
|
94
|
+
z-index: 1;
|
95
|
+
}
|
96
|
+
|
97
|
+
.fixedDataTableCellLayout_columnResizerContainer:hover {
|
98
|
+
cursor: ew-resize;
|
99
|
+
}
|
100
|
+
|
101
|
+
.fixedDataTableCellLayout_columnResizerContainer:hover .fixedDataTableCellLayout_columnResizerKnob {
|
102
|
+
visibility: visible;
|
103
|
+
}
|
104
|
+
|
105
|
+
.fixedDataTableCellLayout_columnResizerKnob {
|
106
|
+
position: absolute;
|
107
|
+
right: 0px;
|
108
|
+
visibility: hidden;
|
109
|
+
width: 4px;
|
110
|
+
}
|
111
|
+
/**
|
112
|
+
* Copyright (c) 2015, Facebook, Inc.
|
113
|
+
* All rights reserved.
|
114
|
+
*
|
115
|
+
* This source code is licensed under the BSD-style license found in the
|
116
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
117
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
118
|
+
*
|
119
|
+
* @providesModule fixedDataTableColumnResizerLineLayout
|
120
|
+
*/
|
121
|
+
|
122
|
+
.fixedDataTableColumnResizerLineLayout_mouseArea {
|
123
|
+
cursor: ew-resize;
|
124
|
+
position: absolute;
|
125
|
+
right: -5px;
|
126
|
+
width: 12px;
|
127
|
+
}
|
128
|
+
|
129
|
+
.fixedDataTableColumnResizerLineLayout_main {
|
130
|
+
border-right-style: solid;
|
131
|
+
border-right-width: 1px;
|
132
|
+
box-sizing: border-box;
|
133
|
+
position: absolute;
|
134
|
+
z-index: 10;
|
135
|
+
}
|
136
|
+
|
137
|
+
body[dir="rtl"] .fixedDataTableColumnResizerLineLayout_main {
|
138
|
+
/* the resizer line is in the wrong position in RTL with no easy fix.
|
139
|
+
* Disabling is more useful than displaying it.
|
140
|
+
* #167 (github) should look into this and come up with a permanent fix.
|
141
|
+
*/
|
142
|
+
display: none !important;
|
143
|
+
}
|
144
|
+
|
145
|
+
.fixedDataTableColumnResizerLineLayout_hiddenElem {
|
146
|
+
display: none !important;
|
147
|
+
}
|
148
|
+
/**
|
149
|
+
* Copyright (c) 2015, Facebook, Inc.
|
150
|
+
* All rights reserved.
|
151
|
+
*
|
152
|
+
* This source code is licensed under the BSD-style license found in the
|
153
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
154
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
155
|
+
*
|
156
|
+
* @providesModule fixedDataTableLayout
|
157
|
+
*/
|
158
|
+
|
159
|
+
.fixedDataTableLayout_main {
|
160
|
+
border-style: solid;
|
161
|
+
border-width: 1px;
|
162
|
+
box-sizing: border-box;
|
163
|
+
overflow: hidden;
|
164
|
+
position: relative;
|
165
|
+
}
|
166
|
+
|
167
|
+
.fixedDataTableLayout_header,
|
168
|
+
.fixedDataTableLayout_hasBottomBorder {
|
169
|
+
border-bottom-style: solid;
|
170
|
+
border-bottom-width: 1px;
|
171
|
+
}
|
172
|
+
|
173
|
+
.fixedDataTableLayout_footer .public_fixedDataTableCell_main {
|
174
|
+
border-top-style: solid;
|
175
|
+
border-top-width: 1px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.fixedDataTableLayout_topShadow,
|
179
|
+
.fixedDataTableLayout_bottomShadow {
|
180
|
+
height: 4px;
|
181
|
+
left: 0;
|
182
|
+
position: absolute;
|
183
|
+
right: 0;
|
184
|
+
z-index: 1;
|
185
|
+
}
|
186
|
+
|
187
|
+
.fixedDataTableLayout_bottomShadow {
|
188
|
+
margin-top: -4px;
|
189
|
+
}
|
190
|
+
|
191
|
+
.fixedDataTableLayout_rowsContainer {
|
192
|
+
overflow: hidden;
|
193
|
+
position: relative;
|
194
|
+
}
|
195
|
+
|
196
|
+
.fixedDataTableLayout_horizontalScrollbar {
|
197
|
+
bottom: 0;
|
198
|
+
position: absolute;
|
199
|
+
}
|
200
|
+
/**
|
201
|
+
* Copyright (c) 2015, Facebook, Inc.
|
202
|
+
* All rights reserved.
|
203
|
+
*
|
204
|
+
* This source code is licensed under the BSD-style license found in the
|
205
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
206
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
207
|
+
*
|
208
|
+
* @providesModule fixedDataTableRowLayout
|
209
|
+
*/
|
210
|
+
|
211
|
+
.fixedDataTableRowLayout_main {
|
212
|
+
box-sizing: border-box;
|
213
|
+
overflow: hidden;
|
214
|
+
position: absolute;
|
215
|
+
top: 0;
|
216
|
+
}
|
217
|
+
|
218
|
+
.fixedDataTableRowLayout_body {
|
219
|
+
left: 0;
|
220
|
+
position: absolute;
|
221
|
+
top: 0;
|
222
|
+
}
|
223
|
+
|
224
|
+
.fixedDataTableRowLayout_fixedColumnsDivider {
|
225
|
+
-webkit-backface-visibility: hidden;
|
226
|
+
backface-visibility: hidden;
|
227
|
+
border-left-style: solid;
|
228
|
+
border-left-width: 1px;
|
229
|
+
left: 0;
|
230
|
+
position: absolute;
|
231
|
+
top: 0;
|
232
|
+
width: 0;
|
233
|
+
}
|
234
|
+
|
235
|
+
.fixedDataTableRowLayout_columnsShadow {
|
236
|
+
width: 4px;
|
237
|
+
}
|
238
|
+
|
239
|
+
.fixedDataTableRowLayout_rowWrapper {
|
240
|
+
position: absolute;
|
241
|
+
top: 0;
|
242
|
+
}
|
243
|
+
/**
|
244
|
+
* Copyright (c) 2015, Facebook, Inc.
|
245
|
+
* All rights reserved.
|
246
|
+
*
|
247
|
+
* This source code is licensed under the BSD-style license found in the
|
248
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
249
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
250
|
+
*
|
251
|
+
* @providesModule ScrollbarLayout
|
252
|
+
*/
|
253
|
+
|
254
|
+
.ScrollbarLayout_main {
|
255
|
+
box-sizing: border-box;
|
256
|
+
outline: none;
|
257
|
+
overflow: hidden;
|
258
|
+
position: absolute;
|
259
|
+
-webkit-transition-duration: 250ms;
|
260
|
+
transition-duration: 250ms;
|
261
|
+
-webkit-transition-timing-function: ease;
|
262
|
+
transition-timing-function: ease;
|
263
|
+
-webkit-user-select: none;
|
264
|
+
-moz-user-select: none;
|
265
|
+
-ms-user-select: none;
|
266
|
+
user-select: none;
|
267
|
+
}
|
268
|
+
|
269
|
+
.ScrollbarLayout_mainVertical {
|
270
|
+
bottom: 0;
|
271
|
+
right: 0;
|
272
|
+
top: 0;
|
273
|
+
-webkit-transition-property: background-color width;
|
274
|
+
transition-property: background-color width;
|
275
|
+
width: 15px;
|
276
|
+
}
|
277
|
+
|
278
|
+
.ScrollbarLayout_mainVertical.public_Scrollbar_mainActive,
|
279
|
+
.ScrollbarLayout_mainVertical:hover {
|
280
|
+
width: 17px;
|
281
|
+
}
|
282
|
+
|
283
|
+
.ScrollbarLayout_mainHorizontal {
|
284
|
+
bottom: 0;
|
285
|
+
height: 15px;
|
286
|
+
left: 0;
|
287
|
+
-webkit-transition-property: background-color height;
|
288
|
+
transition-property: background-color height;
|
289
|
+
}
|
290
|
+
|
291
|
+
/* Touching the scroll-track directly makes the scroll-track bolder */
|
292
|
+
.ScrollbarLayout_mainHorizontal.public_Scrollbar_mainActive,
|
293
|
+
.ScrollbarLayout_mainHorizontal:hover {
|
294
|
+
height: 17px;
|
295
|
+
}
|
296
|
+
|
297
|
+
.ScrollbarLayout_face {
|
298
|
+
left: 0;
|
299
|
+
overflow: hidden;
|
300
|
+
position: absolute;
|
301
|
+
z-index: 1;
|
302
|
+
}
|
303
|
+
|
304
|
+
/**
|
305
|
+
* This selector renders the "nub" of the scrollface. The nub must
|
306
|
+
* be rendered as pseudo-element so that it won't receive any UI events then
|
307
|
+
* we can get the correct `event.offsetX` and `event.offsetY` from the
|
308
|
+
* scrollface element while dragging it.
|
309
|
+
*/
|
310
|
+
.ScrollbarLayout_face:after {
|
311
|
+
border-radius: 6px;
|
312
|
+
content: '';
|
313
|
+
display: block;
|
314
|
+
position: absolute;
|
315
|
+
-webkit-transition: background-color 250ms ease;
|
316
|
+
transition: background-color 250ms ease;
|
317
|
+
}
|
318
|
+
|
319
|
+
.ScrollbarLayout_faceHorizontal {
|
320
|
+
bottom: 0;
|
321
|
+
left: 0;
|
322
|
+
top: 0;
|
323
|
+
}
|
324
|
+
|
325
|
+
.ScrollbarLayout_faceHorizontal:after {
|
326
|
+
bottom: 4px;
|
327
|
+
left: 0;
|
328
|
+
top: 4px;
|
329
|
+
width: 100%;
|
330
|
+
}
|
331
|
+
|
332
|
+
.ScrollbarLayout_faceVertical {
|
333
|
+
left: 0;
|
334
|
+
right: 0;
|
335
|
+
top: 0;
|
336
|
+
}
|
337
|
+
|
338
|
+
.ScrollbarLayout_faceVertical:after {
|
339
|
+
height: 100%;
|
340
|
+
left: 4px;
|
341
|
+
right: 4px;
|
342
|
+
top: 0;
|
343
|
+
}
|
344
|
+
/**
|
345
|
+
* Copyright (c) 2015, Facebook, Inc.
|
346
|
+
* All rights reserved.
|
347
|
+
*
|
348
|
+
* This source code is licensed under the BSD-style license found in the
|
349
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
350
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
351
|
+
*
|
352
|
+
* @providesModule fixedDataTable
|
353
|
+
*
|
354
|
+
*/
|
355
|
+
|
356
|
+
/**
|
357
|
+
* Table.
|
358
|
+
*/
|
359
|
+
.public_fixedDataTable_main {
|
360
|
+
border-color: #d3d3d3;
|
361
|
+
}
|
362
|
+
|
363
|
+
.public_fixedDataTable_header,
|
364
|
+
.public_fixedDataTable_hasBottomBorder {
|
365
|
+
border-color: #d3d3d3;
|
366
|
+
}
|
367
|
+
|
368
|
+
.public_fixedDataTable_header .public_fixedDataTableCell_main {
|
369
|
+
font-weight: bold;
|
370
|
+
}
|
371
|
+
|
372
|
+
.public_fixedDataTable_header,
|
373
|
+
.public_fixedDataTable_header .public_fixedDataTableCell_main {
|
374
|
+
background-color: #f6f7f8;
|
375
|
+
background-image: -webkit-linear-gradient(#fff, #efefef);
|
376
|
+
background-image: linear-gradient(#fff, #efefef);
|
377
|
+
}
|
378
|
+
|
379
|
+
.public_fixedDataTable_footer .public_fixedDataTableCell_main {
|
380
|
+
background-color: #f6f7f8;
|
381
|
+
border-color: #d3d3d3;
|
382
|
+
}
|
383
|
+
|
384
|
+
.public_fixedDataTable_topShadow {
|
385
|
+
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAF0lEQVR4AWPUkNeSBhHCjJoK2twgFisAFagCCp3pJlAAAAAASUVORK5CYII=) repeat-x;
|
386
|
+
}
|
387
|
+
|
388
|
+
.public_fixedDataTable_bottomShadow {
|
389
|
+
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAHElEQVQI12MwNjZmZdAT1+Nm0JDWEGZQk1GTBgAWkwIeAEp52AAAAABJRU5ErkJggg==) repeat-x;
|
390
|
+
}
|
391
|
+
|
392
|
+
.public_fixedDataTable_horizontalScrollbar .public_Scrollbar_mainHorizontal {
|
393
|
+
background-color: #fff;
|
394
|
+
}
|
395
|
+
/**
|
396
|
+
* Copyright (c) 2015, Facebook, Inc.
|
397
|
+
* All rights reserved.
|
398
|
+
*
|
399
|
+
* This source code is licensed under the BSD-style license found in the
|
400
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
401
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
402
|
+
*
|
403
|
+
* @providesModule fixedDataTableCell
|
404
|
+
*/
|
405
|
+
|
406
|
+
/**
|
407
|
+
* Table cell.
|
408
|
+
*/
|
409
|
+
.public_fixedDataTableCell_main {
|
410
|
+
background-color: #fff;
|
411
|
+
border-color: #d3d3d3;
|
412
|
+
}
|
413
|
+
|
414
|
+
.public_fixedDataTableCell_highlighted {
|
415
|
+
background-color: #f4f4f4;
|
416
|
+
}
|
417
|
+
|
418
|
+
.public_fixedDataTableCell_cellContent {
|
419
|
+
padding: 8px;
|
420
|
+
}
|
421
|
+
|
422
|
+
.public_fixedDataTableCell_columnResizerKnob {
|
423
|
+
background-color: #0284ff;
|
424
|
+
}
|
425
|
+
/**
|
426
|
+
* Copyright (c) 2015, Facebook, Inc.
|
427
|
+
* All rights reserved.
|
428
|
+
*
|
429
|
+
* This source code is licensed under the BSD-style license found in the
|
430
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
431
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
432
|
+
*
|
433
|
+
* @providesModule fixedDataTableColumnResizerLine
|
434
|
+
*
|
435
|
+
*/
|
436
|
+
|
437
|
+
/**
|
438
|
+
* Column resizer line.
|
439
|
+
*/
|
440
|
+
.public_fixedDataTableColumnResizerLine_main {
|
441
|
+
border-color: #0284ff;
|
442
|
+
}
|
443
|
+
/**
|
444
|
+
* Copyright (c) 2015, Facebook, Inc.
|
445
|
+
* All rights reserved.
|
446
|
+
*
|
447
|
+
* This source code is licensed under the BSD-style license found in the
|
448
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
449
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
450
|
+
*
|
451
|
+
* @providesModule fixedDataTableRow
|
452
|
+
*/
|
453
|
+
|
454
|
+
/**
|
455
|
+
* Table row.
|
456
|
+
*/
|
457
|
+
.public_fixedDataTableRow_main {
|
458
|
+
background-color: #fff;
|
459
|
+
}
|
460
|
+
|
461
|
+
.public_fixedDataTableRow_highlighted,
|
462
|
+
.public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
|
463
|
+
background-color: #f6f7f8;
|
464
|
+
}
|
465
|
+
|
466
|
+
.public_fixedDataTableRow_fixedColumnsDivider {
|
467
|
+
border-color: #d3d3d3;
|
468
|
+
}
|
469
|
+
|
470
|
+
.public_fixedDataTableRow_columnsShadow {
|
471
|
+
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQIHWPSkNeSBmJhTQVtbiDNCgASagIIuJX8OgAAAABJRU5ErkJggg==) repeat-y;
|
472
|
+
}
|
473
|
+
/**
|
474
|
+
* Copyright (c) 2015, Facebook, Inc.
|
475
|
+
* All rights reserved.
|
476
|
+
*
|
477
|
+
* This source code is licensed under the BSD-style license found in the
|
478
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
479
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
480
|
+
*
|
481
|
+
* @providesModule Scrollbar
|
482
|
+
*
|
483
|
+
*/
|
484
|
+
|
485
|
+
/**
|
486
|
+
* Scrollbars.
|
487
|
+
*/
|
488
|
+
|
489
|
+
/* Touching the scroll-track directly makes the scroll-track bolder */
|
490
|
+
.public_Scrollbar_main.public_Scrollbar_mainActive,
|
491
|
+
.public_Scrollbar_main:hover {
|
492
|
+
background-color: rgba(255, 255, 255, 0.8);
|
493
|
+
}
|
494
|
+
|
495
|
+
.public_Scrollbar_mainOpaque,
|
496
|
+
.public_Scrollbar_mainOpaque.public_Scrollbar_mainActive,
|
497
|
+
.public_Scrollbar_mainOpaque:hover {
|
498
|
+
background-color: #fff;
|
499
|
+
}
|
500
|
+
|
501
|
+
.public_Scrollbar_face:after {
|
502
|
+
background-color: #c2c2c2;
|
503
|
+
}
|
504
|
+
|
505
|
+
.public_Scrollbar_main:hover .public_Scrollbar_face:after,
|
506
|
+
.public_Scrollbar_mainActive .public_Scrollbar_face:after,
|
507
|
+
.public_Scrollbar_faceActive:after {
|
508
|
+
background-color: #7d7d7d;
|
509
|
+
}
|