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

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

Issue 2273523002: [MD History] Prevent horizontal scrolling of history views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_CBD_button
Patch Set: overflow:auto 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
« no previous file with comments | « chrome/browser/resources/md_history/history_list.html ('k') | 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/cr_elements/cr_shared_menu/cr_shared _menu.html"> 5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html">
6 <link rel="import" href="chrome://history/lazy_render.html"> 6 <link rel="import" href="chrome://history/lazy_render.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 <template> 11 <template>
12 <style include="shared-style"> 12 <style include="shared-style">
13 :host { 13 :host {
14 display: block; 14 display: block;
15 overflow: overlay; 15 overflow: auto;
16 } 16 }
17 17
18 #illustration { 18 #illustration {
19 background: -webkit-image-set( 19 background: -webkit-image-set(
20 url(chrome://history/images/100/sign_in_promo.png) 1x, 20 url(chrome://history/images/100/sign_in_promo.png) 1x,
21 url(chrome://history/images/200/sign_in_promo.png) 2x) 21 url(chrome://history/images/200/sign_in_promo.png) 2x)
22 no-repeat center center; 22 no-repeat center center;
23 height: 222px; 23 height: 222px;
24 margin-top: 100px; 24 margin-top: 100px;
25 width: 594px; 25 width: 594px;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 </paper-item> 96 </paper-item>
97 <paper-item id="menuDeleteButton" class="menu-item" 97 <paper-item id="menuDeleteButton" class="menu-item"
98 on-tap="onDeleteSessionTap_"> 98 on-tap="onDeleteSessionTap_">
99 $i18n{deleteSession} 99 $i18n{deleteSession}
100 </paper-item> 100 </paper-item>
101 </cr-shared-menu> 101 </cr-shared-menu>
102 </template> 102 </template>
103 </template> 103 </template>
104 <script src="chrome://history/synced_device_manager.js"></script> 104 <script src="chrome://history/synced_device_manager.js"></script>
105 </dom-module> 105 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_list.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698