Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Hide the load time from URL bar on all platforms if below the narrow breakpoint #4315

Merged
merged 1 commit into from
Sep 27, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion less/navigationBar.less
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
}
}

// All platforms - media queries
@media (max-width: @breakpointNarrowViewport) {
.loadTime { display: none; }
}

// (macOS) We need to keep a padding left to avoid overlapping
// with the window buttons to close/maximize/minimize the window.
.platform--darwin .navigatorWrapper .backforward {
Expand All @@ -40,7 +45,7 @@
padding-left: 5px;
padding-top: 5px;
}

#urlInput { width: 100%; }

// changes to ensure window can be as small as 480px wide
Expand Down