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

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

Issue 2094123002: MD History: Hide horizontal scroll bar of synced tabs sign in promo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">
(...skipping 17 matching lines...) Expand all
28 28
29 #no-synced-tabs { 29 #no-synced-tabs {
30 height: 100%; 30 height: 100%;
31 } 31 }
32 32
33 #sign-in-guide { 33 #sign-in-guide {
34 align-items: center; 34 align-items: center;
35 display: flex; 35 display: flex;
36 flex-direction: column; 36 flex-direction: column;
37 justify-content: center; 37 justify-content: center;
38 overflow-x: hidden;
38 text-align: center; 39 text-align: center;
39 } 40 }
40 41
41 #sign-in-promo { 42 #sign-in-promo {
42 color: #333; 43 color: #333;
43 font-size: 28px; 44 font-size: 28px;
44 margin-top: 40px; 45 margin-top: 40px;
45 } 46 }
46 47
47 #sign-in-promo-desc { 48 #sign-in-promo-desc {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 <div id="illustration"></div> 80 <div id="illustration"></div>
80 <div id="sign-in-promo">$i18n{signInPromo}</div> 81 <div id="sign-in-promo">$i18n{signInPromo}</div>
81 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> 82 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div>
82 <paper-button id="sign-in-button" on-tap="onSignInTap_"> 83 <paper-button id="sign-in-button" on-tap="onSignInTap_">
83 $i18n{signInButton} 84 $i18n{signInButton}
84 </paper-button> 85 </paper-button>
85 </div> 86 </div>
86 </template> 87 </template>
87 <script src="chrome://history/synced_device_manager.js"></script> 88 <script src="chrome://history/synced_device_manager.js"></script>
88 </dom-module> 89 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698