Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/objectselector/object-selector.css
12242 views
1
/**
2
* @provides phabricator-object-selector-css
3
* @requires aphront-dialog-view-css
4
*/
5
6
.device-desktop .phabricator-object-selector-dialog {
7
width: 860px;
8
}
9
10
.phabricator-object-selector-dialog .aphront-dialog-body {
11
padding: 0 12px;
12
}
13
14
.phabricator-object-selector-search {
15
width: 100%;
16
background: {$lightbluebackground};
17
border-bottom: 1px solid {$thinblueborder};
18
}
19
20
.phabricator-object-selector-search td {
21
padding: 4px 8px;
22
vertical-align: middle;
23
}
24
25
td.phabricator-object-selector-search-text {
26
width: 100%;
27
}
28
29
.phabricator-object-selector-row:hover {
30
background-color: {$hoverblue};
31
}
32
33
.phabricator-object-selector-row:hover a {
34
text-decoration: none;
35
color: {$blacktext};
36
}
37
38
.phabricator-object-selector-search-text input {
39
width: 100%;
40
border-radius: 14px;
41
padding: 4px 8px;
42
height: 26px;
43
margin: 2px 0;
44
}
45
46
.phabricator-object-selector-popicon {
47
display: inline-block;
48
margin-top: 4px;
49
}
50
51
.phabricator-object-selector-results {
52
position: relative;
53
height: 24em;
54
overflow-y: scroll;
55
overflow-x: hidden;
56
}
57
58
.phabricator-object-selector-handle {
59
width: 100%;
60
}
61
62
.phabricator-object-selector-handle + .phabricator-object-selector-handle {
63
border-top: 1px solid {$thinblueborder};
64
}
65
66
.phabricator-object-selector-handle td {
67
padding: 4px 8px;
68
}
69
70
.phabricator-object-selector-handle th {
71
font-weight: bold;
72
vertical-align: middle;
73
width: 100%;
74
overflow: hidden;
75
}
76
77
.phabricator-object-selector-handle th a {
78
display: block;
79
padding: 4px 0;
80
}
81
82
.phabricator-object-selector-header {
83
font-weight: bold;
84
text-transform: uppercase;
85
color: {$darkbluetext};
86
background-color: {$lightgreybackground};
87
border-bottom: 1px solid {$thinblueborder};
88
padding: 6px 8px;
89
}
90
91
.phabricator-object-selector-attach-explicit {
92
padding: 4px;
93
background: {$lightgreybackground};
94
border: solid {$blueborder};
95
border-width: 1px 0px;
96
}
97
98
.phabricator-object-selector-current {
99
border-top: 1px solid {$thinblueborder};
100
}
101
102
.object-selector-nothing {
103
padding: 1em;
104
color: {$lightgreytext};
105
text-align: center;
106
}
107
108
.phabricator-object-selector-instructions {
109
font-size: {$smallestfontsize};
110
color: {$greytext};
111
margin-top: 1.25em;
112
}
113
114