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

Unified Diff: polymer_0.5.0/bower_components/paper-slider/paper-slider.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-slider/paper-slider.css
diff --git a/bower_components/paper-slider/paper-slider.css b/polymer_0.5.0/bower_components/paper-slider/paper-slider.css
similarity index 95%
rename from bower_components/paper-slider/paper-slider.css
rename to polymer_0.5.0/bower_components/paper-slider/paper-slider.css
index 17b8726c844358c538e8280e7e4a6fdb05f213f2..4840ee8b1f87978043d249452df788ee8e3758f1 100644
--- a/bower_components/paper-slider/paper-slider.css
+++ b/polymer_0.5.0/bower_components/paper-slider/paper-slider.css
@@ -11,6 +11,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
display: inline-block;
width: 200px;
cursor: default;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
}
:host(:focus) {
@@ -97,7 +102,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}
.transiting #sliderBar::shadow #activeProgress {
- transition: width 0.08s ease;
+ transition: -webkit-transform 0.08s ease;
+ transition: transform 0.08s ease;
}
#sliderKnob {

Powered by Google App Engine
This is Rietveld 408576698