Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(438)

Side by Side Diff: chrome/browser/resources/md_downloads/vulcanized.html

Issue 2549133003: [MD History] Color tweaks. (Closed)
Patch Set: fixnit Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- - 1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- -
2 @license 2 @license
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 9 --><!--
10 @license 10 @license
(...skipping 16 matching lines...) Expand all
27 <title>$i18n{title}</title> 27 <title>$i18n{title}</title>
28 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 28 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
29 <style> 29 <style>
30 /* Copyright 2016 The Chromium Authors. All rights reserved. 30 /* Copyright 2016 The Chromium Authors. All rights reserved.
31 * Use of this source code is governed by a BSD-style license that can be 31 * Use of this source code is governed by a BSD-style license that can be
32 * found in the LICENSE file. */ 32 * found in the LICENSE file. */
33 33
34 :root { 34 :root {
35 /* This is a custom, Chrome-specific color that does not have a --paper or 35 /* This is a custom, Chrome-specific color that does not have a --paper or
36 * --google equivalent. */ 36 * --google equivalent. */
37 --md-background-color: rgb(241, 241, 241); 37 --md-background-color: #f1f1f1;
38 --md-loading-message-color: #6e6e6e;
38 /* This is --google-blue-700, rewritten as a native custom property for speed. 39 /* This is --google-blue-700, rewritten as a native custom property for speed.
39 */ 40 */
40 --md-toolbar-color: rgb(51, 103, 214); 41 --md-toolbar-color: rgb(51, 103, 214);
41 } 42 }
42 43
43 </style> 44 </style>
44 <style> 45 <style>
45 html { 46 html {
46 background: var(--md-background-color); 47 background: var(--md-background-color);
47 } 48 }
(...skipping 2973 matching lines...) Expand 10 before | Expand all | Expand 10 after
3021 3022
3022 :host(:not([narrow])) { 3023 :host(:not([narrow])) {
3023 -webkit-padding-end: 0; 3024 -webkit-padding-end: 0;
3024 background: rgba(0, 0, 0, 0.22); 3025 background: rgba(0, 0, 0, 0.22);
3025 border-radius: 2px; 3026 border-radius: 2px;
3026 cursor: text; 3027 cursor: text;
3027 width: var(--cr-toolbar-field-width); 3028 width: var(--cr-toolbar-field-width);
3028 } 3029 }
3029 3030
3030 :host(:not([narrow]):not([showing-search])) #icon, :host(:not([narrow])) #prompt { 3031 :host(:not([narrow]):not([showing-search])) #icon, :host(:not([narrow])) #prompt {
3031 opacity: 0.6; 3032 opacity: 0.7;
3032 } 3033 }
3033 3034
3034 :host([narrow]:not([showing-search])) #searchTerm { 3035 :host([narrow]:not([showing-search])) #searchTerm {
3035 display: none; 3036 display: none;
3036 } 3037 }
3037 3038
3038 :host([showing-search][spinner-active]) #icon { 3039 :host([showing-search][spinner-active]) #icon {
3039 opacity: 0; 3040 opacity: 0;
3040 } 3041 }
3041 3042
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
3289 </template> 3290 </template>
3290 </dom-module> 3291 </dom-module>
3291 <style> 3292 <style>
3292 /* Copyright 2016 The Chromium Authors. All rights reserved. 3293 /* Copyright 2016 The Chromium Authors. All rights reserved.
3293 * Use of this source code is governed by a BSD-style license that can be 3294 * Use of this source code is governed by a BSD-style license that can be
3294 * found in the LICENSE file. */ 3295 * found in the LICENSE file. */
3295 3296
3296 :root { 3297 :root {
3297 /* This is a custom, Chrome-specific color that does not have a --paper or 3298 /* This is a custom, Chrome-specific color that does not have a --paper or
3298 * --google equivalent. */ 3299 * --google equivalent. */
3299 --md-background-color: rgb(241, 241, 241); 3300 --md-background-color: #f1f1f1;
3301 --md-loading-message-color: #6e6e6e;
3300 /* This is --google-blue-700, rewritten as a native custom property for speed. 3302 /* This is --google-blue-700, rewritten as a native custom property for speed.
3301 */ 3303 */
3302 --md-toolbar-color: rgb(51, 103, 214); 3304 --md-toolbar-color: rgb(51, 103, 214);
3303 } 3305 }
3304 3306
3305 </style> 3307 </style>
3306 3308
3307 <dom-module id="downloads-manager" assetpath="chrome://downloads/" css-build="sh adow"> 3309 <dom-module id="downloads-manager" assetpath="chrome://downloads/" css-build="sh adow">
3308 <template> 3310 <template>
3309 <style scope="downloads-manager">:host { 3311 <style scope="downloads-manager">:host {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
3403 <command id="undo-command" shortcut="Meta|z"></command> 3405 <command id="undo-command" shortcut="Meta|z"></command>
3404 <command id="find-command" shortcut="Meta|f"></command> 3406 <command id="find-command" shortcut="Meta|f"></command>
3405 </if> 3407 </if>
3406 <if expr="not is_macosx"> 3408 <if expr="not is_macosx">
3407 <command id="clear-all-command" shortcut="Alt|c"></command> 3409 <command id="clear-all-command" shortcut="Alt|c"></command>
3408 <command id="undo-command" shortcut="Ctrl|z"></command> 3410 <command id="undo-command" shortcut="Ctrl|z"></command>
3409 <command id="find-command" shortcut="Ctrl|f"></command> 3411 <command id="find-command" shortcut="Ctrl|f"></command>
3410 </if> 3412 </if>
3411 <link rel="import" href="chrome://resources/html/polymer.html"> 3413 <link rel="import" href="chrome://resources/html/polymer.html">
3412 <script src="crisper.js"></script></body></html> 3414 <script src="crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698