| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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(xdai): Remove hard-coded font-family for 'Roboto'. */ | 5 /* TODO(xdai): Remove hard-coded font-family for 'Roboto'. */ |
| 6 | 6 |
| 7 * { | 7 * { |
| 8 box-sizing: border-box; | 8 box-sizing: border-box; |
| 9 color: rgba(0, 0, 0, .54); | 9 color: rgba(0, 0, 0, .54); |
| 10 font-family: Roboto, 'Noto Sans', sans-serif; | 10 font-family: Roboto, 'Noto Sans', sans-serif; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 #start-container .buttonbar button { | 63 #start-container .buttonbar button { |
| 64 height: 100%; | 64 height: 100%; |
| 65 margin: 0; | 65 margin: 0; |
| 66 padding: 0 8px; | 66 padding: 0 8px; |
| 67 width: 100%; | 67 width: 100%; |
| 68 } | 68 } |
| 69 | 69 |
| 70 a { | 70 a { |
| 71 -webkit-app-region: no-drag; | 71 -webkit-app-region: no-drag; |
| 72 color: rgb(66, 133, 244); | 72 color: rgb(51, 103, 214); |
| 73 text-decoration: none; | 73 text-decoration: none; |
| 74 } | 74 } |
| 75 | 75 |
| 76 button { | 76 button { |
| 77 -webkit-app-region: no-drag; | 77 -webkit-app-region: no-drag; |
| 78 } | 78 } |
| 79 | 79 |
| 80 body { | 80 body { |
| 81 -webkit-app-region: drag; | 81 -webkit-app-region: drag; |
| 82 background: #ddd; | 82 background: #ddd; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 .buttonbar button:disabled { | 253 .buttonbar button:disabled { |
| 254 opacity: .5; | 254 opacity: .5; |
| 255 } | 255 } |
| 256 | 256 |
| 257 .buttonbar button.grayed-out { | 257 .buttonbar button.grayed-out { |
| 258 color: rgba(0, 0, 0, .28); | 258 color: rgba(0, 0, 0, .28); |
| 259 text-transform: none; | 259 text-transform: none; |
| 260 } | 260 } |
| 261 | 261 |
| 262 .buttonbar button.primary { | 262 .buttonbar button.primary { |
| 263 color: rgb(66, 133, 244); | 263 color: rgb(51, 103, 214); |
| 264 } | 264 } |
| 265 | 265 |
| 266 .buttonbar .left { | 266 .buttonbar .left { |
| 267 float: left; | 267 float: left; |
| 268 text-align: left; | 268 text-align: left; |
| 269 } | 269 } |
| 270 | 270 |
| 271 .buttonbar .left button:first-child { | 271 .buttonbar .left button:first-child { |
| 272 margin-left: 0; | 272 margin-left: 0; |
| 273 } | 273 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 .buttonbar .message .text { | 307 .buttonbar .message .text { |
| 308 color: rgba(0, 0, 0, .54); | 308 color: rgba(0, 0, 0, .54); |
| 309 display: inline-block; | 309 display: inline-block; |
| 310 line-height: 18px; | 310 line-height: 18px; |
| 311 padding-top: 2px; | 311 padding-top: 2px; |
| 312 vertical-align: top; | 312 vertical-align: top; |
| 313 } | 313 } |
| 314 | 314 |
| 315 .buttonbar .message.error .text { | 315 .buttonbar .message.error .text { |
| 316 color: rgb(219, 68, 55); | 316 color: rgb(213, 0, 0); |
| 317 } | 317 } |
| 318 | 318 |
| 319 .close { | 319 .close { |
| 320 -webkit-app-region: no-drag; | 320 -webkit-app-region: no-drag; |
| 321 background: -webkit-image-set( | 321 background: -webkit-image-set( |
| 322 url(../images/ic-x-white-1x.png) 1x, | 322 url(../images/ic-x-white-1x.png) 1x, |
| 323 url(../images/ic-x-white-2x.png) 2x) | 323 url(../images/ic-x-white-2x.png) 2x) |
| 324 center center no-repeat; | 324 center center no-repeat; |
| 325 border: none; | 325 border: none; |
| 326 float: right; | 326 float: right; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 352 background: none; | 352 background: none; |
| 353 border: none; | 353 border: none; |
| 354 color: rgb(58, 218, 255); | 354 color: rgb(58, 218, 255); |
| 355 float: right; | 355 float: right; |
| 356 height: 32px; | 356 height: 32px; |
| 357 margin-left: 18px; | 357 margin-left: 18px; |
| 358 min-width: 56px; | 358 min-width: 56px; |
| 359 padding: 0 8px 0 8px; | 359 padding: 0 8px 0 8px; |
| 360 text-transform: uppercase; | 360 text-transform: uppercase; |
| 361 } | 361 } |
| OLD | NEW |