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

Commit

Permalink
Merge pull request #4315 from bsclifton/load-time-fix
Browse files Browse the repository at this point in the history
Hide the load time from URL bar on all platforms if below the narrow breakpoint
  • Loading branch information
bbondy authored Sep 27, 2016
2 parents c814235 + 33c5c8b commit 00ff01f
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit 00ff01f

Please sign in to comment.