OLD | NEW |
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_root_css.html"> | 2 <link rel="import" href="/settings_root_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 h2 { | 8 h2 { |
9 align-items: center; | 9 align-items: center; |
10 display: flex; | 10 display: flex; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 iron-dropdown .dropdown-content { | 72 iron-dropdown .dropdown-content { |
73 background-color: white; | 73 background-color: white; |
74 box-shadow: 0 2px 6px var(--paper-grey-500); | 74 box-shadow: 0 2px 6px var(--paper-grey-500); |
75 } | 75 } |
76 | 76 |
77 iron-dropdown .dropdown-content .dropdown-item, | 77 iron-dropdown .dropdown-content .dropdown-item, |
78 iron-dropdown .dropdown-content paper-item { | 78 iron-dropdown .dropdown-content paper-item { |
79 @apply(--settings-actionable); | 79 @apply(--settings-actionable); |
80 } | 80 } |
81 | 81 |
82 iron-dropdown .dropdown-content .dropdown-item:hover, | |
83 iron-dropdown .dropdown-content paper-item:hover { | |
84 background-color: var(--settings-hover-color); | |
85 } | |
86 | |
87 span ~ a { | 82 span ~ a { |
88 -webkit-margin-start: 4px; | 83 -webkit-margin-start: 4px; |
89 } | 84 } |
90 | 85 |
91 [is='action-link'], | 86 [is='action-link'], |
92 [is='action-link']:active, | 87 [is='action-link']:active, |
93 [is='action-link']:hover, | 88 [is='action-link']:hover, |
94 [is='action-link']:visited, | 89 [is='action-link']:visited, |
95 paper-button.primary-button, | 90 paper-button.primary-button, |
96 paper-button.tertiary-button { | 91 paper-button.tertiary-button { |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 | 345 |
351 .favicon-image { | 346 .favicon-image { |
352 background-repeat: no-repeat; | 347 background-repeat: no-repeat; |
353 background-size: contain; | 348 background-size: contain; |
354 height: 16px; | 349 height: 16px; |
355 width: 16px; | 350 width: 16px; |
356 } | 351 } |
357 </style> | 352 </style> |
358 </template> | 353 </template> |
359 </dom-module> | 354 </dom-module> |
OLD | NEW |