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

Unified Diff: chrome/browser/resources/md_history/app.html

Issue 2020963002: MD History: Add responsive layout which hides the sidebar in thin windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nits Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_history/app.html
diff --git a/chrome/browser/resources/md_history/app.html b/chrome/browser/resources/md_history/app.html
index 1ad236098996b7f8555b3f3f2a139249d40d4d9c..f10f9d462fe3e951476d2db69f0b2f46a1f79ffe 100644
--- a/chrome/browser/resources/md_history/app.html
+++ b/chrome/browser/resources/md_history/app.html
@@ -20,7 +20,6 @@
:host {
display: block;
height: 100%;
- min-width: 800px;
overflow: hidden;
}
@@ -38,10 +37,6 @@
#content > * {
height: 100%;
}
-
- #history-side-bar {
- float: left;
- }
</style>
<history-toolbar id="toolbar"
spinner-active="[[shouldShowSpinner_(queryState_.querying,
@@ -55,8 +50,6 @@
</history-toolbar>
<div id="main-container">
- <history-side-bar id="history-side-bar" selected-page="{{selectedPage_}}">
- </history-side-bar>
<iron-pages id="content" attr-for-selected="id"
selected="[[getSelectedPage(selectedPage_, queryState_.range)]]">
<history-list id="history-list" querying="[[queryState_.querying]]"
@@ -77,6 +70,9 @@
</template>
</iron-pages>
</div>
+
+ <history-side-bar id="side-bar" selected-page="{{selectedPage_}}">
+ </history-side-bar>
</template>
<script src="chrome://history/app.js"></script>
</dom-module>
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698