Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/slowvote/slowvote.css
12242 views
1
/**
2
* @provides phabricator-slowvote-css
3
*/
4
5
.slowvote-description {
6
padding: 12px 16px 4px;
7
}
8
9
.slowvote-header-content {
10
padding: 8px;
11
}
12
13
.slowvote-body-content {
14
padding: 8px 16px;
15
}
16
17
.slowvote-option-label {
18
border: 1px solid {$sh-lightgreyborder};
19
display: block;
20
position: relative;
21
padding: 8px 4px;
22
cursor: pointer;
23
font-weight: bold;
24
overflow: hidden;
25
background-color: {$lightgreybackground};
26
}
27
28
.device-desktop .slowvote-option-label:hover {
29
border-color: {$sh-blueborder};
30
}
31
32
.slowvote-bar {
33
position: absolute;
34
top: 0;
35
left: 0;
36
bottom: 0;
37
overflow: hidden;
38
background-color: {$sh-bluebackground};
39
}
40
41
.device-phone .slowvote-bar {
42
display: none;
43
}
44
45
.slowvote-control-offset {
46
white-space: nowrap;
47
position: absolute;
48
left: 32px;
49
top: 8px;
50
width: 100%;
51
color: {$darkbluetext};
52
text-shadow: {$whitetextshadow};
53
}
54
55
.device-phone .slowvote-control-offset {
56
white-space: normal;
57
position: static;
58
padding: 0 4px 8px;
59
}
60
61
.slowvote-option-label-group {
62
margin: 0 0 12px;
63
}
64
65
.slowvote-option-label input[type="radio"],
66
.slowvote-option-label input[type="checkbox"] {
67
margin: 0 12px 0 8px;
68
font-weight: bold;
69
}
70
71
.slowvote-above-the-bar {
72
position: relative;
73
}
74
75
.slowvote-status {
76
color: {$darkbluetext};
77
font-weight: normal;
78
padding: 2px 0;
79
line-height: 15px;
80
text-align: right;
81
font-size: {$smallerfontsize};
82
top: 0;
83
right: 8px;
84
position: absolute;
85
text-shadow: {$whitetextshadow};
86
}
87
88
.slowvote-voters {
89
padding-top: 8px;
90
}
91
92
.slowvote-voter {
93
display: inline-block;
94
width: 25px;
95
height: 25px;
96
background-size: 25px 25px;
97
border-radius: 3px;
98
margin: 0 4px;
99
box-shadow: {$borderinset};
100
}
101
102
.slowvote-footer {
103
border-top-width: 1px;
104
border-top-style: solid;
105
border-top-color: {$thinblueborder};
106
position: relative;
107
}
108
109
.slowvote-footer-content {
110
padding: 8px 16px;
111
overflow: hidden;
112
}
113
114
.slowvote-footer-content .slowvote-hint {
115
line-height: 24px;
116
color: {$lightgreytext};
117
}
118
119
.slowvote-footer-content button {
120
float: right;
121
}
122
123