-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.css
136 lines (131 loc) · 3 KB
/
app.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.body, .webix_view{
background: #0079bf;
color: #f3f3f3;
}
/*Top toolbar*/
.webix_layout_toolbar.topbar{
background: #026AA7;
}
.webix_layout_toolbar.topbar button{
text-align: center;
border-radius: 3px;
}
.webix_layout_toolbar.topbar button,
.webix_layout_toolbar.topbar button .webix_icon_btn{
color: #fff;
}
.webix_layout_toolbar.topbar button,
.webix_layout_toolbar.topbar button .webix_icon_btn span{
background: linear-gradient(rgba(255, 255, 255, 0.3) 0px, rgba(255, 255, 255, 0.2) 100%);
}
.webix_layout_toolbar.topbar button:hover,
.webix_layout_toolbar.topbar button .webix_icon_btn span:hover{
background: linear-gradient(to bottom,rgba(255,255,255,0.4) 0,rgba(255,255,255,0.3) 100%);
}
.webix_layout_toolbar.topbar button:focus,
.webix_layout_toolbar.topbar button .webix_icon_btn span:focus{
background: linear-gradient(to bottom,rgba(255,255,255,0.45) 0,rgba(255,255,255,0.35) 100%);
}
.webix_layout_toolbar.topbar .webix_el_search input {
background: rgba(255,255,255,0.3);
border:none;
border-radius:3px;
}
.webix_layout_toolbar.topbar .webix_el_search input:focus {
background: white;
}
.webix_layout_toolbar.topbar .webix_el_search .webix_el_box {
background-color:#026AA7;
}
.webix_layout_toolbar.topbar .webix_el_search .webix_input_icon {
color:#fff;
}
.webix_layout_toolbar.topbar .webix_el_label {
background: transparent;
text-align: center;
font-weight: bold;
}
.webix_layout_toolbar.topbar .webix_el_label a{
color: #7fb3d1;
text-decoration: none;
}
.webix_layout_toolbar.topbar .webix_el_label a:hover{
color: white;
}
/*Subbar area*/
.webix_layout_toolbar.subbar{
background: transparent;
}
.webix_layout_toolbar.webix_toolbar.subbar button:hover,
.webix_layout_toolbar.webix_toolbar.subbar button:focus{
background: rgb(2, 99, 155);
border-radius: 3px;
}
.subbar .webix_el_label h3{
font-size: 19px;
margin:0;
padding: 0px 7px;
color: white;
}
.subbar.webix_layout_toolbar button{
background: transparent;
color: white;
}
.subbar.webix_layout_toolbar button .webix_icon_btn{
color: white;
}
.subbar .webix_el_button button {
font-size: 12px;
}
.subbar .webix_icon_btn {
font-size:12px;
}
/*Menu area*/
.menuarea {
background: #e2e4e6;
color: #666;
}
.menuarea .webix_view{
background: #e2e4e6;
color: #444;
}
.menuarea .webix_el_label{
text-align: center;
}
.menuarea .webix_el_label div{
font-size: 16px;
}
.menuarea button{
text-align: center;
}
.menuarea .webix_el_button.webix_secondary button > span,
.menuarea .webix_el_button.webix_secondary button{
color: #666;
background: #e2e4e6;
}
/*Kanban area*/
.kanbanarea .webix_view{
color: #444;
}
.kanbanarea .webix_accordionitem_header{
background: #e2e4e6;
color: #444;
line-height: 32px;
border-bottom-color: transparent;
}
.kanbanarea .webix_accordionitem_header .webix_accordionitem_button{
color: #444;
}
.webix_kanban_list_item{
background: #e2e4e6;
}
/* dev helpers */
.draft .webix_template{
display: table;
width: 100%;
}
.draft .webix_template .title{
display:table-cell;
text-align:center;
vertical-align:middle;
}