Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/phui/phui-segment-bar-view.css
12241 views
1
/**
2
* @provides phui-segment-bar-view-css
3
*/
4
5
.phui-segment-bar-label {
6
font-size: {$smallerfontsize};
7
margin-bottom: 4px;
8
}
9
10
.phui-basic-nav .phui-segment-bar-label {
11
width: 180px;
12
overflow: hidden;
13
text-overflow: ellipsis;
14
}
15
16
.phui-segment-bar-segments {
17
background: rgba({$alphablue}, .1);
18
border-radius: 4px;
19
position: relative;
20
overflow: hidden;
21
height: 8px;
22
}
23
24
.phui-segment-bar-segment-view {
25
position: absolute;
26
top: 0;
27
bottom: 0;
28
margin-left: -5px;
29
border-right: 5px solid;
30
border-radius: 0 4px 4px 0;
31
}
32
33
.phui-segment-bar-segment-view.red {
34
background: {$red};
35
border-color: {$red};
36
}
37
38
.phui-segment-bar-segment-view.orange {
39
background: {$orange};
40
border-color: {$orange};
41
}
42
43
.phui-segment-bar-segment-view.yellow {
44
background: {$yellow};
45
border-color: {$yellow}
46
}
47
48
.phui-segment-bar-segment-view.green {
49
background: {$green};
50
border-color: {$green};
51
}
52
53
.phui-segment-bar-segment-view.blue {
54
background: {$blue};
55
border-color: {$blue};
56
}
57
58
.phui-segment-bar-segment-view.indigo {
59
background: {$indigo};
60
border-color: {$indigo};
61
}
62
63
.phui-segment-bar-segment-view.violet {
64
background: {$violet};
65
border-color: {$violet};
66
}
67
68
.phui-segment-bar-segment-view.pink {
69
background: {$pink};
70
border-color: {$pink};
71
}
72
73
.phui-segment-bar-segment-view.sky {
74
background: {$sky};
75
border-color: {$sky};
76
}
77
78