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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-item/paper-item-shared-styles.html

Issue 2119733002: Revert "MD Settings: Improve rendering performance of fonts page." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/polymer/v1_0/chromium.patch ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/polymer/v1_0/components-chromium/paper-item/paper-item-shared-styles.html
diff --git a/third_party/polymer/v1_0/components-chromium/paper-item/paper-item-shared-styles.html b/third_party/polymer/v1_0/components-chromium/paper-item/paper-item-shared-styles.html
index 9df8eda9e830dc24f4c2625c6b27f549428e966d..868d415350abcc28de496d5f68c80c7b87d92974 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-item/paper-item-shared-styles.html
+++ b/third_party/polymer/v1_0/components-chromium/paper-item/paper-item-shared-styles.html
@@ -16,7 +16,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<dom-module id="paper-item-shared-styles">
<template>
<style>
- :host(paper-item), :host(paper-icon-item), .paper-item {
+ :host, .paper-item {
display: block;
position: relative;
min-height: var(--paper-item-min-height, 48px);
@@ -32,30 +32,30 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
text-align: left;
}
- :host(paper-item[hidden]), :host(paper-icon-item[hidden]), .paper-item[hidden] {
+ :host([hidden]), .paper-item[hidden] {
display: none !important;
}
- :host(paper-item.iron-selected), :host(paper-icon-item.iron-selected), .paper-item.iron-selected {
+ :host(.iron-selected), .paper-item.iron-selected {
font-weight: var(--paper-item-selected-weight, bold);
@apply(--paper-item-selected);
}
- :host(paper-item[disabled]), :host(paper-icon-item[disabled]), .paper-item[disabled] {
+ :host([disabled]), .paper-item[disabled] {
color: var(--paper-item-disabled-color, --disabled-text-color);
@apply(--paper-item-disabled);
}
- :host(paper-item:focus), :host(paper-icon-item:focus), .paper-item:focus {
+ :host(:focus), .paper-item:focus {
position: relative;
outline: 0;
@apply(--paper-item-focused);
}
- :host(paper-item:focus):before, :host(paper-icon-item:focus):before, .paper-item:focus:before {
+ :host(:focus):before, .paper-item:focus:before {
@apply(--layout-fit);
background: currentColor;
« no previous file with comments | « third_party/polymer/v1_0/chromium.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698