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 /* The shield that overlays the background. */ | 5 /* The shield that overlays the background. */ |
6 .overlay { | 6 .overlay { |
7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
9 -webkit-box-pack: center; | 9 -webkit-box-pack: center; |
10 -webkit-transition: 200ms opacity; | 10 -webkit-transition: 200ms opacity; |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 * necessary. See http://crbug.com/119029. */ | 102 * necessary. See http://crbug.com/119029. */ |
103 margin: 0; | 103 margin: 0; |
104 padding: 14px 17px 14px; | 104 padding: 14px 17px 14px; |
105 text-shadow: white 0 1px 2px; | 105 text-shadow: white 0 1px 2px; |
106 } | 106 } |
107 | 107 |
108 .overlay .page .content-area { | 108 .overlay .page .content-area { |
109 -webkit-box-flex: 1; | 109 -webkit-box-flex: 1; |
110 overflow: auto; | 110 overflow: auto; |
111 padding: 6px 17px 6px; | 111 padding: 6px 17px 6px; |
| 112 position: relative; |
112 } | 113 } |
113 | 114 |
114 .overlay .page .action-area { | 115 .overlay .page .action-area { |
115 -webkit-box-align: center; | 116 -webkit-box-align: center; |
116 -webkit-box-orient: horizontal; | 117 -webkit-box-orient: horizontal; |
117 -webkit-box-pack: end; | 118 -webkit-box-pack: end; |
118 display: -webkit-box; | 119 display: -webkit-box; |
119 padding: 14px 17px; | 120 padding: 14px 17px; |
120 } | 121 } |
121 | 122 |
(...skipping 27 matching lines...) Expand all Loading... |
149 .overlay .page .content-area::-webkit-scrollbar-thumb { | 150 .overlay .page .content-area::-webkit-scrollbar-thumb { |
150 background-color: rgba(0, 0, 0, 0.2); | 151 background-color: rgba(0, 0, 0, 0.2); |
151 border: 2px solid white; | 152 border: 2px solid white; |
152 border-radius: 8px; | 153 border-radius: 8px; |
153 } | 154 } |
154 | 155 |
155 .overlay .page .content-area::-webkit-scrollbar-thumb:hover { | 156 .overlay .page .content-area::-webkit-scrollbar-thumb:hover { |
156 background-color: rgba(0, 0, 0, 0.5); | 157 background-color: rgba(0, 0, 0, 0.5); |
157 } | 158 } |
158 </if> | 159 </if> |
OLD | NEW |