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

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

Issue 2450663003: MD History: hide tooltip promo when drawer is swiped open (Closed)
Patch Set: on-lonely="fixUpCode_" 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | 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 f6a3538678cc677c61dce4972f8487d674ebad8c..98d793f26c031ebcedfd7a41dea56b0c453d25ae 100644
--- a/chrome/browser/resources/md_history/app.html
+++ b/chrome/browser/resources/md_history/app.html
@@ -21,10 +21,12 @@
display: block;
height: 100%;
overflow: hidden;
+ z-index: 0;
}
history-toolbar {
background: var(--md-toolbar-color);
+ z-index: 2;
}
/* Sizing this with flex causes slow load performance, see
@@ -32,6 +34,7 @@
#main-container {
height: calc(100% - var(--toolbar-height));
position: relative;
+ z-index: 1;
}
:host([grouped_]) #main-container {
@@ -55,6 +58,10 @@
display: none;
}
+ #drawer {
+ z-index: 3;
+ }
+
#drawer-header {
align-items: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
@@ -99,7 +106,8 @@
query-start-time="[[queryResult_.info.queryStartTime]]"
query-end-time="[[queryResult_.info.queryEndTime]]"
has-drawer="[[hasDrawer_]]"
- show-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]">
+ show-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]"
+ show-menu-promo="[[showMenuPromo_]]">
</history-toolbar>
<div id="main-container">
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | chrome/browser/resources/md_history/app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698