| 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 { | 5 body { |
| 6 position: relative; | 6 position: relative; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #main-content { | 9 #main-content { |
| 10 bottom: 0; | 10 bottom: 0; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 } | 66 } |
| 67 | 67 |
| 68 .stretch { | 68 .stretch { |
| 69 -webkit-box-flex: 1; | 69 -webkit-box-flex: 1; |
| 70 } | 70 } |
| 71 | 71 |
| 72 .frozen { | 72 .frozen { |
| 73 position: fixed; | 73 position: fixed; |
| 74 } | 74 } |
| 75 | 75 |
| 76 #overlay-container-1 { | |
| 77 z-index: 11; | |
| 78 } | |
| 79 #overlay-container-2 { | |
| 80 z-index: 12; | |
| 81 } | |
| 82 #overlay-container-3 { | |
| 83 z-index: 13; | |
| 84 } | |
| 85 | |
| 86 .raw-button, | 76 .raw-button, |
| 87 .raw-button:hover, | 77 .raw-button:hover, |
| 88 .raw-button:active { | 78 .raw-button:active { |
| 89 -webkit-box-shadow: none; | 79 -webkit-box-shadow: none; |
| 90 background-color: transparent; | 80 background-color: transparent; |
| 91 background-repeat: no-repeat; | 81 background-repeat: no-repeat; |
| 92 border: none; | 82 border: none; |
| 93 min-width: 0; | 83 min-width: 0; |
| 94 padding: 1px 6px; | 84 padding: 1px 6px; |
| 95 } | 85 } |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 535 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 546 } | 536 } |
| 547 | 537 |
| 548 html[dir='rtl'] .controlled-setting-bubble-content { | 538 html[dir='rtl'] .controlled-setting-bubble-content { |
| 549 background-position: right top; | 539 background-position: right top; |
| 550 } | 540 } |
| 551 | 541 |
| 552 .controlled-setting-bubble-action { | 542 .controlled-setting-bubble-action { |
| 553 padding: 0 !important; | 543 padding: 0 !important; |
| 554 } | 544 } |
| OLD | NEW |