Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /** | 1 /** |
| 2 * Copyright 2016 Google Inc. All rights reserved. | 2 * Copyright 2016 Google Inc. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 body { | 7 body { |
| 8 background-color: white; | |
| 9 direction: __MSG_@@bidi_dir__; | |
|
Devlin
2016/11/05 02:18:21
This should be handled by the user's browser prefe
Pam (message me for reviews)
2016/11/05 04:12:56
I'll check.
Meanwhile, I started out by following
| |
| 10 margin: 0; | |
| 8 padding: 10px; | 11 padding: 10px; |
| 9 direction: __MSG_@@bidi_dir__; | |
| 10 } | 12 } |
| 11 | 13 |
| 12 textarea { | 14 textarea { |
| 15 -webkit-padding-start: 4px; | |
| 16 margin-top: 2px; | |
| 13 width: 100%; | 17 width: 100%; |
| 14 margin: 0; | |
| 15 padding: 0; | |
| 16 } | 18 } |
| 17 | 19 |
| 18 .applets { | 20 input { |
| 19 padding-top: 20px; | 21 margin-bottom: 20px; |
| 20 } | 22 } |
| 21 | 23 |
| 22 .whitelist { | 24 fieldset { |
| 23 padding-top: 10px; | 25 border: solid 1px rgb(204, 204, 204); |
| 24 padding-__MSG_@@bidi_start_edge__: 40px; | 26 border-radius: 3px; |
| 27 padding: 4px 8px; | |
| 28 } | |
| 29 | |
| 30 fieldset legend { | |
| 31 color: rgb(0, 51, 102); | |
| 32 } | |
| 33 | |
| 34 .feedback-button { | |
| 35 padding: 5px 0; | |
| 36 text-align: end; | |
| 37 } | |
| 38 | |
| 39 .setting { | |
| 40 margin: 2px 0; | |
| 41 } | |
| 42 | |
| 43 .sub-setting { | |
| 44 -webkit-margin-start: 10px; | |
| 45 margin-top: 5px; | |
| 25 } | 46 } |
| 26 | 47 |
| 27 .buttons { | 48 .buttons { |
| 28 padding-top: 2px; | 49 -webkit-margin-end: 0; |
| 29 padding-bottom: 1px; | 50 -webkit-margin-start: 20px; |
| 30 padding-__MSG_@@bidi_start_edge__: 20px; | 51 margin-bottom: 1px; |
| 31 padding-__MSG_@@bidi_end_edge__: 0px; | 52 margin-top: 2px; |
| 32 text-align: __MSG_@@bidi_end_edge__; | 53 text-align: end; |
| 33 } | 54 } |
| 34 | 55 |
| 35 #error { | 56 #error { |
| 36 color: red; | 57 color: red; |
| 58 margin: 5px 0; | |
| 37 } | 59 } |
| 38 | |
| 39 #report_page { | |
| 40 float: __MSG_@@bidi_start_edge__; | |
| 41 } | |
| OLD | NEW |