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

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

Issue 2412003002: MD History: Fix overlapping of sidebar footer in very short windows (Closed)
Patch Set: Layout tweaks Created 4 years, 2 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/html/cr/ui.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui.html">
3 <link rel="import" href="chrome://resources/html/cr/ui/command.html"> 3 <link rel="import" href="chrome://resources/html/cr/ui/command.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-target-beha vior/iron-scroll-target-behavior.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-target-beha vior/iron-scroll-target-behavior.html">
8 <link rel="import" href="chrome://history/history_toolbar.html"> 8 <link rel="import" href="chrome://history/history_toolbar.html">
9 <link rel="import" href="chrome://history/list_container.html"> 9 <link rel="import" href="chrome://history/list_container.html">
10 <link rel="import" href="chrome://history/router.html"> 10 <link rel="import" href="chrome://history/router.html">
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 height: 100%; 51 height: 100%;
52 } 52 }
53 53
54 #drawer:unresolved { 54 #drawer:unresolved {
55 display: none; 55 display: none;
56 } 56 }
57 57
58 #drawer-header { 58 #drawer-header {
59 align-items: center; 59 align-items: center;
60 border-bottom: 1px solid rgba(0, 0, 0, 0.08); 60 border-bottom: 1px solid rgba(0, 0, 0, 0.08);
61 box-sizing: border-box;
lshang 2016/10/12 05:15:28 nit: Is this necessary? This seems to just include
tsergeant 2016/10/12 06:06:45 This is a very minor thing, but the 1px change her
61 display: flex; 62 display: flex;
62 height: var(--toolbar-height); 63 height: var(--toolbar-height);
63 margin-bottom: 5px;
64 } 64 }
65 65
66 h1 { 66 h1 {
67 -webkit-padding-start: 24px; 67 -webkit-padding-start: 24px;
68 color: rgb(66, 66, 66); 68 color: rgb(66, 66, 66);
69 font-size: 123%; 69 font-size: 123%;
70 font-weight: 400; 70 font-weight: 400;
71 } 71 }
72 72
73 #drop-shadow { 73 #drop-shadow {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 </history-side-bar> 137 </history-side-bar>
138 </app-drawer> 138 </app-drawer>
139 </template> 139 </template>
140 140
141 <iron-media-query query="(max-width: 1023px)" 141 <iron-media-query query="(max-width: 1023px)"
142 query-matches="{{hasDrawer_}}"> 142 query-matches="{{hasDrawer_}}">
143 </iron-media-query> 143 </iron-media-query>
144 </template> 144 </template>
145 <script src="chrome://history/app.js"></script> 145 <script src="chrome://history/app.js"></script>
146 </dom-module> 146 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698