blob: 784e85adf24491cac131a261d36ce0ce43ee8254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
%if 0
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
%endif
@namespace html url("http://www.w3.org/1999/xhtml");
%include ../shared/webRTC-indicator.inc.css
/**
* On macOS, the ordering of the drag indicator and window controls is reversed
* to be more native. We re-order all items including their separators so that
* the markup and separator hiding and showing logic in the shared CSS file
* doesn't need to be macOS-specific.
*/
#window-controls {
order: 1;
}
#display-share + .separator {
order: 2;
}
#display-share {
order: 3;
}
#device-share + .separator {
order: 4;
}
#device-share {
order: 5;
}
#drag-indicator {
order: 6;
}
/**
* The minimize button on macOS should be circular, and the icon should be
* centered. The asset we have for the minimize icon puts it along the bottom,
* so we manually offset it here.
*/
#minimize {
background-position: center -5px;
padding: 8px;
border: 1px solid transparent;
border-radius: 1000px;
}
|