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 html[dir=rtl] body.uber-frame > .page { | 5 html[dir=rtl] body.uber-frame > .page { |
| 6 -webkit-margin-end: 0; | 6 -webkit-margin-end: 0; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #top-container { | 9 #top-container { |
| 10 margin-top: 16px; | 10 margin-top: 16px; |
| 11 overflow: auto; | 11 overflow: auto; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #editing-controls, | 14 #editing-controls, |
| 15 #loading-spinner { | 15 #loading-spinner { |
| 16 white-space: nowrap; | 16 white-space: nowrap; |
| 17 } | 17 } |
| 18 | 18 |
| 19 #lock-unlock-button:not(.profile-is-managed), | 19 #lock-unlock-button:not(.profile-is-managed), |
| 20 .managed-user-locked #allow-selected, | 20 .managed-user-locked #allow-selected, |
| 21 .managed-user-locked #block-selected { | 21 .managed-user-locked #block-selected { |
| 22 display: none; | 22 display: none; |
| 23 } | 23 } |
| 24 | 24 |
| 25 #lock-unlock-button { | 25 #lock-unlock-button { |
| 26 float: right; | 26 width: 65px; |
|
Patrick Dubroy
2013/04/05 09:50:26
i18n.
Sergiu
2013/04/05 12:01:14
Thought a bit about it and I don't want to work a
| |
| 27 } | |
| 28 | |
| 29 html[dir=rtl] #lock-unlock-button { | |
| 30 float: left; | |
| 31 } | 27 } |
| 32 | 28 |
| 33 #search-button { | 29 #search-button { |
| 34 margin: 0; | 30 margin: 0; |
| 35 } | 31 } |
| 36 | 32 |
| 37 #spinner { | 33 #spinner { |
| 38 position: relative; | 34 position: relative; |
| 39 top: 3px; | 35 top: 3px; |
| 40 } | 36 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 | 95 |
| 100 #range-next:disabled img, | 96 #range-next:disabled img, |
| 101 #range-previous:disabled img { | 97 #range-previous:disabled img { |
| 102 opacity: 0.4; | 98 opacity: 0.4; |
| 103 } | 99 } |
| 104 | 100 |
| 105 #display-filter-controls { | 101 #display-filter-controls { |
| 106 float: right; | 102 float: right; |
| 107 } | 103 } |
| 108 | 104 |
| 109 #display-filter-controls label { | 105 #display-filter-controls > * { |
| 110 -webkit-margin-start: 6px; | 106 -webkit-margin-start: 8px; |
| 111 } | 107 } |
| 112 | 108 |
| 113 #display-filter-controls label:not(:last-child) { | 109 #display-filter-controls > *:not(:last-child) { |
| 114 -webkit-border-end: 1px solid rgb(151, 156, 160); | 110 -webkit-border-end: 1px solid rgb(151, 156, 160); |
| 115 -webkit-margin-start: 0; | 111 -webkit-margin-start: 0; |
| 116 padding: 0 6px 0 6px; | 112 padding: 0 6px 0 6px; |
| 117 } | 113 } |
| 118 | 114 |
| 119 #results-display { | 115 #results-display { |
| 120 margin: 16px 0 0 0; | 116 margin: 16px 0 0 0; |
| 121 } | 117 } |
| 122 | 118 |
| 123 .edit-button { | 119 .edit-button { |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 487 } | 483 } |
| 488 | 484 |
| 489 /* Clear the float to ensure that #results-pagination encloses its children. */ | 485 /* Clear the float to ensure that #results-pagination encloses its children. */ |
| 490 #results-pagination::after { | 486 #results-pagination::after { |
| 491 clear: both; | 487 clear: both; |
| 492 content: ''; | 488 content: ''; |
| 493 display: block; | 489 display: block; |
| 494 height: 0; | 490 height: 0; |
| 495 visibility: hidden; | 491 visibility: hidden; |
| 496 } | 492 } |
| OLD | NEW |