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

Unified Diff: polymer_1.0.4/bower_components/paper-checkbox/paper-checkbox.css

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 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
Index: polymer_1.0.4/bower_components/paper-checkbox/paper-checkbox.css
diff --git a/polymer_0.5.4/bower_components/paper-checkbox/paper-checkbox.css b/polymer_1.0.4/bower_components/paper-checkbox/paper-checkbox.css
similarity index 70%
copy from polymer_0.5.4/bower_components/paper-checkbox/paper-checkbox.css
copy to polymer_1.0.4/bower_components/paper-checkbox/paper-checkbox.css
index 5d9ce42821f148fcbcf30ab9419c328a1f45940e..195d8222d276bbaa484462b98ca8071c619eca73 100644
--- a/polymer_0.5.4/bower_components/paper-checkbox/paper-checkbox.css
+++ b/polymer_1.0.4/bower_components/paper-checkbox/paper-checkbox.css
@@ -1,19 +1,19 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-Code distributed by Google as part of the polymer project is also
+/*
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
:host {
- display: inline-block;
+ display: inline-block;
white-space: nowrap;
}
:host(:focus) {
- outline: 0;
+ outline: none;
}
.hidden {
@@ -21,37 +21,36 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}
#checkboxContainer {
+ display: inline-block;
position: relative;
width: 18px;
- height: 18px;
- cursor: pointer;
- -webkit-transform: translateZ(0);
+ height: 18px;
+ cursor: pointer;
+ -webkit-transform: translateZ(0);
transform: translateZ(0);
-}
-
-#checkboxContainer.labeled {
- display: inline-block;
vertical-align: middle;
}
-#ink {
+:host #ink {
position: absolute;
top: -15px;
left: -15px;
width: 48px;
height: 48px;
- color: #5a5f5a;
+ color: var(--paper-checkbox-unchecked-ink-color, --primary-text-color);
+ opacity: 0.6;
}
-#ink[checked] {
- color: #B2DFDB;
+:host #ink[checked] {
+ color: var(--paper-checkbox-checked-ink-color, --default-primary-color);
}
-#checkbox {
+:host #checkbox {
position: relative;
box-sizing: border-box;
height: 100%;
- border: solid 2px #5a5a5a;
+ border: solid 2px;
+ border-color: var(--paper-checkbox-unchecked-color, --primary-text-color);
border-radius: 2px;
pointer-events: none;
-webkit-transition: background-color 140ms, border-color 140ms;
@@ -59,7 +58,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}
/* checkbox checked animations */
-:host([checked]) #checkmark {
+#checkbox.checked #checkmark {
-webkit-animation: checkmark-expand 140ms ease-out forwards;
animation: checkmark-expand 140ms ease-out forwards;
}
@@ -94,12 +93,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}
}
-#checkbox.checked {
- background-color: #009688;
- border-color: #009688;
+:host #checkbox.checked {
+ background-color: var(--paper-checkbox-checked-color, --default-primary-color);
+ border-color: var(--paper-checkbox-checked-color, --default-primary-color);
}
-#checkmark {
+:host #checkmark {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
@@ -123,6 +122,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
padding-left: 8px;
white-space: normal;
pointer-events: none;
+ color: var(--paper-checkbox-label-color, --primary-text-color);
}
#checkboxLabel[hidden] {
@@ -135,10 +135,15 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}
:host([disabled]) #checkbox {
- opacity: 0.33;
- border-color: #5a5a5a;
+ opacity: 0.5;
+ border-color: var(--paper-checkbox-unchecked-color, --primary-text-color);
}
:host([disabled][checked]) #checkbox {
- background-color: #5a5a5a;
+ background-color: var(--paper-checkbox-unchecked-color, --primary-text-color);
+ opacity: 0.5;
+}
+
+:host([disabled]) #checkboxLabel {
+ opacity: 0.65;
}

Powered by Google App Engine
This is Rietveld 408576698