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

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

Issue 2155883002: MD Downloads: change :focus effect to underline so it doesn't look like :hover (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months 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
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 2571 matching lines...) Expand 10 before | Expand all | Expand 10 after
2582 }; 2582 };
2583 } 2583 }
2584 2584
2585 #more { 2585 #more {
2586 --paper-menu-button: { 2586 --paper-menu-button: {
2587 padding: 0; 2587 padding: 0;
2588 }; 2588 };
2589 -webkit-margin-start: 16px; 2589 -webkit-margin-start: 16px;
2590 } 2590 }
2591 2591
2592 :host {
2593 /* Applies to <paper-item>, hell if I know why it has to be here. */
2594 --dark-divider-opacity: 0;
2595 }
2596
2592 paper-item { 2597 paper-item {
2598 --paper-item-focused: {
2599 background: none;
2600 text-decoration: underline;
2601 };
2593 -webkit-user-select: none; 2602 -webkit-user-select: none;
2594 cursor: pointer; 2603 cursor: pointer;
2595 font: inherit; 2604 font: inherit;
2596 min-height: 40px; 2605 min-height: 40px;
2597 } 2606 }
2598 2607
2599 paper-item:hover { 2608 paper-item:hover {
2600 background: #eaeaea; /* TODO(dbeam): real color? */ 2609 background: #eaeaea; /* TODO(dbeam): real color? */
2601 } 2610 }
2602 2611
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
2777 <if expr="is_macosx"> 2786 <if expr="is_macosx">
2778 <command id="undo-command" shortcut="Meta|z"></command> 2787 <command id="undo-command" shortcut="Meta|z"></command>
2779 <command id="find-command" shortcut="Meta|f"></command> 2788 <command id="find-command" shortcut="Meta|f"></command>
2780 </if> 2789 </if>
2781 <if expr="not is_macosx"> 2790 <if expr="not is_macosx">
2782 <command id="undo-command" shortcut="Ctrl|z"></command> 2791 <command id="undo-command" shortcut="Ctrl|z"></command>
2783 <command id="find-command" shortcut="Ctrl|f"></command> 2792 <command id="find-command" shortcut="Ctrl|f"></command>
2784 </if> 2793 </if>
2785 <link rel="import" href="chrome://resources/html/polymer.html"> 2794 <link rel="import" href="chrome://resources/html/polymer.html">
2786 <script src="crisper.js"></script></body></html> 2795 <script src="crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698