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

Unified Diff: chrome/browser/resources/inspect/inspect.css

Issue 2881553003: [DevTools] Show scrollbars on chrome://inspect (Closed)
Patch Set: [DevTools] Show scrollbars on chrome://inspect Created 3 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/inspect/inspect.css
diff --git a/chrome/browser/resources/inspect/inspect.css b/chrome/browser/resources/inspect/inspect.css
index b25cb2e2fc45d39b48ea03ec6df34495d13bb70e..8c3957b7ee639d56a58937c206706decbb0c4607 100644
--- a/chrome/browser/resources/inspect/inspect.css
+++ b/chrome/browser/resources/inspect/inspect.css
@@ -6,16 +6,20 @@
box-sizing: border-box;
}
+html {
+ height: 100%;
+}
+
body {
color: rgb(48, 57, 66);
font-size: 13px;
+ height: 100%;
margin: 0;
- min-width: 47em;
- overflow: hidden;
+ overflow: auto;
}
.hidden {
- display: none !important;
+ display: none !important;
}
img {
@@ -28,8 +32,8 @@ img {
}
#container {
- -webkit-flex-direction: row;
- display: -webkit-flex;
+ display: flex;
+ height: 100%
}
#infobar {
@@ -49,12 +53,13 @@ img {
}
#navigation {
+ flex-shrink: 0;
padding-top: 20px;
width: 150px;
}
#content {
- -webkit-flex: 1;
+ flex-grow: 1;
}
#caption {
@@ -92,6 +97,7 @@ img {
}
#content > div {
+ min-width: 32em;
padding: 0 20px 65px 0;
}
#content > div:not(.selected) {
@@ -430,20 +436,3 @@ dialog.target-discovery .port-forwarding {
.config-buttons > label {
flex-grow: 1
}
-
-@media (max-width: 47em) {
- #navigation,
- #content {
- overflow: visible;
- }
-}
-@media (min-width: 47em) {
- #container {
- max-height: 100vh;
- }
- #navigation,
- #content {
- max-height: 100vh;
- overflow: auto;
- }
-}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698