| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 white-space: nowrap; | 254 white-space: nowrap; |
| 255 overflow-x: hidden; | 255 overflow-x: hidden; |
| 256 } | 256 } |
| 257 | 257 |
| 258 #sync-status > div > * { | 258 #sync-status > div > * { |
| 259 display: inline-block; | 259 display: inline-block; |
| 260 max-width: none; | 260 max-width: none; |
| 261 white-space: nowrap; | 261 white-space: nowrap; |
| 262 overflow: hidden; | 262 overflow: hidden; |
| 263 text-overflow: ellipsis; | 263 text-overflow: ellipsis; |
| 264 font-size: 100%; | 264 font-size: 106%; |
| 265 margin: 0 10px; | 265 margin: 0 10px; |
| 266 } | 266 } |
| 267 | 267 |
| 268 .notification.hidden { | 268 .notification.hidden { |
| 269 opacity: 0; | 269 opacity: 0; |
| 270 pointer-events: none; | 270 pointer-events: none; |
| 271 } | 271 } |
| 272 | 272 |
| 273 /** | 273 /** |
| 274 * Unfortunately, there seems to be a bug in WebKit where this div doesn't | 274 * Unfortunately, there seems to be a bug in WebKit where this div doesn't |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 } | 551 } |
| 552 } | 552 } |
| 553 | 553 |
| 554 /* Ensure we have at least 10px horizontal marging. */ | 554 /* Ensure we have at least 10px horizontal marging. */ |
| 555 @media (max-width: 712px) { | 555 @media (max-width: 712px) { |
| 556 #main { | 556 #main { |
| 557 margin-left: 10px; | 557 margin-left: 10px; |
| 558 margin-right: 10px; | 558 margin-right: 10px; |
| 559 } | 559 } |
| 560 } | 560 } |
| OLD | NEW |