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
.app-summary-page {
.btn-dashboard {
color: #b5b5b5;
background: none;
outline: none;
border: none;
&:hover {
color: #b85454;
}
}
.btn-edit {
margin: 0;
float: right;
}
.btn-toolbar-editing {
margin: 0 0 8px 0;
float: right;
.dropdown-menu {
left: initial;
right: 0; // Right align
& > li > a {
&:hover, &:focus {
color: #fff;
background-color: #a32020;
}
}
}
}
.dashboard-widget-area {
clear: both;
}
.btn-clear, .btn-back-to-default {
display: none;
}
.widget-container {
.widget {
border: 1px solid #e4e4e4;
box-shadow: 1px 3px 6px #e4e4e4;
.widget-header {
background-color: #ddd;
display: block;
cursor: move;
.widget-title {
float: left;
line-height: 16px;
font-size: 16px;
font-family: 'Microsoft YaHei';
}
.widget-buttons {
float: right;
}
}
}
&.widget-readonly {
.widget {
border-radius: initial;
margin: 0 1em 0 0;
.widget-header {
display: none;
}
}
}
}
}