This repository has been archived by the owner on Jul 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrowser.css
185 lines (185 loc) · 4.38 KB
/
Browser.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
body {
margin: 0;
padding: 0;
font-family: Lucida Grande, Arial, sans-serif;
}
button, input {
outline: none;
}
#controls {
padding: 3px;
border-bottom: solid 1px #ccc;
background-color: #eee;
}
#controls button, #controls input {
font-size: 14px;
line-height: 24px;
border-radius: 2px;
padding: 0 6px;
}
button, input[type="submit"], button[disabled]:hover {
border: solid 1px transparent;
background: transparent;
}
button:hover, input[type="submit"]:hover {
border-color: #ccc;
background: -webkit-linear-gradient(bottom, #cccccc 0%, #f2f2f2 99%);
}
button:active, input[type="submit"]:active {
border-color: #bbb;
background: -webkit-linear-gradient(bottom, #e2e2e2 0%, #bbbbbb 99%);
}
/* These glyphs are on the small side, make them look more natural when compared to the back/forward buttons */
#controls #home, #controls #terminate {
font-size: 24px;
}
#controls #reload {
font-size: 20px;
}
#controls #zoom, #controls #find {
font-size: 18px;
}
#location {
border: solid 1px #ccc;
padding: 2px;
width: 100%;
-webkit-box-sizing: border-box;
}
#controls {
display: -webkit-flex;
-webit-flex-direction: column;
}
#controls #location-form {
-webkit-flex: 1;
display: -webkit-flex;
-webit-flex-direction: column;
}
#controls #center-column {
-webkit-flex: 1;
}
#zoom-box, #find-box {
background-color: #eee;
border: solid 1px #ccc;
border-top: solid 1px #eee;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
padding: 2px;
position: fixed;
top: 36px;
height: 25px;
display: none;
}
#zoom-box #zoom-form, #find-box #find-form {
-webkit-flex: 1;
display: -webkit-flex;
-webit-flex-direction: row;
}
#zoom-box input, #zoom-box button, #find-box button {
border-radius: 2px;
}
#zoom-box #zoom-text, #find-box #find-text {
border: solid 1px #ccc;
margin-right: 0px;
padding: 2px;
-webkit-box-sizing: border-box;
-webkit-flex: 1;
}
#zoom-box {
left: 5px;
width: 125px;
z-index: 1;
}
#zoom-box input[type="submit"] {
font-size: 14px;
margin: 2px 0px;
padding: 0 2px 3px 2px;
width: 22px;
}
#zoom-box button {
font-size: 12px;
margin: 2px 0px;
padding: 0px 1px 0px 0px;
width: 20px;
}
#find-box {
right: 5px;
width: 280px;
z-index: 2;
}
#find-box #find-text {
border-right-style: none;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
#find-box #find-results {
color: #888;
background-color: #fff;
border: solid 1px #ccc;
border-left-style: none;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
margin: 2px 0px;
padding: 3px 4px 2px 0;
text-align: center;
}
#find-box #match-case {
margin: 2px 0px;
font-size: 10px;
width: 28px;
}
#find-box #find-backward, #find-box #find-forward {
font-size: 14px;
width: 24px;
}
#sad-webview, webview {
position: absolute;
bottom: 0;
left: 0;
}
/* The reload button turns into a spinning trobber */
.loading #reload {
-webkit-animation: spinner-animation .5s infinite linear;
-webkit-transform-origin: 50% 55.5%;
}
@-webkit-keyframes spinner-animation {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
/* Due to http://crbug.com/156219 we can't use display: none */
#sad-webview, .exited webview {
visibility: hidden;
visibility: hidden;
}
.exited #sad-webview {
visibility: visible;
background: #343f51;
text-align: center;
color: #fff;
}
#sad-webview h2 {
font-size: 14px;
}
#sad-webview p {
font-size: 11px;
}
#sad-webview-icon {
font-size: 96px;
margin-bottom: 10px;
}
/* Variant of the crashed page when the process is intentionally killed (in that case we use a different background color and label). */
.exited #sad-webview #killed-label {
display: none;
}
.killed #sad-webview {
background: #393058;
}
.killed #sad-webview #killed-label {
display: block;
}
.killed #sad-webview #crashed-label {
display: none;
}