OLD | NEW |
1 html { | 1 html { |
2 /* This is needed because of chrome://theme/css/new_tab.css */ | 2 /* This is needed because of chrome://theme/css/new_tab.css */ |
3 height: 100%; | 3 height: 100%; |
4 } | 4 } |
5 | 5 |
6 body { | 6 body { |
7 margin: 0; | 7 margin: 0; |
8 height: 100%; | 8 height: 100%; |
9 overflow: auto; | 9 overflow: auto; |
10 -webkit-user-select: none; | 10 -webkit-user-select: none; |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 border: 1px solid rgb(118, 118, 118); | 190 border: 1px solid rgb(118, 118, 118); |
191 border-radius: 3px; | 191 border-radius: 3px; |
192 padding: 0 3px; | 192 padding: 0 3px; |
193 background: -webkit-gradient(linear, left top, left bottom, | 193 background: -webkit-gradient(linear, left top, left bottom, |
194 from(white), | 194 from(white), |
195 to(rgb(228, 229, 240))); | 195 to(rgb(228, 229, 240))); |
196 width: auto; | 196 width: auto; |
197 max-width: 300px; | 197 max-width: 300px; |
198 } | 198 } |
199 | 199 |
200 .hbox { | |
201 display: -webkit-box; | |
202 -webkit-box-orient: horizontal; | |
203 } | |
204 | |
205 .foreign-session-client { | 200 .foreign-session-client { |
206 float: left; | 201 float: left; |
207 max-width: 114px; /* Selected so that we can fit 5 items in EN-US */ | 202 max-width: 114px; /* Selected so that we can fit 5 items in EN-US */ |
208 font-weight: normal; | 203 font-weight: normal; |
209 margin: 0; | 204 margin: 0; |
210 position: relative; | 205 position: relative; |
211 } | 206 } |
212 | 207 |
213 html[dir=rtl] .foreign-session-client { | 208 html[dir=rtl] .foreign-session-client { |
214 float: right; | 209 float: right; |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 } | 507 } |
513 } | 508 } |
514 | 509 |
515 /* Ensure we have at least 10px horizontal marging. */ | 510 /* Ensure we have at least 10px horizontal marging. */ |
516 @media (max-width: 712px) { | 511 @media (max-width: 712px) { |
517 #main { | 512 #main { |
518 margin-left: 10px; | 513 margin-left: 10px; |
519 margin-right: 10px; | 514 margin-right: 10px; |
520 } | 515 } |
521 } | 516 } |
OLD | NEW |