blob: 45a96b6d161c2d76856dfd3c4382b6a5aa99a39d (
plain)
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
|
@import url(../reindeer/styles.css);
.missing {
color: red;
font-weight: bold;
}
.v-tree-node-caption-red {
color: red;
}
.v-tree-node-caption-green {
color: green;
}
.v-tree-node-caption-blue {
color: blue;
}
.v-tree-node-caption-bold {
font-weight: bold;
}
.background-lightblue {
background: lightblue;
}
.border-red-1px {
border: 1px solid red;
}
.border-blue-2px {
border: 2px solid blue;
}
.v-table-row-tables-test-cell-style-red-row,
.v-table-cell-content-tables-test-cell-style-red-row {
background: #f00;
}
.v-boxlayout.test {
border: 1px solid #ddd;
}
.v-boxlayout.test .target {
outline: 2px dashed blue;
}
.fieldset {
padding: .5em 1em;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
border-radius: .5em;
background: rgba(0,0,0,.02);
}
|