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
tags/v1.9.0-dev
silverwind zeripath 6 years ago
parent
commit
a0487009a4
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 {
padding: 0;
margin: 0 0 -@footer-margin 0;
margin: 0 0 calc(-@footer-margin - 2px) 0;
min-height: 100%;
}
.following.bar {
@@ -100,9 +100,10 @@ pre > code {
}
#navbar {
width: 100vw;
padding: 0 .5rem;
}
#navbar .brand {
margin: 0 0 0 .5rem;
margin: 0;
}
@media only screen and (max-width: 767px) {
#navbar:not(.shown) > *:not(:first-child) {
@@ -444,6 +445,8 @@ footer {
width: 100%;
color: #888888;
.container {
width: 100vw !important;
padding: 0 .5rem;
.fa {
width: 16px;
text-align: center;


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

@@ -61,6 +61,11 @@
.dashboard-repos {
margin: 0 1px;
}

.dashboard-navbar {
width: 100vw;
padding: 0 .5rem;
}
}

&.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="item">
<div class="ui floating dropdown link jump">


Loading…
Cancel
Save