Menu Style (active, ...)

expand-icon-class="my-menu-separat"
header-class="my-menu"
active-class="my-menu-active"
This commit is contained in:
Paolo Arena
2019-03-15 12:23:38 +01:00
parent f43d6e1b45
commit 9fabd68bae
3 changed files with 39 additions and 8 deletions

View File

@@ -14,6 +14,6 @@ TEST_EMAIL="paolo.arena77@gmail.com"
TEST_USERNAME="paoloar77" TEST_USERNAME="paoloar77"
TEST_PASSWORD="mypassword@1A" TEST_PASSWORD="mypassword@1A"
PUBLICKEY_PUSH="BGxRrFWnPoa_ImUaWXmeEOFVI9VNKVKaAPsvsM1XY6wn24yxp9MyOQ4crNYCJKxSXV65Y1GblW5_VLoamedcZ1I" PUBLICKEY_PUSH="BGxRrFWnPoa_ImUaWXmeEOFVI9VNKVKaAPsvsM1XY6wn24yxp9MyOQ4crNYCJKxSXV65Y1GblW5_VLoamedcZ1I"
IN_CONSTRUCTION="1" IN_CONSTRUCTION="0"
DEBUG="1" DEBUG="1"
TELEGRAM_SUPPORT="https://t.me/freeplanet_supporto" TELEGRAM_SUPPORT="https://t.me/freeplanet_supporto"

View File

@@ -50,3 +50,27 @@
-webkit-transform: rotate(-180deg); -webkit-transform: rotate(-180deg);
transform: rotate(-180deg); transform: rotate(-180deg);
} }
.my-menu, .my-menu > i{
min-width: 26px;
font-size: 1rem;
}
.my-menu-icon{
min-width: 26px;
font-size: 1rem;
}
.my-menu-icon > i{
min-width: 26px;
font-size: 1.5rem;
}
.my-menu-active {
background-color: rgba(174, 189, 241, 0.71);
}
.my-menu-separat > i{
min-width: 26px;
font-size: 1rem;
}

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="list no-border platform-delimiter light-paragraph"> <div class="no-border">
<q-list class="rounded-borders text-primary"> <q-list class="rounded-borders text-primary">
<template v-for="(parent, index) in getmenu"> <template v-for="(parent, index) in getmenu">
<div class="q-list-header">{{replaceUnderlineToSpace(index)}}</div> <div class="q-list-header">{{replaceUnderlineToSpace(index)}}</div>
@@ -10,15 +10,17 @@
:content-inset-level="0.5" :content-inset-level="0.5"
:label="$t(item.name)" :label="$t(item.name)"
:icon="item.materialIcon" :icon="item.materialIcon"
class="titleSubMenu" expand-icon-class="my-menu-separat"
header-class="my-menu"
active-class="my-menu-active"
> >
<q-expansion-item v-for="(child2, index) in item.routes2" :to="child2.route" :key="index" <q-expansion-item v-for="(child2, index) in item.routes2" :to="child2.route" :key="index"
:header-inset-level="0.5" :header-inset-level="0.5"
:duration="300" :duration="300"
expand-icon="map" expand-icon="map"
:active="child2.label === 'Outbox'" active-class="my-menu-active"
class="item item-link drawer-closer cursor-pointer" class="item item-link drawer-closer cursor-pointer my-menu"
:label="$t(child2.name)"> :label="$t(child2.name)">
</q-expansion-item> </q-expansion-item>
@@ -29,14 +31,16 @@
<div v-show="true"> <div v-show="true">
<q-item <q-item
clickable clickable
v-ripple
exact exact
:to="item.route" :to="item.route"
active-class="my-menu-link"> active-class="my-menu-active"
<q-item-section avatar> >
<q-item-section avatar class="my-menu-icon">
<q-icon :name="item.materialIcon"/> <q-icon :name="item.materialIcon"/>
</q-item-section> </q-item-section>
<q-item-section> <q-item-section class="my-menu">
{{$t(item.name)}} {{$t(item.name)}}
</q-item-section> </q-item-section>
</q-item> </q-item>
@@ -44,6 +48,9 @@
</div> </div>
</q-slide-transition> </q-slide-transition>
</div> </div>
<!--<q-separator spaced />-->
</div> </div>
</template> </template>
</q-list> </q-list>