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

Side by Side Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2288033002: MD History: Fix focus highlight on 'Sign in to Chrome' button (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/synced_device_manager.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html><head><!-- 1 <html><head><!--
2 @license 2 @license
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 9 --><!--
10 @license 10 @license
(...skipping 3781 matching lines...) Expand 10 before | Expand all | Expand 10 after
3792 <div id="window-separator" hidden$="[[!isWindowSeparatorIndex_(index , separatorIndexes)]]"> 3792 <div id="window-separator" hidden$="[[!isWindowSeparatorIndex_(index , separatorIndexes)]]">
3793 </div> 3793 </div>
3794 </template> 3794 </template>
3795 </div> 3795 </div>
3796 </iron-collapse> 3796 </iron-collapse>
3797 </div> 3797 </div>
3798 </template> 3798 </template>
3799 </dom-module> 3799 </dom-module>
3800 <dom-module id="history-synced-device-manager" assetpath="chrome://history/"> 3800 <dom-module id="history-synced-device-manager" assetpath="chrome://history/">
3801 <template> 3801 <template>
3802 <style include="shared-style"> 3802 <style include="shared-style cr-shared-style">
3803 :host { 3803 :host {
3804 display: block; 3804 display: block;
3805 overflow: auto; 3805 overflow: auto;
3806 } 3806 }
3807 3807
3808 #illustration { 3808 #illustration {
3809 background: -webkit-image-set( 3809 background: -webkit-image-set(
3810 url("chrome://history/images/100/sign_in_promo.png") 1x, 3810 url("chrome://history/images/100/sign_in_promo.png") 1x,
3811 url("chrome://history/images/200/sign_in_promo.png") 2x) 3811 url("chrome://history/images/200/sign_in_promo.png") 2x)
3812 no-repeat center center; 3812 no-repeat center center;
(...skipping 21 matching lines...) Expand all
3834 margin-top: 40px; 3834 margin-top: 40px;
3835 } 3835 }
3836 3836
3837 #sign-in-promo-desc { 3837 #sign-in-promo-desc {
3838 color: #848484; 3838 color: #848484;
3839 font-size: 123%; 3839 font-size: 123%;
3840 margin-top: 10px; 3840 margin-top: 10px;
3841 } 3841 }
3842 3842
3843 #sign-in-button { 3843 #sign-in-button {
3844 background-color: var(--google-blue-500); 3844 margin: 24px 0;
3845 color: white;
3846 font-weight: 500;
3847 margin-top: 24px;
3848 padding-left: 12px; 3845 padding-left: 12px;
3849 padding-right: 12px; 3846 padding-right: 12px;
3850 } 3847 }
3851 3848
3852 #synced-device-list { 3849 #synced-device-list {
3853 padding-top: var(--first-card-padding-top); 3850 padding-top: var(--first-card-padding-top);
3854 } 3851 }
3855 </style> 3852 </style>
3856 <div id="synced-device-list" hidden="[[!syncedDevices_.length]]"> 3853 <div id="synced-device-list" hidden="[[!syncedDevices_.length]]">
3857 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice"> 3854 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice">
3858 <history-synced-device-card device="[[syncedDevice.device]]" last-update -time="[[syncedDevice.lastUpdateTime]]" tabs="[[syncedDevice.tabs]]" separator-i ndexes="[[syncedDevice.separatorIndexes]]" search-term="[[searchTerm]]" session- tag="[[syncedDevice.tag]]" opened="{{syncedDevice.opened}}"> 3855 <history-synced-device-card device="[[syncedDevice.device]]" last-update -time="[[syncedDevice.lastUpdateTime]]" tabs="[[syncedDevice.tabs]]" separator-i ndexes="[[syncedDevice.separatorIndexes]]" search-term="[[searchTerm]]" session- tag="[[syncedDevice.tag]]" opened="{{syncedDevice.opened}}">
3859 </history-synced-device-card> 3856 </history-synced-device-card>
3860 </template> 3857 </template>
3861 </div> 3858 </div>
3862 <div id="no-synced-tabs" class="centered-message" hidden="[[!showNoSyncedMes sage(signInState, syncedDevices_.length, 3859 <div id="no-synced-tabs" class="centered-message" hidden="[[!showNoSyncedMes sage(signInState, syncedDevices_.length,
3863 guestSession_)]]"> 3860 guestSession_)]]">
3864 [[noSyncedTabsMessage(fetchingSyncedTabs_)]] 3861 [[noSyncedTabsMessage(fetchingSyncedTabs_)]]
3865 </div> 3862 </div>
3866 <div id="sign-in-guide" hidden="[[!showSignInGuide(signInState, guestSession _)]]"> 3863 <div id="sign-in-guide" hidden="[[!showSignInGuide(signInState, guestSession _)]]">
3867 <div id="illustration"></div> 3864 <div id="illustration"></div>
3868 <div id="sign-in-promo">$i18n{signInPromo}</div> 3865 <div id="sign-in-promo">$i18n{signInPromo}</div>
3869 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> 3866 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div>
3870 <paper-button id="sign-in-button" on-tap="onSignInTap_"> 3867 <paper-button id="sign-in-button" class="action-button" on-tap="onSignInTa p_">
3871 $i18n{signInButton} 3868 $i18n{signInButton}
3872 </paper-button> 3869 </paper-button>
3873 </div> 3870 </div>
3874 3871
3875 <template is="history-lazy-render" id="menu"> 3872 <template is="history-lazy-render" id="menu">
3876 <cr-shared-menu> 3873 <cr-shared-menu>
3877 <paper-item id="menuOpenButton" class="menu-item" on-tap="onOpenAllTap_" > 3874 <paper-item id="menuOpenButton" class="menu-item" on-tap="onOpenAllTap_" >
3878 $i18n{openAll} 3875 $i18n{openAll}
3879 </paper-item> 3876 </paper-item>
3880 <paper-item id="menuDeleteButton" class="menu-item" on-tap="onDeleteSess ionTap_"> 3877 <paper-item id="menuDeleteButton" class="menu-item" on-tap="onDeleteSess ionTap_">
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
4076 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> 4073 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer="">
4077 </history-side-bar> 4074 </history-side-bar>
4078 </app-drawer> 4075 </app-drawer>
4079 </template> 4076 </template>
4080 4077
4081 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 4078 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
4082 </iron-media-query> 4079 </iron-media-query>
4083 </template> 4080 </template>
4084 </dom-module> 4081 </dom-module>
4085 <script src="app.crisper.js"></script></body></html> 4082 <script src="app.crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/synced_device_manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698