OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 body { | 7 body { |
8 margin: 0; | 8 margin: 0; |
9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
10 font-family: Open Sans,Droid Sans Fallback,sans-serif; | 10 font-family: Open Sans,Droid Sans Fallback,sans-serif; |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 of the crop frame */ | 219 of the crop frame */ |
220 .gallery[tools][editing] *[dimmed], | 220 .gallery[tools][editing] *[dimmed], |
221 .gallery[tools][editing] *[dimmed] * { | 221 .gallery[tools][editing] *[dimmed] * { |
222 pointer-events: none; | 222 pointer-events: none; |
223 } | 223 } |
224 | 224 |
225 .gallery[tools][editing] *[dimmed] { | 225 .gallery[tools][editing] *[dimmed] { |
226 opacity: 0.2; | 226 opacity: 0.2; |
227 } | 227 } |
228 | 228 |
| 229 /* Filename */ |
| 230 |
| 231 .gallery .filename-spacer { |
| 232 padding: 0 10px; |
| 233 display: -webkit-box; |
| 234 -webkit-box-orient: horizontal; |
| 235 -webkit-box-align: center; |
| 236 } |
| 237 |
| 238 .gallery .filename-spacer > input { |
| 239 background-color: transparent; |
| 240 color: white; |
| 241 width: 40em; |
| 242 border: none; |
| 243 outline: none; |
| 244 } |
| 245 |
| 246 .gallery .filename-spacer > input:focus { |
| 247 background-color: rgba(48, 48, 48, 0.75); |
| 248 border-right: 1px solid white; |
| 249 border-bottom: 1px solid white; |
| 250 } |
| 251 |
229 /* Thumbnails */ | 252 /* Thumbnails */ |
230 | 253 |
231 .gallery .ribbon-spacer { | 254 .gallery .ribbon-spacer { |
232 position: relative; | 255 position: relative; |
233 display: -webkit-box; | 256 display: -webkit-box; |
234 -webkit-box-flex: 1; | 257 -webkit-box-flex: 1; |
235 -webkit-box-orient: horizontal; | 258 -webkit-box-orient: horizontal; |
236 } | 259 } |
237 | 260 |
238 .gallery .toolbar .ribbon { | 261 .gallery .toolbar .ribbon { |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 } | 727 } |
705 | 728 |
706 .gallery .share-menu > div:hover { | 729 .gallery .share-menu > div:hover { |
707 background-color: rgba(240,240,240,1); | 730 background-color: rgba(240,240,240,1); |
708 } | 731 } |
709 | 732 |
710 .gallery .share-menu > div > img { | 733 .gallery .share-menu > div > img { |
711 margin-right: 5px; | 734 margin-right: 5px; |
712 display: block; | 735 display: block; |
713 } | 736 } |
OLD | NEW |