| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 -webkit-border-radius: 5px; | 230 -webkit-border-radius: 5px; |
| 231 display: block; | 231 display: block; |
| 232 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); | 232 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); |
| 233 -webkit-transition: width .15s, height .15s, border-color .15s, | 233 -webkit-transition: width .15s, height .15s, border-color .15s, |
| 234 -webkit-border-radius .15s, -webkit-box-shadow .15s; | 234 -webkit-border-radius .15s, -webkit-box-shadow .15s; |
| 235 } | 235 } |
| 236 | 236 |
| 237 .edit-mode-border { | 237 .edit-mode-border { |
| 238 -webkit-border-radius: 4px; | 238 -webkit-border-radius: 4px; |
| 239 background-color: hsla(213, 54%, 95%, 0); | 239 background-color: hsla(213, 54%, 95%, 0); |
| 240 |
| 241 /* when dragged over we move this */ |
| 242 position: relative; |
| 243 -webkit-transition: top .15s, left .15s; |
| 240 } | 244 } |
| 241 | 245 |
| 242 .thumbnail-container:focus .thumbnail, | 246 .thumbnail-container:focus .thumbnail, |
| 243 .thumbnail-container:hover .thumbnail { | 247 .thumbnail-container:hover .thumbnail { |
| 244 border-color: hsl(213, 66%, 57%); | 248 border-color: hsl(213, 66%, 57%); |
| 245 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); | 249 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); |
| 246 -webkit-border-top-left-radius: 0; | 250 -webkit-border-top-left-radius: 0; |
| 247 -webkit-border-top-right-radius: 0; | 251 -webkit-border-top-right-radius: 0; |
| 248 | 252 |
| 249 background-image: -webkit-gradient(linear, left top, left bottom, | 253 background-image: -webkit-gradient(linear, left top, left bottom, |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 } | 705 } |
| 702 | 706 |
| 703 #t3, #t7 { | 707 #t3, #t7 { |
| 704 left: 534px; | 708 left: 534px; |
| 705 } | 709 } |
| 706 | 710 |
| 707 #t4, #t5, #t6, #t7 { | 711 #t4, #t5, #t6, #t7 { |
| 708 top: 147px; | 712 top: 147px; |
| 709 } | 713 } |
| 710 } | 714 } |
| OLD | NEW |