blob: 03dc0225f55e0238bb1b0d1356f19a87fae7d210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.cue-view {
font-size: 24px;
background: shade(@theme_bg_color, 0.95);
padding: 12px;
border-radius: 12px;
}
.cue-view:disabled {
opacity: 0;
}
.cue-view link {
color: @theme_fg_color;
text-decoration: none;
}
.cue-view link:hover {
background: shade(@theme_bg_color, 0.8);
}
.cue-view link:active {
background: shade(@theme_bg_color, 0.6);
}
|