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

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

Issue 2261803002: [MD settings] list-button class shows actionable style mouse (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | 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_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 h2 { 8 h2 {
9 align-items: center; 9 align-items: center;
10 display: flex; 10 display: flex;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 .list-item > label span[disabled] { 227 .list-item > label span[disabled] {
228 opacity: .65; /* TODO(michaelpg): check this value with bettes. */ 228 opacity: .65; /* TODO(michaelpg): check this value with bettes. */
229 } 229 }
230 230
231 .list-item > paper-icon-item { 231 .list-item > paper-icon-item {
232 padding: 0; 232 padding: 0;
233 } 233 }
234 234
235 /* This button has no ink ripple. */ 235 /* This button has no ink ripple. */
236 .list-item.list-button { 236 .list-item.list-button {
237 @apply(--settings-actionable);
237 align-items: center; 238 align-items: center;
238 color: var(--google-blue-500); 239 color: var(--google-blue-500);
239 font-weight: 500; 240 font-weight: 500;
240 } 241 }
241 242
242 /* A settings-box is a horizontal row of text or controls within a 243 /* A settings-box is a horizontal row of text or controls within a
243 * setting section (page or subpage). */ 244 * setting section (page or subpage). */
244 .settings-box { 245 .settings-box {
245 align-items: center; 246 align-items: center;
246 border-top: var(--settings-separator-line); 247 border-top: var(--settings-separator-line);
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 content: ''; 363 content: '';
363 height: 10px; 364 height: 10px;
364 position: absolute; 365 position: absolute;
365 right: -5px; 366 right: -5px;
366 top: 10px; 367 top: 10px;
367 width: 10px; 368 width: 10px;
368 } 369 }
369 </style> 370 </style>
370 </template> 371 </template>
371 </dom-module> 372 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698