Remove complexity in gallery nav HTML
This commit is contained in:
parent
eac055d352
commit
4eec94d573
2 changed files with 17 additions and 22 deletions
|
|
@ -222,7 +222,7 @@
|
|||
border-width: 0 0 1px;
|
||||
border-style: solid;
|
||||
border-color: rgba(180, 180, 180, 0.25);
|
||||
padding-right: 20px;
|
||||
padding-right: 15px;
|
||||
background: #fff;
|
||||
}
|
||||
.hook-inverse() {
|
||||
|
|
|
|||
|
|
@ -4,26 +4,21 @@
|
|||
<nav class="ofm-tab-navbar">
|
||||
<!-- Right side buttons -->
|
||||
<div class="uk-navbar-right">
|
||||
<div class="uk-grid">
|
||||
<div>
|
||||
<button
|
||||
class="uk-button uk-button-default uk-width-1-1 gallery-button"
|
||||
type="button"
|
||||
@click="refreshGallery()"
|
||||
>
|
||||
Refresh
|
||||
</button>
|
||||
</div>
|
||||
<div>
|
||||
<button
|
||||
class="sidebar-toggle uk-button uk-button-default uk-width-1-1 gallery-button"
|
||||
type="button"
|
||||
@click="sidebarOpen = !sidebarOpen"
|
||||
>
|
||||
<div class="sidebar-toggle-text" :class="{ open: sidebarOpen }">❮</div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<button
|
||||
class="uk-button uk-button-default gallery-button"
|
||||
type="button"
|
||||
@click="refreshGallery()"
|
||||
>
|
||||
Refresh
|
||||
</button>
|
||||
|
||||
<button
|
||||
class="sidebar-toggle uk-button uk-button-default gallery-button"
|
||||
type="button"
|
||||
@click="sidebarOpen = !sidebarOpen"
|
||||
>
|
||||
<div class="sidebar-toggle-text" :class="{ open: sidebarOpen }">❮</div>
|
||||
</button>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
|
@ -270,7 +265,7 @@ export default {
|
|||
|
||||
.gallery-button {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 2px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-toggle {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue