| Index: chrome/browser/resources/md_downloads/vulcanized.html
|
| diff --git a/chrome/browser/resources/md_downloads/vulcanized.html b/chrome/browser/resources/md_downloads/vulcanized.html
|
| index 7010722a4b66f79fbc9557ea7922252e802a7e16..8666191f8224fccaf2a5a7bf86a6344d5eb61a34 100644
|
| --- a/chrome/browser/resources/md_downloads/vulcanized.html
|
| +++ b/chrome/browser/resources/md_downloads/vulcanized.html
|
| @@ -1,6 +1,6 @@
|
| <!DOCTYPE html><html i18n-values="dir:textdirection;lang:language"><head><!--
|
| @license
|
| -Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
| +Copyright (c) 2016 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
|
| @@ -8,7 +8,7 @@ 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
|
| --><!--
|
| @license
|
| -Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
| +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
|
| @@ -16,7 +16,7 @@ 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
|
| --><!--
|
| @license
|
| -Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
|
| +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
|
| @@ -237,7 +237,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| };
|
|
|
| --layout-around-justified: {
|
| - -ms-flex-pack: around;
|
| + -ms-flex-pack: distribute;
|
| -webkit-justify-content: space-around;
|
| justify-content: space-around;
|
| };
|
| @@ -754,24 +754,26 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| --secondary-text-color: var(--light-theme-secondary-color);
|
| --disabled-text-color: var(--light-theme-disabled-color);
|
| --divider-color: var(--light-theme-divider-color);
|
| + --error-color: var(--paper-deep-orange-a700);
|
|
|
| /*
|
| * Primary and accent colors. Also see color.html for more colors.
|
| */
|
| - --primary-color: #3f51b5; /* --paper-indigo-500 */
|
| - --light-primary-color: #c5cae9; /* --paper-indigo-100 */
|
| - --dark-primary-color: #303f9f; /* --paper-indigo-700 */
|
| + --primary-color: var(--paper-indigo-500);
|
| + --light-primary-color: var(--paper-indigo-100);
|
| + --dark-primary-color: var(--paper-indigo-700);
|
| +
|
| + --accent-color: var(--paper-pink-a200);
|
| + --light-accent-color: var(--paper-pink-a100);
|
| + --dark-accent-color: var(--paper-pink-a400);
|
|
|
| - --accent-color: #ff4081; /* --paper-pink-a200 */
|
| - --light-accent-color: #ff80ab; /* --paper-pink-a100 */
|
| - --dark-accent-color: #f50057; /* --paper-pink-a400 */
|
|
|
| /*
|
| * Material Design Light background theme
|
| */
|
| --light-theme-background-color: #ffffff;
|
| --light-theme-base-color: #000000;
|
| - --light-theme-text-color: #212121;
|
| + --light-theme-text-color: var(--paper-grey-900);
|
| --light-theme-secondary-color: #737373; /* for secondary text and icons */
|
| --light-theme-disabled-color: #9b9b9b; /* disabled/hint text */
|
| --light-theme-divider-color: #dbdbdb;
|
| @@ -779,7 +781,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| /*
|
| * Material Design Dark background theme
|
| */
|
| - --dark-theme-background-color: #212121;
|
| + --dark-theme-background-color: var(--paper-grey-900);
|
| --dark-theme-base-color: #ffffff;
|
| --dark-theme-text-color: #ffffff;
|
| --dark-theme-secondary-color: #bcbcbc; /* for secondary text and icons */
|
| @@ -2357,8 +2359,9 @@ paper-button {
|
| .focused-line {
|
| @apply(--layout-fit);
|
|
|
| - background: var(--paper-input-container-focus-color, --default-primary-color);
|
| + background: var(--paper-input-container-focus-color, --primary-color);
|
| height: 2px;
|
| +
|
| -webkit-transform-origin: center center;
|
| transform-origin: center center;
|
| -webkit-transform: scale3d(0,1,1);
|
| @@ -2377,7 +2380,7 @@ paper-button {
|
| }
|
|
|
| .underline.is-invalid .focused-line {
|
| - background: var(--paper-input-container-invalid-color, --google-red-500);
|
| + background: var(--paper-input-container-invalid-color, --error-color);
|
| -webkit-transform: none;
|
| transform: none;
|
| -webkit-transition: -webkit-transform 0.25s;
|
| @@ -2389,8 +2392,8 @@ paper-button {
|
| .unfocused-line {
|
| @apply(--layout-fit);
|
|
|
| - height: 1px;
|
| background: var(--paper-input-container-color, --secondary-text-color);
|
| + height: 1px;
|
|
|
| @apply(--paper-input-container-underline);
|
| }
|
| @@ -2406,6 +2409,7 @@ paper-button {
|
| .label-and-input-container {
|
| @apply(--layout-flex-auto);
|
| @apply(--layout-relative);
|
| +
|
| width: 100%;
|
| max-width: 100%;
|
| }
|
| @@ -2426,26 +2430,26 @@ paper-button {
|
| width: 100%;
|
| font: inherit;
|
| color: var(--paper-input-container-color, --secondary-text-color);
|
| + -webkit-transition: -webkit-transform 0.25s, width 0.25s;
|
| + transition: transform 0.25s, width 0.25s;
|
| + -webkit-transform-origin: left top;
|
| + transform-origin: left top;
|
|
|
| @apply(--paper-font-common-nowrap);
|
| @apply(--paper-font-subhead);
|
| @apply(--paper-input-container-label);
|
| + @apply(--paper-transition-easing);
|
| }
|
|
|
| .input-content.label-is-floating ::content label,
|
| .input-content.label-is-floating ::content .paper-input-label {
|
| -webkit-transform: translateY(-75%) scale(0.75);
|
| transform: translateY(-75%) scale(0.75);
|
| - -webkit-transition: -webkit-transform 0.25s, width 0.25s;
|
| - transition: transform 0.25s, width 0.25s;
|
| - -webkit-transform-origin: left top;
|
| - transform-origin: left top;
|
|
|
| /* Since we scale to 75/100 of the size, we actually have 100/75 of the
|
| original space now available */
|
| width: 133%;
|
|
|
| - @apply(--paper-transition-easing);
|
| @apply(--paper-input-container-label-floating);
|
| }
|
|
|
| @@ -2461,14 +2465,14 @@ paper-button {
|
|
|
| .input-content.label-is-highlighted ::content label,
|
| .input-content.label-is-highlighted ::content .paper-input-label {
|
| - color: var(--paper-input-container-focus-color, --default-primary-color);
|
| + color: var(--paper-input-container-focus-color, --primary-color);
|
|
|
| @apply(--paper-input-container-label-focus);
|
| }
|
|
|
| .input-content.is-invalid ::content label,
|
| .input-content.is-invalid ::content .paper-input-label {
|
| - color: var(--paper-input-container-invalid-color, --google-red-500);
|
| + color: var(--paper-input-container-invalid-color, --error-color);
|
| }
|
|
|
| .input-content.label-is-hidden ::content label,
|
| @@ -2498,12 +2502,14 @@ paper-button {
|
|
|
| ::content [prefix] {
|
| @apply(--paper-font-subhead);
|
| +
|
| @apply(--paper-input-prefix);
|
| @apply(--layout-flex-none);
|
| }
|
|
|
| ::content [suffix] {
|
| @apply(--paper-font-subhead);
|
| +
|
| @apply(--paper-input-suffix);
|
| @apply(--layout-flex-none);
|
| }
|
| @@ -2522,11 +2528,11 @@ paper-button {
|
| }
|
|
|
| .add-on-content.is-invalid ::content * {
|
| - color: var(--paper-input-container-invalid-color, --google-red-500);
|
| + color: var(--paper-input-container-invalid-color, --error-color);
|
| }
|
|
|
| .add-on-content.is-highlighted ::content * {
|
| - color: var(--paper-input-container-focus-color, --default-primary-color);
|
| + color: var(--paper-input-container-focus-color, --primary-color);
|
| }
|
| </style>
|
|
|
|
|