Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/conpherence/menu.css
13423 views
1
/**
2
* @provides conpherence-menu-css
3
*/
4
5
.conpherence-layout {
6
position: fixed;
7
bottom: 0;
8
left: 0;
9
right: 0;
10
top: 44px;
11
background: {$page.content};
12
}
13
14
.conpherence-menu-pane {
15
width: 100%;
16
position: absolute;
17
overflow-x: hidden;
18
overflow-y: auto;
19
top: 0;
20
bottom: 0;
21
background-color: {$page.sidenav};
22
}
23
24
.conpherence-menu-pane .phui-basic-nav .phabricator-side-menu {
25
background-color: transparent;
26
}
27
28
.conpherence-menu-pane.phabricator-side-menu .room-list-href {
29
padding: 10px 0 9px 8px;
30
display: inline-block;
31
text-transform: uppercase;
32
color: {$darkgreytext};
33
font-weight: bold;
34
font-size: {$smallerfontsize};
35
float: left;
36
}
37
38
.conpherence-menu-pane.phabricator-side-menu .room-list-icons {
39
display: inline-block;
40
float: right;
41
padding: 8px 0 5px;
42
}
43
44
.conpherence-menu-pane .conpherence-room-list-header {
45
clear: both;
46
overflow: hidden;
47
}
48
49
.conpherence-menu-pane .conpherence-room-list-header
50
.phui-icon-view {
51
font-weight: bold;
52
float: right;
53
text-transform: none;
54
padding: 4px;
55
}
56
57
.conpherence-menu-pane .conpherence-room-list-header
58
.phui-icon-view:hover {
59
color: {$sky};
60
}
61
62
.conpherence-menu-pane .conpherence-message-list-header {
63
margin-top: 12px;
64
}
65
66
.device-desktop .conpherence-layout .conpherence-menu-pane {
67
width: 232px;
68
padding-right: 8px;
69
}
70
71
.device .conpherence-menu-pane {
72
top: 41px;
73
}
74
75
.device .conpherence-role-list .conpherence-menu-pane {
76
top: 0px;
77
}
78
79
.device-phone .conpherence-menu-pane {
80
-webkit-overflow-scrolling: touch;
81
}
82
83
.device .conpherence-role-thread .conpherence-menu-pane {
84
display: none;
85
}
86
87
.device-desktop .conpherence-content-pane {
88
margin-left: 240px;
89
}
90
91
.conpherence-content-pane {
92
display: none;
93
margin-left: 0px;
94
position: relative;
95
}
96
97
.device-desktop .conpherence-content-pane,
98
.device .conpherence-role-thread .conpherence-content-pane {
99
display: block;
100
}
101
102
.conpherence-menu .conpherence-menu-item-view {
103
display: block;
104
overflow: hidden;
105
position: relative;
106
text-decoration: none;
107
border-left: 4px solid transparent;
108
padding: 4px;
109
}
110
111
.conpherence-menu .phui-list-item-type-link .phui-list-item-href {
112
padding: 8px 0 8px 8px;
113
}
114
115
.conpherence-menu .loading {
116
font-style: italic;
117
}
118
119
.device-desktop .conpherence-menu .conpherence-menu-item-view:hover {
120
background-color: rgba({$alphablack},0.05);
121
}
122
123
.conpherence-menu .conpherence-menu-item-view .conpherence-menu-item-image {
124
width: 26px;
125
height: 26px;
126
background-size: 26px;
127
border-radius: 3px;
128
float: left;
129
margin-left: 4px;
130
}
131
132
.conpherence-menu .conpherence-menu-item-view .conpherence-menu-item-title {
133
display: block;
134
padding: 4px 0 4px 8px;
135
float: left;
136
text-align: left;
137
font-weight: bold;
138
font-size: {$normalfontsize};
139
color: {$darkbluetext};
140
overflow: hidden;
141
width: 165px;
142
text-overflow: ellipsis;
143
}
144
145
.conpherence-menu .conpherence-menu-item-view .conpherence-menu-item-subtitle {
146
display: none;
147
}
148
149
.conpherence-menu .conpherence-menu-item-view
150
.conpherence-menu-item-unread-count {
151
position: absolute;
152
right: 4px;
153
top: 10px;
154
background: {$blue};
155
border-radius: 2px;
156
color: #fff;
157
font-weight: bold;
158
padding: 0 5px 1px;
159
font-size: {$smallestfontsize};
160
}
161
162
.conpherence-menu .hide-unread-count .phui-list-item-count {
163
display: none;
164
}
165
166
.phui-basic-nav .phabricator-side-menu .conpherence-menu
167
.phui-list-item-icon.phuihead-small {
168
display: block;
169
float: left;
170
height: 20px;
171
width: 20px;
172
margin: 0 7px 0 0;
173
}
174
175
.conpherence-menu .conpherence-menu-item-view .conpherence-menu-item-date {
176
position: absolute;
177
top: 15px;
178
right: 16px;
179
color: {$bluetext};
180
font-size: {$smallestfontsize};
181
}
182
183
.conpherence-menu-item-header {
184
font-weight: bold;
185
text-transform: uppercase;
186
color: {$bluetext};
187
}
188
189
.no-conpherences-menu-item {
190
color: {$bluetext};
191
padding: 4px 12px;
192
}
193
194