Chromium Code Reviews| 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 body.uber-frame { | 5 body.uber-frame { |
| 6 -webkit-margin-start: 23px; | 6 -webkit-margin-start: 23px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body.uber-frame > .page { | 9 body.uber-frame > .page { |
| 10 -webkit-margin-end: 0; | 10 -webkit-margin-end: 0; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 } | 70 } |
| 71 | 71 |
| 72 div.reload-policies-button { | 72 div.reload-policies-button { |
| 73 float: left; | 73 float: left; |
| 74 } | 74 } |
| 75 | 75 |
| 76 html[dir='rtl'] div.reload-policies-button { | 76 html[dir='rtl'] div.reload-policies-button { |
| 77 float: right; | 77 float: right; |
| 78 } | 78 } |
| 79 | 79 |
| 80 div.chrome-work-link { | |
| 81 display: inline-block; | |
| 82 padding-left: 25px; | |
|
Dan Beam
2016/10/03 21:56:55
-webkit-padding-start: 25px;
so it magically flip
Georges Khalil
2016/10/04 13:36:52
Done.
| |
| 83 } | |
| 84 | |
| 80 div.show-unset-checkbox { | 85 div.show-unset-checkbox { |
| 81 float: right; | 86 float: right; |
| 82 } | 87 } |
| 83 | 88 |
| 84 html[dir='rtl'] div.show-unset-checkbox { | 89 html[dir='rtl'] div.show-unset-checkbox { |
| 85 float: left; | 90 float: left; |
| 86 } | 91 } |
| 87 | 92 |
| 88 section.reload-show-unset-section { | 93 section.reload-show-unset-section { |
| 89 padding-bottom: 30px; | 94 padding-bottom: 30px; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 169 white-space: pre; | 174 white-space: pre; |
| 170 word-wrap: break-word; | 175 word-wrap: break-word; |
| 171 } | 176 } |
| 172 | 177 |
| 173 html:not(.focus-outline-visible) | 178 html:not(.focus-outline-visible) |
| 174 :enabled:focus:-webkit-any(input[type='checkbox'], | 179 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 175 input[type='radio'], button) { | 180 input[type='radio'], button) { |
| 176 /* Cancel border-color for :focus specified in widgets.css. */ | 181 /* Cancel border-color for :focus specified in widgets.css. */ |
| 177 border-color: rgba(0, 0, 0, 0.25); | 182 border-color: rgba(0, 0, 0, 0.25); |
| 178 } | 183 } |
| OLD | NEW |