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

Side by Side Diff: ui/webui/resources/cr_elements/shared_vars_css.html

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: feedback Created 3 years, 6 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
3 3
4 <!-- Common css variables for Material Design WebUI. --> 4 <!-- Common css variables for Material Design WebUI. -->
5 <style is="custom-style"> 5 <style is="custom-style">
6 :root { 6 :root {
7 --cr-actionable: { 7 --cr-actionable: {
8 cursor: pointer; 8 cursor: pointer;
9 }; 9 };
10 10
(...skipping 11 matching lines...) Expand all
22 --cr-icon-height-width: { 22 --cr-icon-height-width: {
23 height: var(--cr-icon-size); 23 height: var(--cr-icon-size);
24 width: var(--cr-icon-size); 24 width: var(--cr-icon-size);
25 } 25 }
26 26
27 --cr-icon-ripple-margin: calc(var(--cr-icon-ripple-padding) * -1); 27 --cr-icon-ripple-margin: calc(var(--cr-icon-ripple-padding) * -1);
28 28
29 --cr-paper-icon-button-margin: { 29 --cr-paper-icon-button-margin: {
30 /* Shift button so ripple overlaps the end of the row. */ 30 /* Shift button so ripple overlaps the end of the row. */
31 -webkit-margin-end: var(--cr-icon-ripple-margin); 31 -webkit-margin-end: var(--cr-icon-ripple-margin);
32 -webkit-margin-start: var(--cr-icon-ripple-margin); 32 -webkit-margin-start: 16px;
33 } 33 }
34 34
35 --cr-selectable-focus: { 35 --cr-selectable-focus: {
36 background-color: var(--cr-focused-item-color); 36 background-color: var(--cr-focused-item-color);
37 outline: none; 37 outline: none;
38 } 38 }
39 --cr-separator-height: 1px; 39 --cr-separator-height: 1px;
40 --cr-separator-line: var(--cr-separator-height) solid rgba(0, 0, 0, 0.06); 40 --cr-separator-line: var(--cr-separator-height) solid rgba(0, 0, 0, 0.06);
41 --paper-checkbox-ink-size: 40px; 41 --paper-checkbox-ink-size: 40px;
42 } 42 }
43 </style> 43 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698