Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/phui/button/phui-button-bar.css
12241 views
1
/**
2
* @provides phui-button-bar-css
3
* @requires phui-button-css
4
* @requires phui-button-simple-css
5
*/
6
7
.phui-button-bar-borderless .button {
8
border: 0;
9
background-color: transparent;
10
background-image: none;
11
padding-left: 10px;
12
padding-right: 10px;
13
}
14
15
.phui-button-bar-borderless .button .phui-icon-view {
16
font-size: 15px;
17
color: {$bluetext};
18
}
19
20
.phui-button-bar-borderless .button:hover {
21
background-color: transparent;
22
background-image: none;
23
border-radius: 3px;
24
}
25
26
.phui-button-bar-borderless .button:hover .phui-icon-view {
27
color: {$sky};
28
}
29
30
.phui-button-bar-borderless .button {
31
border: 0;
32
}
33
34
.phui-button-bar .phui-button-bar-first {
35
border-top-right-radius: 0px;
36
border-bottom-right-radius: 0px;
37
}
38
39
.phui-button-bar .phui-button-bar-middle {
40
border-radius: 0;
41
border-left: none;
42
}
43
44
.phui-button-bar .phui-button-bar-last {
45
border-left: none;
46
border-top-left-radius: 0px;
47
border-bottom-left-radius: 0px;
48
}
49
50
.phui-button-bar .button.simple:hover {
51
border-color: {$lightblueborder};
52
background-color: #fff;
53
background-image: none;
54
color: {$sky};
55
}
56
57
.phui-button-bar .button.simple:hover .phui-icon-view {
58
border-color: {$lightblueborder};
59
color: {$sky};
60
background-image: none;
61
}
62
63