Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/phui/object-item/phui-oi-big-ui.css
12241 views
1
/**
2
* @provides phui-oi-big-ui-css
3
* @requires phui-oi-list-view-css
4
*/
5
6
.phui-oi-list-big ul.phui-oi-list-view {
7
margin: 0;
8
padding: 20px;
9
}
10
11
.phui-oi-list-big .phui-oi-no-bar .phui-oi-frame {
12
border: 0;
13
}
14
15
.phui-oi-list-big .phui-oi-image-icon {
16
margin: 12px 2px 12px;
17
text-align: center;
18
}
19
20
.phui-oi-list-big .phui-oi-image-icon .phui-icon-view {
21
position: relative;
22
}
23
24
.phui-oi-list-big a.phui-oi-link {
25
color: {$blacktext};
26
font-size: {$biggestfontsize};
27
}
28
29
.phui-oi-list-big .phui-oi-name {
30
padding-top: 6px;
31
}
32
33
.phui-oi-list-big .phui-oi-launch-button a.button {
34
font-size: {$normalfontsize};
35
padding: 3px 12px 4px;
36
}
37
38
.device-desktop .phui-oi-list-big .phui-oi {
39
margin-bottom: 8px;
40
}
41
42
.phui-oi-list-big .phui-oi-col0 {
43
vertical-align: top;
44
padding: 0;
45
}
46
47
.phui-oi-list-big .phui-oi-status-icon {
48
padding: 5px;
49
}
50
51
.phui-oi-list-big .phui-oi-visited a.phui-oi-link {
52
color: {$violet};
53
}
54
55
.phui-box-white-config .phui-oi-list-big.phui-oi-list-view {
56
padding: 8px 8px 4px;
57
}
58
59
.phui-box-white-config .phui-oi-frame {
60
padding: 4px 8px 0;
61
}
62
63
.device-desktop .phui-box-white-config .phui-oi:hover .phui-oi-frame {
64
background-color: {$hoverblue};
65
border-radius: 3px;
66
}
67
68
.phui-oi-list-big .phui-oi-frame {
69
padding: 2px 8px;
70
}
71
72
.phui-oi-list-big .phui-oi-linked-container {
73
border-width: 1px;
74
border-style: solid;
75
border-radius: 4px;
76
}
77
78
.phui-oi-list-big .phui-oi-enabled.phui-oi-linked-container {
79
border-color: {$lightblueborder};
80
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
81
}
82
83
.phui-oi-list-big .phui-oi-disabled.phui-oi-linked-container {
84
border-color: {$greybackground};
85
}
86
87
.phui-oi-list-big .phui-oi-disabled .phui-oi-image-icon .phui-icon-view {
88
color: {$darkgreybackground};
89
}
90
91
.device-desktop .phui-oi-linked-container {
92
cursor: pointer;
93
}
94
95
.device-desktop .phui-oi-enabled.phui-oi-linked-container:hover {
96
background-color: {$hoverblue};
97
border-color: {$blueborder};
98
}
99
100
.device-desktop .phui-oi-linked-container a:hover {
101
text-decoration: none;
102
}
103
104
/* Spacing for InfoView inside an object item list, like MFA setup. */
105
.phui-oi .phui-info-view {
106
margin: 0 4px 4px;
107
}
108
109