-
Notifications
You must be signed in to change notification settings - Fork 4
/
toolbar.less
93 lines (81 loc) · 2.19 KB
/
toolbar.less
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
@import "_imports/colors.less";
@import "_imports/fonts.less";
@import "_imports/mixins.less";
.htk-toolbar {
// These files are required to use any files from bootstrap
@import "./vendor/bootstrap/less/_functions";
@import "./vendor/bootstrap/less/_variables";
@import "./vendor/bootstrap/less/_mixins";
bottom: 0;
line-height: 1.5em;
overflow-y: auto;
position: fixed;
right: 0;
top: 0;
width: 350px;
z-index: 100000000;
opacity: 0.9;
background-color: @dark-charcoal;
.emulate-user-title {
color: inherit;
font-family: inherit;
font-size: 18px;
font-weight: 500;
line-height: 1.2;
margin: 8px 0;
}
.htk-toolbar-hide {
border-bottom: 1px solid @dark-charcoal;
cursor: pointer;
font-size: 16px;
font-weight: bold;
}
.htk-toolbar-panel {
@import "./vendor/bootstrap/less/_input-group";
@import "./vendor/bootstrap/less/_button-group";
@import "./vendor/bootstrap/less/_buttons";
@import "./vendor/bootstrap/less/_forms";
@color-list-item-bg-hover: #ffc;
margin: 0;
padding: 0;
list-style: none;
.htk-toolbar-list-item {
padding: 10px 10px 5px 25px;
border-bottom: 1px solid @dark-charcoal;
font-size: 12px;
color: @white;
}
.htk-toolbar-list-item:hover {
color: @dark-charcoal;
background-color: @color-list-item-bg-hover;
}
}
}
.htk-toolbar-tab {
bottom: 0;
padding: 5px 5px 0px 5px;
position: fixed;
z-index: 100000000;
background-color: @black;
border: 1px solid @dark-charcoal;
color: @white !important;
cursor: pointer;
font-family: @font-monospace-courier-new;
font-weight: 500;
opacity: 0.75;
.rounded-top-base(.8);
&:hover {
color: @color-flatui-silver !important;
}
&.pulsating-htk-toolbar-tab {
animation: pulse 3s infinite alternate;
}
@keyframes pulse {
0% {
background-color: @black;
}
100% {
background-color: @blue;
}
}
}