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

Unified Diff: polymer_0.5.0/bower_components/paper-tabs/paper-tabs.css

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 12 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: polymer_0.5.0/bower_components/paper-tabs/paper-tabs.css
diff --git a/bower_components/paper-tabs/paper-tabs.css b/polymer_0.5.0/bower_components/paper-tabs/paper-tabs.css
similarity index 66%
rename from bower_components/paper-tabs/paper-tabs.css
rename to polymer_0.5.0/bower_components/paper-tabs/paper-tabs.css
index 851d96cbee1ac7195f5862fb1194ed0225575c6e..978a8496b30726b41cc2a75bc0371ceae24317c1 100644
--- a/bower_components/paper-tabs/paper-tabs.css
+++ b/polymer_0.5.0/bower_components/paper-tabs/paper-tabs.css
@@ -9,22 +9,46 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
:host {
display: block;
- position: relative;
font-size: 14px;
font-weight: 500;
height: 48px;
overflow: hidden;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#tabsContainer {
+ position: relative;
+ height: 100%;
+ white-space: nowrap;
+ overflow: hidden;
+}
+
+#tabsContent {
+ height: 100%;
+}
+
+#tabsContainer.scrollable > #tabsContent {
position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
white-space: nowrap;
}
+.scroll-button {
+ width: 40px;
+ padding: 0 12px;
+}
+
+.scroll-button > paper-icon-button {
+ transition: opacity 0.18s;
+}
+
+.scroll-button > .hidden {
+ opacity: 0;
+}
+
#selectionBar {
position: absolute;
height: 2px;
@@ -35,10 +59,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
transition: width, left;
}
-#selectionBar[hidden] {
- display: hidden;
-}
-
#selectionBar.expand {
transition-duration: 0.15s;
transition-timing-function: cubic-bezier(0.4, 0.0, 1, 1);
@@ -49,9 +69,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
transition-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}
-polyfill-next-selector { content: '#tabsContainer > *:not(#selectionBar)'; }
+polyfill-next-selector { content: '#tabsContent > *:not(#selectionBar)'; }
::content > * {
- -ms-flex: 1;
- -webkit-flex: 1;
- flex: 1;
+ height: 100%;
}
« no previous file with comments | « polymer_0.5.0/bower_components/paper-tabs/paper-tab.html ('k') | polymer_0.5.0/bower_components/paper-tabs/paper-tabs.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698