OLD | NEW |
(Empty) | |
| 1 /* Most Visited */ |
| 2 |
| 3 #most-visited { |
| 4 position: relative; |
| 5 padding: 0; |
| 6 height: 366px; |
| 7 margin-top: -10px; |
| 8 -webkit-user-select: none; |
| 9 } |
| 10 |
| 11 .thumbnail-container { |
| 12 position: absolute; |
| 13 color: hsl(213, 90%, 24%); |
| 14 text-decoration: none; |
| 15 -webkit-transition: left .15s, right .15s, top .15s; |
| 16 text-decoration: none; |
| 17 } |
| 18 |
| 19 .thumbnail-container:focus { |
| 20 outline: none; |
| 21 } |
| 22 |
| 23 .thumbnail, |
| 24 .thumbnail-container > .title { |
| 25 width: 207px; /* natural size is 196 */ |
| 26 height: 129px; /* 136 */ |
| 27 -webkit-transition: width .15s, height .15s; |
| 28 } |
| 29 |
| 30 .thumbnail-container > .title { |
| 31 line-height: 16px; |
| 32 height: 16px; |
| 33 margin: 0; |
| 34 margin-top: 4px; |
| 35 font-size: 100%; |
| 36 font-weight: normal; |
| 37 padding: 0 3px; |
| 38 opacity: 1; |
| 39 -webkit-transition: opacity .15s, width .15s; |
| 40 color: black; |
| 41 } |
| 42 |
| 43 .thumbnail-wrapper { |
| 44 display: block; |
| 45 background-size: 212px 132px; |
| 46 background: no-repeat 4px 4px; |
| 47 background-color: white; |
| 48 border-radius: 5px; |
| 49 -webkit-transition: background-size .15s; |
| 50 position: relative; |
| 51 } |
| 52 |
| 53 .filler * { |
| 54 visibility: hidden; |
| 55 } |
| 56 |
| 57 .filler { |
| 58 pointer-events: none; |
| 59 } |
| 60 |
| 61 .filler .thumbnail-wrapper { |
| 62 visibility: visible; |
| 63 border: 3px solid hsl(213, 60%, 92%); |
| 64 } |
| 65 |
| 66 .filler .thumbnail { |
| 67 visibility: inherit; |
| 68 border: 1px solid white; |
| 69 padding: 0; |
| 70 background-color: hsl(213, 60%, 92%); |
| 71 } |
| 72 |
| 73 .edit-bar { |
| 74 display: -webkit-box; |
| 75 -webkit-box-orient: horizontal; |
| 76 -webkit-box-align: stretch; |
| 77 padding: 3px; |
| 78 padding-bottom: 0; |
| 79 height: 17px; /* 23 - 2 * 3 */ |
| 80 cursor: move; |
| 81 font-size: 100%; |
| 82 line-height: 17px; |
| 83 background: hsl(213, 54%, 95%); |
| 84 border-top-left-radius: 4px; |
| 85 border-top-right-radius: 4px; |
| 86 position: relative; |
| 87 margin-top: 21px; |
| 88 margin-bottom: -21px; |
| 89 -webkit-transition: margin .15s, background .15s; |
| 90 } |
| 91 |
| 92 .edit-bar > * { |
| 93 display: block; |
| 94 position: relative; |
| 95 } |
| 96 |
| 97 .thumbnail-container:focus .edit-bar, |
| 98 .thumbnail-container:hover .edit-bar { |
| 99 margin-top: 0; |
| 100 margin-bottom: 0; |
| 101 -webkit-transition-delay: .5s, 0s; |
| 102 |
| 103 /* We need background-color as well to get the fade out animation correct */ |
| 104 background-color: hsl(213, 66%, 57%); |
| 105 background-image: -webkit-gradient(linear, left top, left bottom, |
| 106 from(hsl(213, 87%, 67%)), |
| 107 to(hsl(213, 66%, 57%))); |
| 108 } |
| 109 |
| 110 .edit-bar > .spacer { |
| 111 -webkit-box-flex: 1; |
| 112 } |
| 113 |
| 114 .edit-bar > .pin, |
| 115 .edit-bar > .remove { |
| 116 width: 16px; |
| 117 height: 16px; |
| 118 cursor: pointer; |
| 119 background-image: no-repeat 50% 50%; |
| 120 } |
| 121 |
| 122 .edit-bar > .pin { |
| 123 background-image: url(chrome://theme/newtab_pin_off); |
| 124 } |
| 125 |
| 126 .edit-bar > .pin:hover { |
| 127 background-image: url(chrome://theme/newtab_pin_off_h); |
| 128 } |
| 129 |
| 130 .edit-bar > .pin:active { |
| 131 background-image: url(chrome://theme/newtab_pin_off_p); |
| 132 } |
| 133 |
| 134 .pinned .edit-bar > .pin { |
| 135 background-image: url(chrome://theme/newtab_pin_on); |
| 136 } |
| 137 |
| 138 .pinned .edit-bar > .pin:hover { |
| 139 background-image: url(chrome://theme/newtab_pin_on_h); |
| 140 } |
| 141 |
| 142 .pinned .edit-bar > .pin:active { |
| 143 background-image: url(chrome://theme/newtab_pin_on_p); |
| 144 } |
| 145 |
| 146 .edit-bar > .remove { |
| 147 background-image: url(chrome://theme/newtab_close); |
| 148 } |
| 149 |
| 150 .edit-bar > .remove:hover { |
| 151 background-image: url(chrome://theme/newtab_close_h); |
| 152 } |
| 153 |
| 154 .edit-bar > .remove:active { |
| 155 background-image: url(chrome://theme/newtab_close_p); |
| 156 } |
| 157 |
| 158 .thumbnail-container > .title > div { |
| 159 white-space: nowrap; |
| 160 overflow: hidden; |
| 161 text-overflow: ellipsis; |
| 162 background: no-repeat 0 50%; |
| 163 background-size: 16px; |
| 164 padding-left: 20px; /* we cannot use padding start here because even if we set |
| 165 the direction we always want the icon on the same side |
| 166 */ |
| 167 padding-right: 0; |
| 168 } |
| 169 |
| 170 html[dir=rtl] .thumbnail-container > .title > div { |
| 171 background-position-x: 100%; |
| 172 padding-left: 0; |
| 173 padding-right: 20px; |
| 174 text-align: right; |
| 175 } |
| 176 |
| 177 .thumbnail { |
| 178 border: 3px solid hsl(213, 63%, 93%); |
| 179 padding: 1px; |
| 180 border-radius: 5px; |
| 181 display: block; |
| 182 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); |
| 183 -webkit-transition: width .15s, height .15s, border-color .15s, |
| 184 border-radius .15s, -webkit-box-shadow .15s; |
| 185 } |
| 186 |
| 187 .edit-mode-border { |
| 188 border-radius: 4px; |
| 189 |
| 190 /* when dragged over we move this */ |
| 191 position: relative; |
| 192 -webkit-transition: top .15s, left .15s; |
| 193 } |
| 194 |
| 195 .thumbnail-container:focus .thumbnail, |
| 196 .thumbnail-container:hover .thumbnail { |
| 197 border-color: hsl(213, 66%, 57%); |
| 198 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); |
| 199 -webkit-border-top-left-radius: 0; |
| 200 -webkit-border-top-right-radius: 0; |
| 201 |
| 202 background-image: -webkit-gradient(linear, left top, left bottom, |
| 203 from(hsla(0, 0%, 0%, 0)), |
| 204 color-stop(0.85, hsla(0, 0%, 47%, 0)), |
| 205 to(hsla(0, 0%, 47%, 0.2)) |
| 206 ); |
| 207 |
| 208 /* delay border radius transition as much as the edit bar slide delay */ |
| 209 -webkit-transition-delay: 0, 0, 0, .5s, 0; |
| 210 } |
| 211 |
| 212 .thumbnail-container:focus > .edit-mode-border, |
| 213 .thumbnail-container:hover > .edit-mode-border { |
| 214 background-color: hsl(213, 66%, 57%); |
| 215 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .5); |
| 216 } |
| 217 |
| 218 .dragging, |
| 219 .dragging * { |
| 220 -webkit-transition: none !important; |
| 221 } |
| 222 |
| 223 .dragging > .title { |
| 224 opacity: 0; |
| 225 } |
| 226 |
| 227 @-webkit-keyframes 'fade-in' { |
| 228 0% { |
| 229 opacity: 0; |
| 230 } |
| 231 |
| 232 100% { |
| 233 opacity: 1; |
| 234 } |
| 235 } |
| 236 |
| 237 .fade-in { |
| 238 -webkit-animation: 'fade-in' .15s; |
| 239 } |
| 240 |
| 241 @media (max-width: 920px) { |
| 242 #most-visited { |
| 243 height: 294px; |
| 244 } |
| 245 |
| 246 .thumbnail, |
| 247 .thumbnail-container > .title { |
| 248 width: 150px; |
| 249 height: 93px; |
| 250 } |
| 251 |
| 252 .thumbnail-container > .title { |
| 253 height: auto; |
| 254 } |
| 255 |
| 256 .thumbnail-wrapper { |
| 257 background-size: 150px 93px; |
| 258 } |
| 259 } |
OLD | NEW |