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

Unified Diff: ui/webui/resources/cr_elements/v1_0/cr_toggle_button/cr_toggle_button.html

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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: ui/webui/resources/cr_elements/v1_0/cr_toggle_button/cr_toggle_button.html
diff --git a/ui/webui/resources/cr_elements/v1_0/cr_toggle_button/cr_toggle_button.html b/ui/webui/resources/cr_elements/v1_0/cr_toggle_button/cr_toggle_button.html
deleted file mode 100644
index 0587f64e194be5875cb95c4c2d20b0ff9e11a6d9..0000000000000000000000000000000000000000
--- a/ui/webui/resources/cr_elements/v1_0/cr_toggle_button/cr_toggle_button.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/paper-toggle-button.html">
-<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_events/cr_events.html">
-
-<dom-module id="cr-toggle-button">
- <style>
- :host {
- --paper-toggle-button-unchecked-bar-color: rgb(38, 50, 56);
- --paper-toggle-button-unchecked-button-color: rgb(236, 239, 241);
- --paper-toggle-button-unchecked-ink-color: rgb(176, 190, 197);
- --paper-toggle-button-checked-bar-color: rgb(0, 150, 136);
- --paper-toggle-button-checked-button-color: rgb(0, 150, 136);
- --paper-toggle-button-checked-ink-color: rgb(0, 150, 136);
- }
- </style>
- <link rel="import" type="css" href="cr_toggle_button.css">
- <template>
- <cr-events id="events"></cr-events>
- <paper-toggle-button id="button"
- checked="{{checked}}" disabled="[[disabled]]">
- </paper-toggle-button>
- </template>
- <script src="cr_toggle_button.js"></script>
-</dom-module>

Powered by Google App Engine
This is Rietveld 408576698