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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_manager.html

Issue 2206363003: [MD History] Use proper shadows for cards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_rounding
Patch Set: address comment, fix test Created 4 years, 4 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml">
6 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html"> 6 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html">
7 <link rel="import" href="chrome://history/shared_style.html"> 7 <link rel="import" href="chrome://history/shared_style.html">
8 <link rel="import" href="chrome://history/synced_device_card.html"> 8 <link rel="import" href="chrome://history/synced_device_card.html">
9 9
10 <dom-module id="history-synced-device-manager"> 10 <dom-module id="history-synced-device-manager">
11 <style include="shared-style"></style> 11 <style include="shared-style"></style>
12 <template> 12 <template>
13 <style> 13 <style>
14 :host { 14 :host {
15 display: block; 15 display: block;
16 overflow: auto; 16 overflow: overlay;
17 } 17 }
18 18
19 #illustration { 19 #illustration {
20 background: -webkit-image-set( 20 background: -webkit-image-set(
21 url(chrome://history/images/100/sign_in_promo.png) 1x, 21 url(chrome://history/images/100/sign_in_promo.png) 1x,
22 url(chrome://history/images/200/sign_in_promo.png) 2x) 22 url(chrome://history/images/200/sign_in_promo.png) 2x)
23 no-repeat center center; 23 no-repeat center center;
24 height: 222px; 24 height: 222px;
25 margin-top: 100px; 25 margin-top: 100px;
26 width: 594px; 26 width: 594px;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 <div id="illustration"></div> 83 <div id="illustration"></div>
84 <div id="sign-in-promo">$i18n{signInPromo}</div> 84 <div id="sign-in-promo">$i18n{signInPromo}</div>
85 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> 85 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div>
86 <paper-button id="sign-in-button" on-tap="onSignInTap_"> 86 <paper-button id="sign-in-button" on-tap="onSignInTap_">
87 $i18n{signInButton} 87 $i18n{signInButton}
88 </paper-button> 88 </paper-button>
89 </div> 89 </div>
90 </template> 90 </template>
91 <script src="chrome://history/synced_device_manager.js"></script> 91 <script src="chrome://history/synced_device_manager.js"></script>
92 </dom-module> 92 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698