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

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

Issue 2164223002: MD Setting: drop changes to background-color on :hover (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stevenjb@ review 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
« no previous file with comments | « chrome/browser/resources/settings/settings_root_css.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/settings_root_css.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698