-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmd-custom.css
More file actions
117 lines (103 loc) · 2.32 KB
/
Copy pathmd-custom.css
File metadata and controls
117 lines (103 loc) · 2.32 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
md-card {
border-radius: 20px;
}
.form-btns {
}
.form-btns .submit {
float: left;
}
.form-btns .cancel {
float: left;
font-size: 14px;
margin: 6px 0 6px 10px;
position: relative;
top: 11px;
}
.calls-graph.mdl-cell
{
border-radius: 20px !important;
}
.calls-graph
{
border-radius: 20px !important;
}
.calls-graph .panel-header {
border-radius: 20px 20px 0px 0px;
-moz-border-radius: 20px 20px 0px 0px;
-webkit-border-radius: 20px 20px 0px 0px;
}
.calls-graph .linechart {
border-radius: 0px 0px 20px 20px;
-moz-border-radius: 0px 0px 20px 20px;
-webkit-border-radius: 0px 0px 20px 20px;
border: 0px solid #000000;
}
md-tabs-wrapper {
}
button.md-button {
border-radius: 8px;
}
.md-select-menu-container {
-webkit-border-bottom-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topleft: 20px;
-moz-border-radius-topright: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
md-select-menu {
-webkit-border-bottom-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topleft: 20px;
-moz-border-radius-topright: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
md-select-menu md-option {
min-height: 32px;
height: 32px;
}
md-input-container.search input {
border-radius: 8px;
}
md-input-container.search input {
border-radius: 8px;
}
.md-open-menu-container.md-active md-menu-item {
min-height: 32px;
height: 32px;
}
md-menu-content {
border-radius: 8px;
position: relative;
}
md-dialog {
border-radius: 20px;
}
md-virtual-repeat-container {
border-radius: 8px;
}
/* Styles for extended layout */
.md-virtual-repeat-scroller::-webkit-scrollbar {width: 10px; height: 0;}
.md-virtual-repeat-scroller::-webkit-scrollbar-track {margin: 3px 0 3px}
.md-virtual-repeat-scroller::-webkit-scrollbar-thumb {
background: #E3E3E3;
}
.md-virtual-repeat-scroller:hover::-webkit-scrollbar-thumb {
background: #E3E3E3;
}
.md-virtual-repeat-scroller::-webkit-scrollbar-thumb:hover {
background: #CCC;
}
/* Styles for extended layout */
md-content::-webkit-scrollbar {width: 10px; height: 0;}
md-content::-webkit-scrollbar-track {margin: 3px 0 3px}
md-content::-webkit-scrollbar-thumb {
background: #E3E3E3;
}
md-content:hover::-webkit-scrollbar-thumb {
background: #E3E3E3;
}
md-content::-webkit-scrollbar-thumb:hover {
background: #CCC;
}