-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathsDashboard.css
119 lines (103 loc) · 1.84 KB
/
sDashboard.css
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
118
/*
* jquery sDashboard (2.0)
* Copyright 2012, Model N, Inc
* Distributed under MIT license.
* https://github.com/ModelN/sDashboard
*/
/*dashboard css*/
.sDashboard {
list-style-type: none;
margin: 0;
padding-left: 10px;
padding-top: 10px;
width: 100%;
height: 100%;
/*overflow: auto;*/
}
.sDashboard li {
margin: 3px 3px 3px 0;
padding: 1px;
float: left;
width: 400px;
height: auto;
}
/*dashboard widget css*/
.sDashboardWidget {
margin: 0 1em 1em 0;
}
/*dashboard widget header css*/
.sDashboardWidgetHeader {
margin: 0.3em;
padding-bottom: 5px;
padding-left: 1em;
padding-right: 0.2em;
padding-top: 2px;
cursor: move;
}
.sDashboardWidgetHeader .ui-icon {
float: right;
margin-left: 3px;
cursor: default;
}
/*dashboard widget content css*/
.sDashboardWidgetContent {
margin: 0.3em;
padding: 0.4em;
height: 180px;
overflow-x: hidden;
overflow-y: auto;
}
.sDashboardWidgetContentMaximized {
margin: 0.3em;
padding: 0.4em;
height: 550px;
overflow: auto;
}
.sDashboardWidgetContainerMaximized {
z-index: 9999;
margin: 0.3em;
padding: 0.4em;
width : 98%;
height : 100%;
left : 0px;
top: 0px;
position: fixed;
}
.sDashboardWidgetContent tr:hover {
background-color: #FCEFA1;
cursor: pointer;
}
/*dashboard table widget css*/
.sDashboardTableView {
width: 100%;
height: 95%;
overflow: auto;
}
/*dashboard chart view css*/
.sDashboardChart {
/* width: 200px;
height: 180px;*/
width: 100%;
height: 95%;
/* cursor: pointer;*/
}
.sDashboardChartClickable{
cursor: pointer;
}
.sDashboardChartSelectable{
width: 100%;
height: 95%;
cursor: crosshair;
}
/*jquery sortable placeholder styles */
.ui-sortable-placeholder {
border: 1px dotted black;
visibility: visible !important;
height: 50px !important;
}
.ui-sortable-placeholder * {
visibility: hidden;
}
li.ui-sortable-placeholder {
background-color: #FCEFA1;
}