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

Unified Diff: chrome/browser/resources/md_history/lazy_load.vulcanized.html

Issue 2436323002: MD History: Remove paper-checkbox from lazy loaded element bundle (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « chrome/browser/resources/md_history/lazy_load.crisper.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_history/lazy_load.vulcanized.html
diff --git a/chrome/browser/resources/md_history/lazy_load.vulcanized.html b/chrome/browser/resources/md_history/lazy_load.vulcanized.html
index 9aaca4b2b1ff86fddccc3ca94bc41d4be493623a..cd3c129f7274a42c21d14fb87d9f69cef287a9d0 100644
--- a/chrome/browser/resources/md_history/lazy_load.vulcanized.html
+++ b/chrome/browser/resources/md_history/lazy_load.vulcanized.html
@@ -1225,184 +1225,6 @@ paper-spinner {
</template>
</dom-module>
-<dom-module id="paper-checkbox" assetpath="chrome://resources/polymer/v1_0/paper-checkbox/" css-build="shadow">
- <template strip-whitespace="">
- <style scope="paper-checkbox">:host {
- display: inline-block;
- white-space: nowrap;
- cursor: pointer;
- --calculated-paper-checkbox-size: var(--paper-checkbox-size, 18px);
-
- --calculated-paper-checkbox-ink-size: var(--paper-checkbox-ink-size, -1px);
- font-family: var(--paper-font-common-base_-_font-family); -webkit-font-smoothing: var(--paper-font-common-base_-_-webkit-font-smoothing);
- line-height: 0;
- -webkit-tap-highlight-color: transparent;
-}
-
-:host([hidden]) {
- display: none !important;
-}
-
-:host(:focus) {
- outline: none;
-}
-
-.hidden {
- display: none;
-}
-
-#checkboxContainer {
- display: inline-block;
- position: relative;
- width: var(--calculated-paper-checkbox-size);
- height: var(--calculated-paper-checkbox-size);
- min-width: var(--calculated-paper-checkbox-size);
- margin: var(--paper-checkbox-margin, initial);
- vertical-align: var(--paper-checkbox-vertical-align, middle);
- background-color: var(--paper-checkbox-unchecked-background-color, transparent);
-}
-
-#ink {
- position: absolute;
-
-
- top: calc(0px - (var(--calculated-paper-checkbox-ink-size) - var(--calculated-paper-checkbox-size)) / 2);
- left: calc(0px - (var(--calculated-paper-checkbox-ink-size) - var(--calculated-paper-checkbox-size)) / 2);
- width: var(--calculated-paper-checkbox-ink-size);
- height: var(--calculated-paper-checkbox-ink-size);
- color: var(--paper-checkbox-unchecked-ink-color, var(--primary-text-color));
- opacity: 0.6;
- pointer-events: none;
-}
-
-:host-context([dir="rtl"]) #ink {
- right: calc(0px - (var(--calculated-paper-checkbox-ink-size) - var(--calculated-paper-checkbox-size)) / 2);
- left: auto;
-}
-
-#ink[checked] {
- color: var(--paper-checkbox-checked-ink-color, var(--primary-color));
-}
-
-#checkbox {
- position: relative;
- box-sizing: border-box;
- height: 100%;
- border: solid 2px;
- border-color: var(--paper-checkbox-unchecked-color, var(--primary-text-color));
- border-radius: 2px;
- pointer-events: none;
- -webkit-transition: background-color 140ms, border-color 140ms;
- transition: background-color 140ms, border-color 140ms;
-}
-
-#checkbox.checked #checkmark {
- -webkit-animation: checkmark-expand 140ms ease-out forwards;
- animation: checkmark-expand 140ms ease-out forwards;
-}
-
-@-webkit-keyframes checkmark-expand {
-0% {
- -webkit-transform: scale(0, 0) rotate(45deg);
-}
-
-100% {
- -webkit-transform: scale(1, 1) rotate(45deg);
-}
-
-}
-
-@keyframes checkmark-expand {
-0% {
- transform: scale(0, 0) rotate(45deg);
-}
-
-100% {
- transform: scale(1, 1) rotate(45deg);
-}
-
-}
-
-#checkbox.checked {
- background-color: var(--paper-checkbox-checked-color, var(--primary-color));
- border-color: var(--paper-checkbox-checked-color, var(--primary-color));
-}
-
-#checkmark {
- position: absolute;
- width: 36%;
- height: 70%;
- border-style: solid;
- border-top: none;
- border-left: none;
- border-right-width: calc(2/15 * var(--calculated-paper-checkbox-size));
- border-bottom-width: calc(2/15 * var(--calculated-paper-checkbox-size));
- border-color: var(--paper-checkbox-checkmark-color, white);
- -webkit-transform-origin: 97% 86%;
- transform-origin: 97% 86%;
- box-sizing: content-box;
-}
-
-:host-context([dir="rtl"]) #checkmark {
- -webkit-transform-origin: 50% 14%;
- transform-origin: 50% 14%;
-}
-
-#checkboxLabel {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- padding-left: var(--paper-checkbox-label-spacing, 8px);
- white-space: normal;
- line-height: normal;
- color: var(--paper-checkbox-label-color, var(--primary-text-color));
- ;
-}
-
-:host([checked]) #checkboxLabel {
- color: var(--paper-checkbox-label-checked-color, var(--paper-checkbox-label-color, var(--primary-text-color)));
- ;
-}
-
-:host-context([dir="rtl"]) #checkboxLabel {
- padding-right: var(--paper-checkbox-label-spacing, 8px);
- padding-left: 0;
-}
-
-#checkboxLabel[hidden] {
- display: none;
-}
-
-:host([disabled]) #checkbox {
- opacity: 0.5;
- border-color: var(--paper-checkbox-unchecked-color, var(--primary-text-color));
-}
-
-:host([disabled][checked]) #checkbox {
- background-color: var(--paper-checkbox-unchecked-color, var(--primary-text-color));
- opacity: 0.5;
-}
-
-:host([disabled]) #checkboxLabel {
- opacity: 0.65;
-}
-
-#checkbox.invalid:not(.checked) {
- border-color: var(--paper-checkbox-error-color, var(--error-color));
-}
-
-</style>
-
- <div id="checkboxContainer">
- <div id="checkbox" class$="[[_computeCheckboxClass(checked, invalid)]]">
- <div id="checkmark" class$="[[_computeCheckmarkClass(checked)]]"></div>
- </div>
- </div>
-
- <div id="checkboxLabel"><content></content></div>
- </template>
-
- </dom-module>
<dom-module id="paper-tab" assetpath="chrome://resources/polymer/v1_0/paper-tabs/" css-build="shadow">
<template>
<style scope="paper-tab">:host {
« no previous file with comments | « chrome/browser/resources/md_history/lazy_load.crisper.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698