OLD | NEW |
1 <!-- | 1 <!-- |
2 -- Copyright 2014 The Chromium Authors. All rights reserved. | 2 -- Copyright 2014 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 <html i18n-values="dir:textdirection"> | 6 <html i18n-values="dir:textdirection"> |
7 <head> | 7 <head> |
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
9 <link rel="stylesheet" href="../file_manager/foreground/css/list.css"> | 9 <link rel="stylesheet" href="../file_manager/foreground/css/list.css"> |
10 <link rel="stylesheet" href="../file_manager/foreground/css/common.css"> | 10 <link rel="stylesheet" href="../file_manager/foreground/css/common.css"> |
(...skipping 29 matching lines...) Expand all Loading... |
40 } | 40 } |
41 paper-input-container { | 41 paper-input-container { |
42 --paper-input-container-color: rgba(255, 255, 255, 0.2); | 42 --paper-input-container-color: rgba(255, 255, 255, 0.2); |
43 --paper-input-container-focus-color: white; | 43 --paper-input-container-focus-color: white; |
44 --paper-input-container-underline-focus: { | 44 --paper-input-container-underline-focus: { |
45 height: 1px; | 45 height: 1px; |
46 } | 46 } |
47 } | 47 } |
48 paper-slider { | 48 paper-slider { |
49 --paper-slider-active-color: white; | 49 --paper-slider-active-color: white; |
| 50 --paper-slider-container-color: rgba(255, 255, 255, 0.2); |
50 --paper-slider-knob-color: white; | 51 --paper-slider-knob-color: white; |
51 --paper-slider-secondary-color: transparent; | 52 --paper-slider-secondary-color: transparent; |
52 } | 53 } |
53 paper-progress { | 54 paper-progress { |
54 --paper-progress-container-color: rgba(0, 0, 0, 0.3); | 55 --paper-progress-container-color: rgba(0, 0, 0, 0.3); |
55 --paper-progress-active-color: #1AC222; | 56 --paper-progress-active-color: #1AC222; |
56 } | 57 } |
| 58 paper-button { |
| 59 --paper-button-ink-color: black; |
| 60 } |
| 61 files-toggle-ripple { |
| 62 --files-toggle-ripple-activated: { |
| 63 opacity: 0.4; |
| 64 }; |
| 65 } |
57 </style> | 66 </style> |
58 </head> | 67 </head> |
59 <body> | 68 <body> |
60 <div class="gallery"> | 69 <div class="gallery"> |
61 <div id="content" class="content"> | 70 <div id="content" class="content"> |
62 <div class="thumbnail-view"></div> | 71 <div class="thumbnail-view"></div> |
63 </div> | 72 </div> |
64 <div id="top-toolbar" class="toolbar top tool dimmable"> | 73 <div id="top-toolbar" class="toolbar top tool dimmable"> |
65 <div class="filename-spacer"> | 74 <div class="filename-spacer"> |
66 <!-- Change this to use paper-input after ChromeVox supports shadow DOM.
--> | 75 <!-- Change this to use paper-input after ChromeVox supports shadow DOM.
--> |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 <div class="prompt-wrapper" pos="center"> | 152 <div class="prompt-wrapper" pos="center"> |
144 <div class="error-banner"></div> | 153 <div class="error-banner"></div> |
145 </div> | 154 </div> |
146 <div class="toast-stage"> | 155 <div class="toast-stage"> |
147 <files-toast></files-toast> | 156 <files-toast></files-toast> |
148 </div> | 157 </div> |
149 <files-tooltip></files-tooltip> | 158 <files-tooltip></files-tooltip> |
150 </div> | 159 </div> |
151 </body> | 160 </body> |
152 </html> | 161 </html> |
OLD | NEW |