-
Notifications
You must be signed in to change notification settings - Fork 2
/
shell.css
80 lines (62 loc) · 1.25 KB
/
shell.css
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
window {
min-width: 300px;
min-height: 300px;
}
window[os=unix] {
-moz-appearance: menubar;
}
window[os=osx] {
-moz-appearance: dialog;
-moz-window-dragging: drag;
}
window[os=windows] {
-moz-appearance: -moz-win-borderless-glass;
}
@media (-moz-mac-yosemite-theme) {
window[os=osx] {
-moz-appearance: -moz-mac-vibrancy-light;
}
}
window:not([draw-in-titlebar]) #titlebar {
display: none;
}
window[draw-in-titlebar=true] #titlebar {
-moz-binding: url("chrome://global/content/bindings/general.xml#windowdragbox");
-moz-window-dragging: drag;
}
window[draw-in-titlebar=true][os=osx] #titlebar {
margin-bottom: -39px;
min-height: 39px;
}
window[draw-in-titlebar=true][os=windows] #titlebar {
margin-bottom: -16px;
}
#titlebar-buttonbox {
-moz-appearance: -moz-window-button-box;
}
window[os=osx] #titlebar-buttonbox {
margin-top: 11px;
}
window[os=windows] #titlebar-buttonbox-container {
-moz-box-direction: reverse;
}
window[os=windows] #titlebar-spacer {
pointer-events: none;
}
iframe,
browser {
display: -moz-box;
-moz-box-flex: 1;
border-width: 0;
background: transparent;
}
#init {
margin: 40px;;
padding: 40px;
font: -moz-field;
color: black;
background-color: white;
}
#init input {
width: 100%;
}