Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit 1372e51

Browse files
committed
add footer + fix drawer scrolling issue
1 parent 72efa0b commit 1372e51

File tree

4 files changed

+30
-15
lines changed

4 files changed

+30
-15
lines changed

resources/assets/css/stylesheet.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
.invert {-webkit-filter: invert(100%); filter: invert(100%);}
2-
31
#lucid-add-button {
42
position: absolute;
53
right: 3%;
6-
bottom: 3%;
4+
bottom: 15%;
75
z-index: 6;
86
}
97

@@ -26,6 +24,12 @@
2624
min-width: 210px;
2725
}
2826

27+
/* invert the colours */
28+
.invert {
29+
-webkit-filter: invert(100%);
30+
filter: invert(100%);
31+
}
32+
2933
.text-center {
3034
text-align: center;
3135
}
@@ -40,6 +44,10 @@
4044
min-height: 800px;
4145
}
4246

47+
/*
48+
make the element take the fulld
49+
width of the parent.
50+
*/
4351
.full-width {
4452
width: 100%;
4553
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<footer class="mdl-mini-footer">
2+
<div class="mdl-mini-footer__left-section">
3+
<ul class="mdl-mini-footer__link-list">
4+
<li><a href="/lucid/dashboard/logs"><i class="material-icons">bug_report</i></a></li>
5+
</ul>
6+
</div>
7+
8+
<div class="mdl-mini-footer__right-section">
9+
<div class="mdl-logo"><img class="invert" src="/vendor/lucid/images/lucid-icon.png" width=30></div>
10+
<ul class="mdl-mini-footer__link-list">
11+
<li><a href="#">About</a></li>
12+
<li><a href="#">License</a></li>
13+
<li>© Vinelab 2016</li>
14+
</ul>
15+
</div>
16+
</footer>

resources/views/features.blade.php

Lines changed: 0 additions & 9 deletions
This file was deleted.

resources/views/layout.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
<nav class="mdl-navigation">
3636
<a href="/lucid/dashboard/services" class="mdl-navigation__link @if(isset($active) && $active == 'services') mdl-navigation__link--current @endif">Services</a>
3737
<a href="/lucid/dashboard/domains" class="mdl-navigation__link @if(isset($active) && $active == 'domains') mdl-navigation__link--current @endif">Domains</a>
38-
<a href="/lucid/dashboard/features" class="mdl-navigation__link @if(isset($active) && $active == 'features') mdl-navigation__link--current @endif">Features</a>
3938
<!-- search field -->
4039
<div id="search-field" class="mdl-textfield mdl-js-textfield mdl-textfield--expandable
4140
mdl-textfield--floating-label mdl-textfield--align-right">
@@ -56,12 +55,13 @@
5655
<!-- Holds the progress indicators -->
5756
<div id="lucid-progress-container"></div>
5857

59-
@yield('drawer')
60-
6158
<main class="mdl-layout__content">
59+
@yield('drawer')
6260
@yield('content')
6361
</main>
6462

63+
@include('lucid::components.footer')
64+
6565
</div>
6666

6767
@include('lucid::components.toast')

0 commit comments

Comments
 (0)