Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab57a860 authored by smain@google.com's avatar smain@google.com Committed by android-build-merger
Browse files

Merge "Remove nav toggle and up-nav for desktop size screens and remove...

Merge "Remove nav toggle and up-nav for desktop size screens and remove breadcrumbs for the Studio docs, because these are not needed when there\'s only one level of "tabs"" into mnc-mr-docs am: 848295ae am: 70136620
am: f11a8493

* commit 'f11a8493':
  Remove nav toggle and up-nav for desktop size screens and remove breadcrumbs for the Studio docs, because these are not needed when there's only one level of "tabs"

Change-Id: Idd3454b13d41434a4ea0127b33c184af41637be0
parents 2f57a4a2 f11a8493
Loading
Loading
Loading
Loading
+27 −5
Original line number Diff line number Diff line
@@ -6632,15 +6632,18 @@ div.jd-descr > .resource-widget[data-section=distribute\/tools]
  transition: opacity 200ms linear 200ms;
}

@media (min-width: 720px) and (max-width: 979px) {
@media (min-width: 720px) {
  .dac-header-tabs {
    display: inline-block;
  }
}

@media (min-width: 980px) {
  .dac-header-tabs {
    display: inline-block;
  /* Do not show nav toggle and up-nav button for left nav
     in Studio docs, when header tabs are visible */
  body.studio .dac-nav-back-button {
    display:none;
  }
  body.studio .dac-nav-sub {
    top: 0 !important;
  }
}

@@ -6754,6 +6757,10 @@ div.jd-descr > .resource-widget[data-section=distribute\/tools]
  display: inline-block;
}

body.studio .dac-header-crumbs {
  display:none;
}

.dac-header-crumbs.dac-has-content {
  opacity: 1;
}
@@ -7398,6 +7405,21 @@ div.jd-descr > .resource-widget[data-section=distribute\/tools]
  .dac-nav-open #body-content {
    padding-left: 250px;
  }

  /* Do not show nav toggle for Studio on large screens */
  body.studio .dac-nav-toggle {
    display:none;
  }
  body.studio .dac-header-logo {
    padding-left:20px;
  }
  /* And if the page has no subcomponent, don't show left nav at all */
  body.studio.None .dac-nav {
    display: none;
  }
  body.studio.None #body-content {
    padding-left:0;
  }
}

.dac-nav-open {