| 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 { | |
| 26 float: right; | |
| 27 } | |
| 28 | |
| 29 html[dir=rtl] #lock-unlock-button { | |
| 30 float: left; | |
| 31 } | |
| 32 | |
| 33 #search-button { | 25 #search-button { |
| 34 margin: 0; | 26 margin: 0; |
| 35 } | 27 } |
| 36 | 28 |
| 37 #spinner { | 29 #spinner { |
| 38 position: relative; | 30 position: relative; |
| 39 top: 3px; | 31 top: 3px; |
| 40 } | 32 } |
| 41 | 33 |
| 42 #notification-bar { | 34 #notification-bar { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 91 |
| 100 #range-next:disabled img, | 92 #range-next:disabled img, |
| 101 #range-previous:disabled img { | 93 #range-previous:disabled img { |
| 102 opacity: 0.4; | 94 opacity: 0.4; |
| 103 } | 95 } |
| 104 | 96 |
| 105 #display-filter-controls { | 97 #display-filter-controls { |
| 106 float: right; | 98 float: right; |
| 107 } | 99 } |
| 108 | 100 |
| 109 #display-filter-controls label { | 101 #display-filter-controls > * { |
| 110 -webkit-margin-start: 6px; | 102 -webkit-margin-start: 8px; |
| 111 } | 103 } |
| 112 | 104 |
| 113 #display-filter-controls label:not(:last-child) { | 105 #display-filter-controls > *:not(:last-child) { |
| 114 -webkit-border-end: 1px solid rgb(151, 156, 160); | 106 -webkit-border-end: 1px solid rgb(151, 156, 160); |
| 115 -webkit-margin-start: 0; | 107 -webkit-margin-start: 0; |
| 116 padding: 0 6px 0 6px; | 108 padding: 0 6px 0 6px; |
| 117 } | 109 } |
| 118 | 110 |
| 119 #results-display { | 111 #results-display { |
| 120 margin: 16px 0 0 0; | 112 margin: 16px 0 0 0; |
| 121 } | 113 } |
| 122 | 114 |
| 123 .edit-button { | 115 .edit-button { |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 } | 478 } |
| 487 | 479 |
| 488 /* Clear the float to ensure that #results-pagination encloses its children. */ | 480 /* Clear the float to ensure that #results-pagination encloses its children. */ |
| 489 #results-pagination::after { | 481 #results-pagination::after { |
| 490 clear: both; | 482 clear: both; |
| 491 content: ''; | 483 content: ''; |
| 492 display: block; | 484 display: block; |
| 493 height: 0; | 485 height: 0; |
| 494 visibility: hidden; | 486 visibility: hidden; |
| 495 } | 487 } |
| OLD | NEW |