| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 /* TODO: Need to discuss with NTP folks before we remove font-family from the | 5 /* TODO: Need to discuss with NTP folks before we remove font-family from the |
| 6 * body tag. */ | 6 * body tag. */ |
| 7 body { | 7 body { |
| 8 background-attachment: fixed !important; | 8 background-attachment: fixed !important; |
| 9 cursor: default; | 9 cursor: default; |
| 10 font-family: arial, sans-serif; | 10 font-family: arial, sans-serif; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 position: absolute; | 21 position: absolute; |
| 22 top: calc(50% - 155px); | 22 top: calc(50% - 155px); |
| 23 width: 100%; | 23 width: 100%; |
| 24 } | 24 } |
| 25 | 25 |
| 26 body.hide-fakebox-logo #logo, | 26 body.hide-fakebox-logo #logo, |
| 27 body.hide-fakebox-logo #fakebox { | 27 body.hide-fakebox-logo #fakebox { |
| 28 visibility: hidden; | 28 visibility: hidden; |
| 29 } | 29 } |
| 30 | 30 |
| 31 body.fakebox-disable #fakebox { | |
| 32 border-color: rgb(238, 238, 238); | |
| 33 cursor: default; | |
| 34 } | |
| 35 | |
| 36 body.fakebox-disable #fakebox > input { | |
| 37 cursor: default; | |
| 38 } | |
| 39 | |
| 40 #logo { | 31 #logo { |
| 41 background-image: url(../../../../ui/webui/resources/images/google_logo.svg); | 32 background-image: url(../../../../ui/webui/resources/images/google_logo.svg); |
| 42 background-repeat: no-repeat; | 33 background-repeat: no-repeat; |
| 43 height: 92px; | 34 height: 92px; |
| 44 margin-bottom: 24px; | 35 margin-bottom: 24px; |
| 45 margin-top: 157px; | 36 margin-top: 157px; |
| 46 width: 272px; | 37 width: 272px; |
| 47 } | 38 } |
| 48 | 39 |
| 49 body.alternate-logo #logo { | 40 body.alternate-logo #logo { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 /* Links in the notification. */ | 220 /* Links in the notification. */ |
| 230 #mv-notice-links span { | 221 #mv-notice-links span { |
| 231 -webkit-margin-start: 6px; | 222 -webkit-margin-start: 6px; |
| 232 color: rgb(17, 85, 204); | 223 color: rgb(17, 85, 204); |
| 233 cursor: pointer; | 224 cursor: pointer; |
| 234 outline: none; | 225 outline: none; |
| 235 padding: 0 4px; | 226 padding: 0 4px; |
| 236 } | 227 } |
| 237 | 228 |
| 238 #mv-notice-links span:hover, | 229 #mv-notice-links span:hover, |
| 239 #mv-notice-links span:focus, | 230 #mv-notice-links span:focus { |
| 240 #recent-tabs:hover { | |
| 241 text-decoration: underline; | 231 text-decoration: underline; |
| 242 } | 232 } |
| 243 | 233 |
| 244 .default-theme.dark #mv-msg { | 234 .default-theme.dark #mv-msg { |
| 245 color: #fff; | 235 color: #fff; |
| 246 } | 236 } |
| 247 | 237 |
| 248 .default-theme.dark #mv-notice-links span { | 238 .default-theme.dark #mv-notice-links span { |
| 249 color: #fff; | 239 color: #fff; |
| 250 } | 240 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 273 z-index: -1; | 263 z-index: -1; |
| 274 } | 264 } |
| 275 | 265 |
| 276 html[dir=rtl] #attribution, | 266 html[dir=rtl] #attribution, |
| 277 #attribution.left-align-attribution { | 267 #attribution.left-align-attribution { |
| 278 left: 8px; | 268 left: 8px; |
| 279 right: auto; | 269 right: auto; |
| 280 text-align: right; | 270 text-align: right; |
| 281 } | 271 } |
| 282 | 272 |
| 283 #recent-tabs { | |
| 284 background: #fff; | |
| 285 border: 1px solid #c0c0c0; | |
| 286 border-radius: 2px; | |
| 287 bottom: 0; | |
| 288 color: rgb(17, 85, 204); | |
| 289 cursor: pointer; | |
| 290 font-family: Arial; | |
| 291 font-size: 14px; | |
| 292 opacity: 0.9; | |
| 293 padding: 3px; | |
| 294 position: fixed; | |
| 295 right: 8px; | |
| 296 } | |
| 297 | |
| 298 html[dir=rtl] #recent-tabs { | |
| 299 left: 8px; | |
| 300 right: auto; | |
| 301 } | |
| 302 | |
| 303 #mv-single { | 273 #mv-single { |
| 304 border: none; | 274 border: none; |
| 305 height: 100%; | 275 height: 100%; |
| 306 width: 100%; | 276 width: 100%; |
| 307 } | 277 } |
| OLD | NEW |