| OLD | NEW |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 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 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 font-family: Open Sans, Droid Sans Fallback, sans-serif; | 7 font-family: Open Sans, Droid Sans Fallback, sans-serif; |
| 8 font-size: 84%; | 8 font-size: 84%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 } | 876 } |
| 877 | 877 |
| 878 .gallery .edit-modal button.selected, | 878 .gallery .edit-modal button.selected, |
| 879 .gallery .edit-modal button:active { | 879 .gallery .edit-modal button:active { |
| 880 background: #f0f0f0; | 880 background: #f0f0f0; |
| 881 color: black; | 881 color: black; |
| 882 } | 882 } |
| 883 | 883 |
| 884 .gallery .edit-modal .range { | 884 .gallery .edit-modal .range { |
| 885 -webkit-appearance: none !important; | 885 -webkit-appearance: none !important; |
| 886 background: transparent; |
| 887 height: 29px; |
| 888 margin-right: 10px; |
| 889 position: relative; |
| 890 } |
| 891 |
| 892 .gallery .edit-modal .range::before { |
| 893 background: #fff; |
| 894 content: ''; |
| 895 display: block; |
| 886 height: 3px; | 896 height: 3px; |
| 887 margin-right: 10px; | 897 left: 3px; |
| 888 margin-top: 1px; | 898 position: absolute; |
| 899 right: 3px; |
| 900 top: 13px; |
| 889 } | 901 } |
| 890 | 902 |
| 891 .gallery .edit-modal .range::-webkit-slider-thumb { | 903 .gallery .edit-modal .range::-webkit-slider-thumb { |
| 892 -webkit-appearance: none; | 904 -webkit-appearance: none; |
| 893 background-image: -webkit-image-set( | 905 background-image: -webkit-image-set( |
| 894 url(../images/100/slider_thumb.png) 1x, | 906 url(../images/100/slider_thumb.png) 1x, |
| 895 url(../images/200/slider_thumb.png) 2x); | 907 url(../images/200/slider_thumb.png) 2x); |
| 896 height: 29px; | 908 height: 29px; |
| 897 width: 16px; | 909 width: 16px; |
| 898 } | 910 } |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) | 1330 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) |
| 1319 center; | 1331 center; |
| 1320 } | 1332 } |
| 1321 | 1333 |
| 1322 .gallery > .header > .close-button { | 1334 .gallery > .header > .close-button { |
| 1323 background: -webkit-image-set( | 1335 background: -webkit-image-set( |
| 1324 url(chrome://resources/images/apps/topbar_button_close.png) 1x, | 1336 url(chrome://resources/images/apps/topbar_button_close.png) 1x, |
| 1325 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) | 1337 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) |
| 1326 center; | 1338 center; |
| 1327 } | 1339 } |
| OLD | NEW |