-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular-box-drag.css
More file actions
45 lines (35 loc) · 855 Bytes
/
angular-box-drag.css
File metadata and controls
45 lines (35 loc) · 855 Bytes
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
/*
Customize as you see fit!
Box shell inspired by material design;
also see: http://materializecss.com/cards.html
*/
.box-drag-shell {
z-index: 8888;
background-color: #fff;
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.box-drag-handle {
cursor: move;
}
.box-header-inverse {
background-color: #444444;
color: #fefefe;
}
.box-drag-body {
overflow-y: auto;
}
.box-drag-footer {
border-top: 1px solid #dddddd;
}
.padding-top-15 {
padding-top: 15px;
}
.padding-bottom-15 {
padding-bottom: 15px;
}
.bg-grey { background-color: #eeeeee; }
.cursor-pointer {
cursor: pointer;
}