-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathangular-widgetarea.css
More file actions
executable file
·93 lines (83 loc) · 1.63 KB
/
angular-widgetarea.css
File metadata and controls
executable file
·93 lines (83 loc) · 1.63 KB
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
/* block related */
.block {
}
/* column related */
.block .column {
margin: 0 !important;
}
.block .column.span1 { width: 8.33%; }
.block .column.span2 { width: 16.66%; }
.block .column.span3 { width: 25%; }
.block .column.span4 { width: 33.33%; }
.block .column.span5 { width: 41.66%; }
.block .column.span6 { width: 50%; }
.block .column.span7 { width: 58.33%; }
.block .column.span8 { width: 66.66%; }
/* widget & placeholder related */
.widget {
background-color: #ffffff;
border: 1px #ccc solid;
margin-bottom: 20px;
}
.block .column .widget {
margin-left: 10px;
margin-right: 10px;
}
.block .column:first-child .widget {
margin-left: 0;
}
.block .column:last-child .widget {
margin-right: 0;
}
.widget.placeholder {
border-style: dashed;
background-color: #fcf8e3;
min-height: 50px;
}
/* widget area head related */
.block-head {
border: 1px #ccc solid;
background-color: #f0f0f0;
margin-bottom: 20px;
}
.block-head span.title {
font-weight: bold;
}
/* widget head related */
.widget-head {
border-bottom: 1px #ccc solid;
background-color: #f0f0f0;
}
.widget .widget-head span.title {
font-weight: bold;
/*
margin: 0;
line-height: inherit;
font-size: 12px;
*/
}
.widget-head i:hover, .block-head i:hover {
opacity: 1;
}
.widget-head i, .block-head i {
opacity: .4;
margin-left: 2px;
margin-right: 2px;
}
.widget-head i.pull-right, .block-head i.pull-right {
margin-top: 3px;
}
/* minimized widget */
.widget.minimized .widget-content {
display: none;
}
.widget.minimized {
border-bottom-width: 0;
}
/* minimized block */
.block.minimized .block-content {
display: none;
}
.block.minimized {
border-bottom-width: 0;
}