blob: cf47eb4225793c5e6dc645cb3668b297cec947a0 (
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
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
|
@import url(../runo/styles.css);
/* Using the old default theme (runo) as the basis for now */
/* Add some padding to the tree */
.v-tree {
padding-top: 8px;
padding-left: 4px;
}
.toolbar .v-button {
display: block;
width: 65px;
height: 55px;
background: transparent;
border: none;
text-align: center;
}
.toolbar .v-button img {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 5px;
}
.toolbar .v-button span {
font-size: x-small;
text-shadow: #fafafa 1px 1px 0;
}
.toolbar .v-button .v-button-wrap,
.toolbar .v-disabled.v-button .v-button-wrap {
background: transparent;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.toolbar .v-button:active .v-button-wrap,
.toolbar .v-button.v-pressed .v-button-wrap {
background: transparent;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.v-app {
background: #d0e2ec;
font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
color: #222;
}
.toolbar {
background: #ccc url(images/gradient.png) repeat-x bottom left;
}
.v-panel-caption-view {
color: #004b98;
}
.view {
background: white;
}
/* Theme table to look bit lighter */
.v-table-header-wrap {
height: 20px;
border: none;
border-bottom: 1px solid #555;
background: transparent url(images/table-header-bg.png) repeat-x;
}
.v-table-sort-indicator,
.v-table-header-cell-asc .v-table-sort-indicator,
.v-table-header-cell-desc .v-table-sort-indicator {
height: 20px;
}
.v-table-caption-container {
font-size: 11px;
color: #000;
font-weight: bold;
text-shadow: #fff 0 1px 0;
padding: 0;
}
.v-table-body {
border: none;
}
.v-table-row-odd {
background: #f1f5fa;
}
.v-table-row:hover {
background: #fff;
}
.v-table-row-odd:hover {
background: #f1f5fa;
}
.v-table .v-selected {
background: #3d80df;
}
.v-table-cell-content {
padding: 2px 6px 2px 3px;
line-height: normal;
font-size: 85%;
}
|