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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs.html

Issue 1633603004: Add script to remove prefixed CSS from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing files Created 3 years, 9 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
Index: third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs.html
diff --git a/third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs.html b/third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs.html
index 31aded7aa7b0c09df3b5e4b929568fa12e6ea736..3d7df92e061e65b3e4798ad708933b061f8736dc 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs.html
+++ b/third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs.html
@@ -102,9 +102,6 @@ Custom property | Description | Default
font-size: 14px;
font-weight: 500;
overflow: hidden;
- -moz-user-select: none;
- -ms-user-select: none;
- -webkit-user-select: none;
user-select: none;
/* NOTE: Both values are needed, since some phones require the value to be `transparent`. */
@@ -128,8 +125,6 @@ Custom property | Description | Default
#tabsContent {
height: 100%;
- -moz-flex-basis: auto;
- -ms-flex-basis: auto;
flex-basis: auto;
}
@@ -149,8 +144,6 @@ Custom property | Description | Default
#tabsContent.scrollable.fit-container > ::content > * {
/* IE - prevent tabs from compressing when they should scroll. */
- -ms-flex: 1 0 auto;
- -webkit-flex: 1 0 auto;
flex: 1 0 auto;
}
@@ -177,11 +170,8 @@ Custom property | Description | Default
left: 0;
right: 0;
background-color: var(--paper-tabs-selection-bar-color, --paper-yellow-a100);
- -webkit-transform: scale(0);
transform: scale(0);
- -webkit-transform-origin: left center;
transform-origin: left center;
- transition: -webkit-transform;
transition: transform;
@apply(--paper-tabs-selection-bar);

Powered by Google App Engine
This is Rietveld 408576698