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

Commit 81713139 authored by Scott Main's avatar Scott Main 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
am: ab57a860

* commit 'ab57a860':
  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: I5b62b050cf6d23758fd4ca0d2f549feaa89a8630
parents dfd5c020 ab57a860
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 {