| 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;
|
| - }
|
| -}
|
|
|