| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 html { | 5 html { |
| 6 overflow: hidden; | 6 overflow: hidden; |
| 7 } | 7 } |
| 8 | 8 |
| 9 /* Outer frame of the dialog. */ | 9 /* Outer frame of the dialog. */ |
| 10 body { | 10 body { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 -webkit-box-flex: 1; | 61 -webkit-box-flex: 1; |
| 62 } | 62 } |
| 63 | 63 |
| 64 /* Title Column text containers. */ | 64 /* Title Column text containers. */ |
| 65 .detail-title { | 65 .detail-title { |
| 66 display: -webkit-box; | 66 display: -webkit-box; |
| 67 height: 20px; | 67 height: 20px; |
| 68 } | 68 } |
| 69 | 69 |
| 70 /* Bullets on the left of row. */ | 70 /* Bullets on the left of row. */ |
| 71 .table-row > .table-row-cell:first-child:before { | 71 .table-row > .table-row-cell:first-child::before { |
| 72 -webkit-border-radius: 3px; | 72 -webkit-border-radius: 3px; |
| 73 background: #ccc; | 73 background: #ccc; |
| 74 content: ''; | 74 content: ''; |
| 75 display: block; | 75 display: block; |
| 76 margin: 7px 4px 7px 7px; | 76 margin: 7px 4px 7px 7px; |
| 77 width: 6px; | 77 width: 6px; |
| 78 } | 78 } |
| 79 | 79 |
| 80 .table-background-row { | 80 .table-background-row { |
| 81 background-color: hsl(34, 91%, 87%); | 81 background-color: hsl(34, 91%, 87%); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 142 |
| 143 /* Container for the ok/cancel buttons. */ | 143 /* Container for the ok/cancel buttons. */ |
| 144 .footer-right-container { | 144 .footer-right-container { |
| 145 -webkit-box-flex: 1; | 145 -webkit-box-flex: 1; |
| 146 text-align: right; | 146 text-align: right; |
| 147 } | 147 } |
| 148 | 148 |
| 149 button { | 149 button { |
| 150 margin: 2px 0 2px 8px; | 150 margin: 2px 0 2px 8px; |
| 151 } | 151 } |
| OLD | NEW |