From cb097015c77e562f3c64822b562681eb495eb945 Mon Sep 17 00:00:00 2001 From: Borderliner Date: Sun, 6 Nov 2016 13:10:17 +0330 Subject: [PATCH 1/9] Update ROADMAP --- ROADMAP.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ROADMAP.md b/ROADMAP.md index 59aab2e..601de38 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,3 +1,8 @@ +## v1.3.4 + - [ ] Fix navbar bottom padding overlaying the content + - [ ] Better sidenav color, without borders + - [ ] More compact footer + ## v1.3.3 - [x] Fix grid offset which is caused after changing the whole system - [x] Update grid system docs From 58c6eb9603853ebfdac32ea131b289d07a03cad7 Mon Sep 17 00:00:00 2001 From: Borderliner Date: Mon, 7 Nov 2016 00:15:26 +0330 Subject: [PATCH 2/9] Fix navbar overlaying the content --- ROADMAP.md | 2 +- src/css/navbar.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index 601de38..7991742 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,5 +1,5 @@ ## v1.3.4 - - [ ] Fix navbar bottom padding overlaying the content + - [x] Fix navbar bottom padding overlaying the content - [ ] Better sidenav color, without borders - [ ] More compact footer diff --git a/src/css/navbar.css b/src/css/navbar.css index 22c99e8..43d7e6f 100644 --- a/src/css/navbar.css +++ b/src/css/navbar.css @@ -10,6 +10,11 @@ –––––––––––––––––––––––––––––––––––––––––––––––––– */ /* General attributes */ + +nav, .nav { + height: 0; +} + nav ul, .nav ul { width: 100%; From 2d8581ecd3cc18b5917bdefcba1e40f28b4cbf01 Mon Sep 17 00:00:00 2001 From: Borderliner Date: Mon, 7 Nov 2016 00:19:11 +0330 Subject: [PATCH 3/9] Better sidenav color, without borders --- ROADMAP.md | 2 +- src/css/rtl.css | 3 +-- src/css/sidenav.css | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index 7991742..cb7a8c3 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,6 +1,6 @@ ## v1.3.4 - [x] Fix navbar bottom padding overlaying the content - - [ ] Better sidenav color, without borders + - [x] Better sidenav color, without borders - [ ] More compact footer ## v1.3.3 diff --git a/src/css/rtl.css b/src/css/rtl.css index 4f317a1..3aa4753 100644 --- a/src/css/rtl.css +++ b/src/css/rtl.css @@ -175,8 +175,7 @@ input[type=checkbox]+label.checkbox:before, input[type=radio]+label.radio:before /* Sidenav starts from the right */ .sidenav { left: auto; - right: -1px; - border-left: 1px solid #818181; + right: 0px; } /* Different padding of RTL Sidenav */ diff --git a/src/css/sidenav.css b/src/css/sidenav.css index 4657543..76e87c1 100644 --- a/src/css/sidenav.css +++ b/src/css/sidenav.css @@ -17,9 +17,8 @@ z-index: 10; /* Stays on top of everything, unless a modal is implemented */ top: 0; left: -1px; - background-color: #111; + background-color: #000; padding-top: 15px; - border-right: 1px solid #818181; overflow-x: hidden; transition: 0.5s; } From e69e43afcd4bc3141d7245b8c77c6710a00bf5f1 Mon Sep 17 00:00:00 2001 From: Borderliner Date: Mon, 7 Nov 2016 00:35:14 +0330 Subject: [PATCH 4/9] Remove stupid compact mode for footer, default is compact now --- ROADMAP.md | 2 +- src/css/footer.css | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index cb7a8c3..f15c761 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,7 +1,7 @@ ## v1.3.4 - [x] Fix navbar bottom padding overlaying the content - [x] Better sidenav color, without borders - - [ ] More compact footer + - [x] More compact footer ## v1.3.3 - [x] Fix grid offset which is caused after changing the whole system diff --git a/src/css/footer.css b/src/css/footer.css index 779bb35..831eed8 100644 --- a/src/css/footer.css +++ b/src/css/footer.css @@ -15,20 +15,13 @@ footer, .footer { background-color: #111; border-top: 2px solid #E1E1E1; margin: 25px 0 0 0; - padding: 25px 50px; + padding: 25px 50px 0 50px; text-align: center; } -/* Remove bottom padding in compact mode */ -footer.compact, .footer.compact { - padding-bottom: 0px; -} - -/* Remove bottom margins of columns in compact mode */ -footer.compact .column, -.footer.compact .column, -footer.compact .columns, -.footer.compact .columns { +/* Remove bottom margins of columns */ +footer .col, +.footer .col { margin-bottom: 0px; } From a19c5fcf47e59081373ee56a55470e0cc8743f5f Mon Sep 17 00:00:00 2001 From: Borderliner Date: Mon, 7 Nov 2016 02:50:25 +0330 Subject: [PATCH 5/9] Add slider component --- ROADMAP.md | 1 + docs/index.html | 23 ++++++++++- src/css/form.css | 100 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 122 insertions(+), 2 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index f15c761..5bdaf3f 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -2,6 +2,7 @@ - [x] Fix navbar bottom padding overlaying the content - [x] Better sidenav color, without borders - [x] More compact footer + - [x] Add slider component ## v1.3.3 - [x] Fix grid offset which is caused after changing the whole system diff --git a/docs/index.html b/docs/index.html index 82a598d..dec508a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -497,6 +497,17 @@

Form Elements

+
+
+ Budget: 0 $ +
+
+ +
+
+ 100 $ +
+
@@ -849,8 +860,16 @@

Utilities