| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 | 5 |
| 6 html { | 6 html { |
| 7 height: 100%; | 7 height: 100%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| 11 background-color: #fbfbfb; | 11 background-color: #fbfbfb; |
| 12 height: 100%; | 12 height: 100%; |
| 13 margin: 0; | 13 margin: 0; |
| 14 overflow: auto; |
| 14 padding: 0; | 15 padding: 0; |
| 15 width: 100%; | 16 width: 100%; |
| 16 } | 17 } |
| 17 | 18 |
| 18 .title-bar { | 19 .title-bar { |
| 19 -webkit-align-items: center; | 20 -webkit-align-items: center; |
| 20 -webkit-app-region: drag; | 21 -webkit-app-region: drag; |
| 21 background-color: #fff; | 22 background-color: #fff; |
| 22 box-shadow: 0 1px #d0d0d0; | 23 box-shadow: 0 1px #d0d0d0; |
| 23 color: rgb(80, 80, 82); | 24 color: rgb(80, 80, 82); |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 | 165 |
| 165 button.white-button { | 166 button.white-button { |
| 166 -webkit-margin-end: 10px; | 167 -webkit-margin-end: 10px; |
| 167 color: #000; | 168 color: #000; |
| 168 } | 169 } |
| 169 | 170 |
| 170 button.blue-button { | 171 button.blue-button { |
| 171 color: #fff; | 172 color: #fff; |
| 172 text-shadow: 1px sharp drop shadow rgb(45, 106, 218); | 173 text-shadow: 1px sharp drop shadow rgb(45, 106, 218); |
| 173 } | 174 } |
| OLD | NEW |