Browse Source

UI: Make dashboard navbar and footer full-width (#6013)

* UI: Make dashboard navbar full-width

* more tweaks: full-width footer and consistent padding

* fix page layout causing unneccesary scrollbars on small pages
for-closed-social
silverwind 5 years ago
committed by zeripath
parent
commit
681345dc99
4 changed files with 12 additions and 4 deletions
  1. +1
    -1
      public/css/index.css
  2. +5
    -2
      public/less/_base.less
  3. +5
    -0
      public/less/_dashboard.less
  4. +1
    -1
      templates/user/dashboard/navbar.tmpl

+ 1
- 1
public/css/index.css
File diff suppressed because it is too large
View File


+ 5
- 2
public/less/_base.less View File

@ -49,7 +49,7 @@ pre > code {
} }
.full.height { .full.height {
padding: 0; padding: 0;
margin: 0 0 -@footer-margin 0;
margin: 0 0 calc(-@footer-margin - 2px) 0;
min-height: 100%; min-height: 100%;
} }
.following.bar { .following.bar {
@ -100,9 +100,10 @@ pre > code {
} }
#navbar { #navbar {
width: 100vw; width: 100vw;
padding: 0 .5rem;
} }
#navbar .brand { #navbar .brand {
margin: 0 0 0 .5rem;
margin: 0;
} }
@media only screen and (max-width: 767px) { @media only screen and (max-width: 767px) {
#navbar:not(.shown) > *:not(:first-child) { #navbar:not(.shown) > *:not(:first-child) {
@ -444,6 +445,8 @@ footer {
width: 100%; width: 100%;
color: #888888; color: #888888;
.container { .container {
width: 100vw !important;
padding: 0 .5rem;
.fa { .fa {
width: 16px; width: 16px;
text-align: center; text-align: center;

+ 5
- 0
public/less/_dashboard.less View File

@ -61,6 +61,11 @@
.dashboard-repos { .dashboard-repos {
margin: 0 1px; margin: 0 1px;
} }
.dashboard-navbar {
width: 100vw;
padding: 0 .5rem;
}
} }
&.feeds { &.feeds {

+ 1
- 1
templates/user/dashboard/navbar.tmpl View File

@ -1,4 +1,4 @@
<div class="ui container">
<div class="dashboard-navbar">
<div class="ui secondary stackable menu"> <div class="ui secondary stackable menu">
<div class="item"> <div class="item">
<div class="ui floating dropdown link jump"> <div class="ui floating dropdown link jump">

Loading…
Cancel
Save