blob: 7e0d2ce70b34603461cad100b4e78618422fa41b (
plain)
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
|
.dragBar {
-webkit-user-select: none;
-webkit-app-region: drag;
}
.window {
background-color: transparent !important;
}
.sidebar {
background-color: transparent !important;
}
.pane {
border-left: none !important;
background-color: #333333;
}
.nav-group-item {
padding: 10px 10px !important;
color: #FFFFFF !important;
}
.nav-group-item.active {
background-color: #156CD5 !important;
}
.whiteText {
color: white;
}
.template {
display: inline-block;
}
.templateIcon {
background-size: contain;
background-position: center;
background-repeat: no-repeat;
width: 105px;
height: 148.5px;
background-color: #fff;
border-radius: 3px;
}
.templateName {
text-align: center;
}
.templateName span {
padding: 3px 6px;
border-radius: 3px;
}
.clickedText {
background-color: #156CD5;
}
.clicked {
box-shadow: 0 0 0 2pt #156CD5;
}
|