To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / virt / statics / highlighter.css @ 0:1e44d666ced1

History | View | Annotate | Download (2.13 KB)

1
/* See license.txt for terms of usage */
2

    
3
.firebugHighlight {
4
    z-index: 2147483647;
5
    position: absolute;
6
    background-color: #3875d7;
7
}
8

    
9
.firebugLayoutBoxParent {
10
    z-index: 2147483647;
11
    position: absolute;
12
    border-right: 1px dashed #BBBBBB;
13
    border-bottom: 1px dashed #BBBBBB;
14
}
15

    
16
.firebugRulerH {
17
    position: absolute;
18
    top: -15px;
19
    left: 0;
20
    width: 100%;
21
    height: 14px;
22
    background: url(chrome://firebug/skin/rulerH.png) repeat-x;
23
    border-top: 1px solid #BBBBBB;
24
    border-right: 1px dashed #BBBBBB;
25
    border-bottom: 1px solid #000000;
26
}
27

    
28
.firebugRulerV {
29
    position: absolute;
30
    top: 0;
31
    left: -15px;
32
    width: 14px;
33
    height: 100%;
34
    background: url(chrome://firebug/skin/rulerV.png) repeat-y;
35
    border-left: 1px solid #BBBBBB;
36
    border-right: 1px solid #000000;
37
    border-bottom: 1px dashed #BBBBBB;
38
}
39

    
40
.overflowRulerX > .firebugRulerV {
41
    left: 0;
42
}
43

    
44
.overflowRulerY > .firebugRulerH {
45
    top: 0;
46
}
47

    
48
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
49

    
50
.firebugLayoutBoxOffset {
51
    z-index: 2147483647;
52
    position: absolute;
53
    opacity: 0.8;
54
}
55

    
56
.firebugLayoutBoxMargin {
57
    background-color: #EDFF64;
58
}
59

    
60
.firebugLayoutBoxBorder {
61
    background-color: #666666;
62
}
63

    
64
.firebugLayoutBoxPadding {
65
    background-color: SlateBlue;
66
}
67

    
68
.firebugLayoutBoxContent {
69
    background-color: SkyBlue;
70
}
71

    
72
/*.firebugHighlightGroup .firebugLayoutBox {
73
    background-color: transparent;
74
}
75

76
.firebugHighlightBox {
77
    background-color: Blue !important;
78
}*/
79

    
80
.firebugLayoutLine {
81
    z-index: 2147483647;
82
    background-color: #000000;
83
    opacity: 0.4;
84
}
85

    
86
.firebugLayoutLineLeft,
87
.firebugLayoutLineRight {
88
    position: fixed;
89
    width: 1px;
90
    height: 100%;
91
}
92

    
93
.firebugLayoutLineTop,
94
.firebugLayoutLineBottom {
95
    position: absolute;
96
    width: 100%;
97
    height: 1px;
98
}
99

    
100
.firebugLayoutLineTop {
101
    margin-top: -1px;
102
    border-top: 1px solid #999999;
103
}
104

    
105
.firebugLayoutLineRight {
106
    border-right: 1px solid #999999;
107
}
108

    
109
.firebugLayoutLineBottom {
110
    border-bottom: 1px solid #999999;
111
}
112

    
113
.firebugLayoutLineLeft {
114
    margin-left: -1px;
115
    border-left: 1px solid #999999;
116
}