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

Side by Side Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 2825493003: MD Settings: change outlinks to actually use <a> (Closed)
Patch Set: replace more, add target blank Created 3 years, 8 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/cr_elements/shared_style_css.html"> 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
2 <link rel="import" href="settings_vars_css.html"> 2 <link rel="import" href="settings_vars_css.html">
3 3
4 <!-- Common styles for Material Design settings. --> 4 <!-- Common styles for Material Design settings. -->
5 <dom-module id="settings-shared"> 5 <dom-module id="settings-shared">
6 <template> 6 <template>
7 <style include="cr-shared-style"> 7 <style include="cr-shared-style">
8 /* Included here so we don't have to include "iron-positioning" in every 8 /* Included here so we don't have to include "iron-positioning" in every
9 * stylesheet. See crbug.com/498405. */ 9 * stylesheet. See crbug.com/498405. */
10 [hidden] { 10 [hidden] {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 .tertiary-button { 66 .tertiary-button {
67 --paper-button-flat-keyboard-focus: { 67 --paper-button-flat-keyboard-focus: {
68 background: rgba(51, 103, 214, .12); /* --google-blue-700 */ 68 background: rgba(51, 103, 214, .12); /* --google-blue-700 */
69 }; 69 };
70 } 70 }
71 71
72 a[href] { 72 a[href] {
73 text-decoration: none; 73 text-decoration: none;
74 } 74 }
75 75
76 a[href][tabindex='-1'] {
77 color: var(--paper-grey-900);
78 outline: none;
79 }
80
76 /* There are three main button styles, .primary-button, .secondary-button, 81 /* There are three main button styles, .primary-button, .secondary-button,
77 * and .tertiary-button. The primary is the action button (e.g. "edit", 82 * and .tertiary-button. The primary is the action button (e.g. "edit",
78 * "delete") while the secondary is often a "Cancel" button. A tertiary 83 * "delete") while the secondary is often a "Cancel" button. A tertiary
79 * button may be used to get more information or similar, that we expect 84 * button may be used to get more information or similar, that we expect
80 * most users will not need. */ 85 * most users will not need. */
81 .primary-button { 86 .primary-button {
82 --paper-button: { 87 --paper-button: {
83 font-weight: 500; 88 font-weight: 500;
84 text-align: start; 89 text-align: start;
85 }; 90 };
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 transform: rotate(-135deg); 397 transform: rotate(-135deg);
393 } 398 }
394 399
395 .column-header { 400 .column-header {
396 color: var(--paper-grey-600); 401 color: var(--paper-grey-600);
397 font-weight: 500; 402 font-weight: 500;
398 } 403 }
399 </style> 404 </style>
400 </template> 405 </template>
401 </dom-module> 406 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698