| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 padding: 0; | 269 padding: 0; |
| 270 margin: 0; | 270 margin: 0; |
| 271 -webkit-appearance: none; | 271 -webkit-appearance: none; |
| 272 border: 0; | 272 border: 0; |
| 273 background: none; | 273 background: none; |
| 274 cursor: pointer; | 274 cursor: pointer; |
| 275 text-decoration: underline; | 275 text-decoration: underline; |
| 276 font-family: inherit; | 276 font-family: inherit; |
| 277 } | 277 } |
| 278 | 278 |
| 279 #apps-launch-control { | |
| 280 margin-top: 10px; | |
| 281 } | |
| 282 | |
| 283 #apps-launch-control input { | |
| 284 position: relative; | |
| 285 top: 1px; | |
| 286 margin-right: 0.2em; | |
| 287 margin-left: 1em; | |
| 288 } | |
| 289 | |
| 290 #debug > h2 { | |
| 291 color: red; | |
| 292 } | |
| 293 | |
| 294 #debug > div { | |
| 295 margin: 0; | |
| 296 } | |
| 297 | |
| 298 .section { | 279 .section { |
| 299 position: fixed; | 280 position: fixed; |
| 300 font-size: 12px; | 281 font-size: 12px; |
| 301 } | 282 } |
| 302 | 283 |
| 303 .section.disabled { | 284 .section.disabled { |
| 304 display: none !important; | 285 display: none !important; |
| 305 } | 286 } |
| 306 | 287 |
| 307 .section > h2 { | 288 .section > h2 { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 } | 416 } |
| 436 } | 417 } |
| 437 | 418 |
| 438 /* Ensure we have at least 10px horizontal marging. */ | 419 /* Ensure we have at least 10px horizontal marging. */ |
| 439 @media (max-width: 712px) { | 420 @media (max-width: 712px) { |
| 440 #main { | 421 #main { |
| 441 margin-left: 10px; | 422 margin-left: 10px; |
| 442 margin-right: 10px; | 423 margin-right: 10px; |
| 443 } | 424 } |
| 444 } | 425 } |
| OLD | NEW |