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

Side by Side Diff: chrome/browser/resources/md_history/shared_style.html

Issue 2346383004: MD History: Update history-toolbar to use icon-button-light (Closed)
Patch Set: Review comments 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
OLDNEW
1 <link rel="import" href="chrome://history/shared_vars.html"> 1 <link rel="import" href="chrome://history/shared_vars.html">
2 2
3 <dom-module id="shared-style"> 3 <dom-module id="shared-style">
4 <template> 4 <template>
5 <style> 5 <style>
6 [hidden] { 6 [hidden] {
7 display: none !important; 7 display: none !important;
8 } 8 }
9 9
10 .card-title { 10 .card-title {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 button.icon-button { 60 button.icon-button {
61 background: none; 61 background: none;
62 border: none; 62 border: none;
63 height: 36px; 63 height: 36px;
64 outline: none; 64 outline: none;
65 width: 36px; 65 width: 36px;
66 } 66 }
67 67
68 button.icon-button iron-icon { 68 button.icon-button iron-icon {
69 color: var(--secondary-text-color);
70 height: 20px; 69 height: 20px;
71 width: 20px; 70 width: 20px;
72 } 71 }
73 72
74 button.more-vert-button { 73 button.more-vert-button {
75 height: 36px; 74 height: 36px;
76 padding: 6px; 75 padding: 6px;
77 width: 36px; 76 width: 36px;
78 } 77 }
79 78
80 button.more-vert-button div { 79 button.more-vert-button div {
81 border: 2px solid var(--secondary-text-color); 80 border: 2px solid var(--secondary-text-color);
82 border-radius: 2px; 81 border-radius: 2px;
83 margin: 1px 10px; 82 margin: 1px 10px;
84 pointer-events: none; 83 pointer-events: none;
85 transform: scale(0.8); 84 transform: scale(0.8);
86 } 85 }
87 </style> 86 </style>
88 </template> 87 </template>
89 </dom-module> 88 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698