| 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 /* main controls */ | 5 /* main controls */ |
| 6 | 6 |
| 7 th, td { | 7 th, td { |
| 8 text-align: center; | 8 text-align: center; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 margin-right: 10px; | 67 margin-right: 10px; |
| 68 } | 68 } |
| 69 | 69 |
| 70 .swatch span { | 70 .swatch span { |
| 71 -webkit-transform: translate(-5px, -22px); | 71 -webkit-transform: translate(-5px, -22px); |
| 72 font: 60pt sans; | 72 font: 60pt sans; |
| 73 display: flex; | 73 display: flex; |
| 74 height: 40px; | 74 height: 40px; |
| 75 line-height: 1em; | 75 line-height: 1em; |
| 76 width: 40px; | 76 width: 40px; |
| 77 pointer-events: none; |
| 77 } | 78 } |
| 78 | 79 |
| 79 #severity { | 80 #severity { |
| 80 margin-left: 50px; | 81 margin-left: 50px; |
| 81 width: 200px; | 82 width: 200px; |
| 82 } | 83 } |
| 83 | 84 |
| 84 #button-strip { | 85 #button-strip { |
| 85 display: flex; | 86 display: flex; |
| 86 flex-direction: row; | 87 flex-direction: row; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 117 flex-direction: row; | 118 flex-direction: row; |
| 118 justify-content: flex-end; | 119 justify-content: flex-end; |
| 119 position: relative; | 120 position: relative; |
| 120 } | 121 } |
| 121 | 122 |
| 122 #setup-button-strip input:first-child { | 123 #setup-button-strip input:first-child { |
| 123 left: 0; | 124 left: 0; |
| 124 position: absolute; | 125 position: absolute; |
| 125 top: 0; | 126 top: 0; |
| 126 } | 127 } |
| OLD | NEW |