| 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: 155px; | 6 -webkit-margin-start: 155px; |
| 7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
| 8 } | 8 } |
| 9 | 9 |
| 10 html[dir='rtl'] body.uber-frame { | 10 html[dir='rtl'] body.uber-frame { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 body.uber-frame header button { | 69 body.uber-frame header button { |
| 70 margin: 0; | 70 margin: 0; |
| 71 } | 71 } |
| 72 | 72 |
| 73 body.uber-frame header > h1 { | 73 body.uber-frame header > h1 { |
| 74 margin: 0; | 74 margin: 0; |
| 75 padding: 21px 0 13px; | 75 padding: 21px 0 13px; |
| 76 } | 76 } |
| 77 | 77 |
| 78 /* Create a border under the h1 (but before anything that gets appended | 78 /* Create a border under the h1 (but before anything that gets appended |
| 79 * to the end of the header, such as the managed prefs banner). */ | 79 * to the end of the header). */ |
| 80 body.uber-frame header > h1::after { | 80 body.uber-frame header > h1::after { |
| 81 -webkit-margin-end: 20px; | 81 -webkit-margin-end: 20px; |
| 82 background-color: #eee; | 82 background-color: #eee; |
| 83 content: ' '; | 83 content: ' '; |
| 84 display: block; | 84 display: block; |
| 85 height: 1px; | 85 height: 1px; |
| 86 position: relative; | 86 position: relative; |
| 87 top: 13px; | 87 top: 13px; |
| 88 } | 88 } |
| 89 | 89 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 body.uber-frame section > h3 { | 112 body.uber-frame section > h3 { |
| 113 -webkit-margin-start: -18px; | 113 -webkit-margin-start: -18px; |
| 114 } | 114 } |
| 115 | 115 |
| 116 body.uber-frame section > div:only-of-type { | 116 body.uber-frame section > div:only-of-type { |
| 117 -webkit-box-flex: 1; | 117 -webkit-box-flex: 1; |
| 118 } | 118 } |
| 119 | 119 |
| 120 /* Styles for a hideable notification banner at the top of a page. | 120 /* Styles for a hideable notification banner at the top of a page. */ |
| 121 * See the Options page .managed-prefs-banner for a usage example. */ | |
| 122 .page.showing-banner { | 121 .page.showing-banner { |
| 123 margin-top: 45px; | 122 margin-top: 45px; |
| 124 } | 123 } |
| 125 | 124 |
| 126 .page-banner { | 125 .page-banner { |
| 127 background-color: white; | 126 background-color: white; |
| 128 width: 100%; | 127 width: 100%; |
| 129 z-index: 2; | 128 z-index: 2; |
| 130 } | 129 } |
| 131 | 130 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 154 background-repeat: no-repeat; | 153 background-repeat: no-repeat; |
| 155 display: block; | 154 display: block; |
| 156 line-height: 24px; | 155 line-height: 24px; |
| 157 padding-left: 26px; | 156 padding-left: 26px; |
| 158 } | 157 } |
| 159 | 158 |
| 160 .page-banner.clickable:active .page-banner-text { | 159 .page-banner.clickable:active .page-banner-text { |
| 161 background: -webkit-linear-gradient(rgb(250, 230, 145), | 160 background: -webkit-linear-gradient(rgb(250, 230, 145), |
| 162 rgb(255, 242, 183)); | 161 rgb(255, 242, 183)); |
| 163 } | 162 } |
| OLD | NEW |