| 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 } | 8 } |
| 9 | 9 |
| 10 #main { | 10 #main { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 .filler { | 79 .filler { |
| 80 pointer-events: none; | 80 pointer-events: none; |
| 81 } | 81 } |
| 82 | 82 |
| 83 .filler .thumbnail-wrapper { | 83 .filler .thumbnail-wrapper { |
| 84 visibility: visible; | 84 visibility: visible; |
| 85 border: 3px solid hsl(213, 60%, 92%); | 85 border: 3px solid hsl(213, 60%, 92%); |
| 86 } | 86 } |
| 87 | 87 |
| 88 .list > .filler * { |
| 89 visibility: hidden !important; |
| 90 } |
| 91 |
| 88 .filler .thumbnail { | 92 .filler .thumbnail { |
| 89 visibility: inherit; | 93 visibility: inherit; |
| 90 border: 1px solid white; | 94 border: 1px solid white; |
| 91 padding: 0; | 95 padding: 0; |
| 92 background-color: hsl(213, 60%, 92%); | 96 background-color: hsl(213, 60%, 92%); |
| 93 } | 97 } |
| 94 | 98 |
| 95 .edit-bar { | 99 .edit-bar { |
| 96 display: -webkit-box; | 100 display: -webkit-box; |
| 97 -webkit-box-orient: horizontal; | 101 -webkit-box-orient: horizontal; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 /* delay border radius transition as much as the edit bar slide delay */ | 261 /* delay border radius transition as much as the edit bar slide delay */ |
| 258 -webkit-transition-delay: 0, 0, 0, .5s, 0; | 262 -webkit-transition-delay: 0, 0, 0, .5s, 0; |
| 259 } | 263 } |
| 260 | 264 |
| 261 .thumbnail-container:focus > .edit-mode-border, | 265 .thumbnail-container:focus > .edit-mode-border, |
| 262 .thumbnail-container:hover > .edit-mode-border { | 266 .thumbnail-container:hover > .edit-mode-border { |
| 263 background-color: hsl(213, 66%, 57%); | 267 background-color: hsl(213, 66%, 57%); |
| 264 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .5); | 268 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .5); |
| 265 } | 269 } |
| 266 | 270 |
| 267 .dragging { | 271 .dragging, |
| 268 -webkit-transition: none; | 272 .dragging * { |
| 273 -webkit-transition: none !important; |
| 269 } | 274 } |
| 270 | 275 |
| 271 .dragging > .title { | 276 .dragging > .title { |
| 272 opacity: 0 !important; | 277 opacity: 0; |
| 273 } | 278 } |
| 274 | 279 |
| 275 .list > .dragging > .title { | 280 .list > .dragging > .title { |
| 276 opacity: 1; | 281 opacity: 1; |
| 277 } | 282 } |
| 278 | 283 |
| 279 .hide { | 284 .hide { |
| 280 opacity: 0 !important; | 285 opacity: 0 !important; |
| 281 visibility: hidden !important; | 286 visibility: hidden !important; |
| 282 } | 287 } |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 -webkit-column-count: 2; | 503 -webkit-column-count: 2; |
| 499 -webkit-column-gap: 20px; | 504 -webkit-column-gap: 20px; |
| 500 height: 120px; | 505 height: 120px; |
| 501 } | 506 } |
| 502 | 507 |
| 503 #recent-activities.large > .item-container { | 508 #recent-activities.large > .item-container { |
| 504 -webkit-column-count: 4; | 509 -webkit-column-count: 4; |
| 505 } | 510 } |
| 506 | 511 |
| 507 .section { | 512 .section { |
| 508 -webkit-box-flex: 1; | |
| 509 width: 50%; | |
| 510 display: inline-block; | 513 display: inline-block; |
| 511 } | 514 } |
| 512 | 515 |
| 513 #view-toolbar { | 516 #view-toolbar { |
| 514 -webkit-user-select: none; | 517 -webkit-user-select: none; |
| 515 text-align: right; | 518 text-align: right; |
| 516 position: relative; | 519 position: relative; |
| 517 top: 35px; | 520 top: 35px; |
| 518 } | 521 } |
| 519 | 522 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 } | 720 } |
| 718 | 721 |
| 719 #t3, #t7 { | 722 #t3, #t7 { |
| 720 left: 534px; | 723 left: 534px; |
| 721 } | 724 } |
| 722 | 725 |
| 723 #t4, #t5, #t6, #t7 { | 726 #t4, #t5, #t6, #t7 { |
| 724 top: 147px; | 727 top: 147px; |
| 725 } | 728 } |
| 726 } | 729 } |
| OLD | NEW |