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

Commit 573b5ce9 authored by Israel Yago Pereira's avatar Israel Yago Pereira
Browse files

Updating nav bar

parent 6c9add7c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
  --link-color: var(--color-primary);
  --color-accent--dark: #24527e;
  --nav-text-color: var(--color-main-text);
  --nav-mobile-background-color: #363636;
}
:root.dark-mode .select2-selection__arrow {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAIhJREFUOE/FUkEOwCAIo/z/zbCAQjCyzMTDPBmlLS2ALg4usHQHFlE1dWYcE4mqQokQ4FOCWr+AvwjUJK0IRK5sd2OzS3wwdgvRqnoV3Gb6HKzjwx5RMhCR0HEJZnbcEpL7yRZGUXqc7zXYLeFsYC5AcjUTacdTE40l6kb5OtuTER4vRrfG/4Eft2BLALbkjNwAAAAASUVORK5CYII=") 96% no-repeat;
+20 −4
Original line number Diff line number Diff line
@@ -487,6 +487,21 @@ footer .links > :first-child {
  display: inline-block;
  margin-right: 8px;
}
.separator {
  margin: 0 0.75rem;
  border-bottom: none;
}
.show-mobile-mq {
  display: none;
}
@media screen and (max-width: 600px) {
  .hide-mobile-mq {
    display: none;
  }
  .show-mobile-mq {
    display: block;
  }
}
nav {
  height: 48px;
  display: flex;
@@ -502,7 +517,7 @@ nav a {
nav a:hover {
  color: var(--color-primary);
}
nav #etheme_links > * {
nav .etheme_links > a {
  margin-right: 32px;
}
#nav_toggle_btn {
@@ -515,7 +530,7 @@ nav #etheme_links > * {
    top: 0;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-main-background);
    background-color: var(--nav-mobile-background-color);
    z-index: 1000;
    width: 280px;
    min-width: 280px;
@@ -529,11 +544,11 @@ nav #etheme_links > * {
    margin-top: 8px;
  }
  nav > :last-child {
    margin-bottom: 8px;
    margin-bottom: 16px;
  }
  nav a {
    display: block;
    padding: 8px 16px;
    padding: 16px 16px;
  }
  #nav_toggle_btn {
    display: block;
@@ -581,6 +596,7 @@ nav #etheme_links > * {
  display: inline-block;
  width: 36px;
  height: 20px;
  margin-right: 0.75rem;
}
.switch input {
  opacity: 0;
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+19 −1
Original line number Diff line number Diff line
@@ -142,3 +142,21 @@ footer {
    margin-right: @spacing_medium;
  }
}

.separator {
  margin: 0 0.75rem;
  border-bottom: none;
}

.show-mobile-mq {
  display: none;
}

.mobile-mq({
  .hide-mobile-mq {
    display: none;
  }
  .show-mobile-mq {
    display: block;
  }
});
Loading