| Index: chrome/browser/resources/md_history/app.vulcanized.html
|
| diff --git a/chrome/browser/resources/md_history/app.vulcanized.html b/chrome/browser/resources/md_history/app.vulcanized.html
|
| index 2ec01c59cb4f5bb71ba5ffe40f4e5c51099fc75b..325eef78907fcc50988b513dff430b5729c9b21d 100644
|
| --- a/chrome/browser/resources/md_history/app.vulcanized.html
|
| +++ b/chrome/browser/resources/md_history/app.vulcanized.html
|
| @@ -3657,10 +3657,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| cursor: pointer;
|
| }
|
|
|
| - #icon {
|
| - -webkit-margin-start: 20px;
|
| - }
|
| -
|
| #tab-item-list {
|
| padding: 8px 0;
|
| }
|
| @@ -3690,6 +3686,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| #item-container {
|
| @apply(--layout-center);
|
| @apply(--layout-horizontal);
|
| + margin: 0 20px;
|
| min-height: var(--item-height);
|
| }
|
|
|
| @@ -3701,7 +3698,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| }
|
| </style>
|
| <div id="history-item-container">
|
| - <div class="card-title" id="card-heading" aria-expanded$="[[cardOpen_]]" aria-controls="collapse" on-tap="toggleTabCard">
|
| + <div class="card-title" id="card-heading" aria-expanded$="[[opened]]" aria-controls="collapse" on-tap="toggleTabCard">
|
| <div>
|
| [[device]]
|
| <span id="last-update-time">[[lastUpdateTime]]</span>
|
| @@ -3710,14 +3707,14 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| <button is="paper-icon-button-light" id="menu-button" class="icon-button" on-tap="onMenuButtonTap_" title="$i18n{moreActionsButton}">
|
| <iron-icon icon="cr:more-vert"></iron-icon>
|
| </button>
|
| - <button is="paper-icon-button-light" class="icon-button" title$="[[getCollapseTitle_(cardOpen_)]]">
|
| - <iron-icon icon="cr:expand-less" id="dropdown-indicator">
|
| + <button is="paper-icon-button-light" class="icon-button" title$="[[getCollapseTitle_(opened)]]">
|
| + <iron-icon icon="[[getCollapseIcon_(opened)]]" id="dropdown-indicator">
|
| </iron-icon>
|
| </button>
|
| </div>
|
| </div>
|
|
|
| - <iron-collapse opened="{{cardOpen_}}" id="collapse">
|
| + <iron-collapse opened="{{opened}}" id="collapse">
|
| <div id="tab-item-list">
|
| <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list">
|
| <div id="item-container">
|
| @@ -3790,7 +3787,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| </style>
|
| <div id="synced-device-list" hidden="[[!syncedDevices_.length]]">
|
| <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice">
|
| - <history-synced-device-card device="[[syncedDevice.device]]" last-update-time="[[syncedDevice.lastUpdateTime]]" tabs="[[syncedDevice.tabs]]" separator-indexes="[[syncedDevice.separatorIndexes]]" search-term="[[searchTerm]]" session-tag="[[syncedDevice.tag]]">
|
| + <history-synced-device-card device="[[syncedDevice.device]]" last-update-time="[[syncedDevice.lastUpdateTime]]" tabs="[[syncedDevice.tabs]]" separator-indexes="[[syncedDevice.separatorIndexes]]" search-term="[[searchTerm]]" session-tag="[[syncedDevice.tag]]" opened="{{syncedDevice.opened}}">
|
| </history-synced-device-card>
|
| </template>
|
| </div>
|
| @@ -3809,10 +3806,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
| <template is="history-lazy-render" id="menu">
|
| <cr-shared-menu>
|
| - <paper-item class="menu-item" on-tap="onOpenAllTap_">
|
| + <paper-item id="menuOpenButton" class="menu-item" on-tap="onOpenAllTap_">
|
| $i18n{openAll}
|
| </paper-item>
|
| - <paper-item class="menu-item" on-tap="onDeleteSessionTap_">
|
| + <paper-item id="menuDeleteButton" class="menu-item" on-tap="onDeleteSessionTap_">
|
| $i18n{deleteSession}
|
| </paper-item>
|
| </cr-shared-menu>
|
|
|