blob: c38f32f13278c82905f33539058b47fa1395387e (
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
|
@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;
}
|