mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-12 14:27:35 -08:00
Add dropdown menu
This commit is contained in:
parent
cefb5bb60a
commit
17d4003e5c
|
@ -86,5 +86,7 @@ module.exports.autoStart = async (token) => {
|
||||||
|
|
||||||
module.exports.stop = async () => {
|
module.exports.stop = async () => {
|
||||||
console.log("Stop cloudflared");
|
console.log("Stop cloudflared");
|
||||||
cloudflared.stop();
|
if (cloudflared) {
|
||||||
|
cloudflared.stop();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -40,6 +40,7 @@ import {
|
||||||
faSpinner,
|
faSpinner,
|
||||||
faUndo,
|
faUndo,
|
||||||
faPlusCircle,
|
faPlusCircle,
|
||||||
|
faAngleDown,
|
||||||
} from "@fortawesome/free-solid-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
|
@ -79,6 +80,7 @@ library.add(
|
||||||
faSpinner,
|
faSpinner,
|
||||||
faUndo,
|
faUndo,
|
||||||
faPlusCircle,
|
faPlusCircle,
|
||||||
|
faAngleDown,
|
||||||
);
|
);
|
||||||
|
|
||||||
export { FontAwesomeIcon };
|
export { FontAwesomeIcon };
|
||||||
|
|
|
@ -31,13 +31,28 @@
|
||||||
<font-awesome-icon icon="tachometer-alt" /> {{ $t("Dashboard") }}
|
<font-awesome-icon icon="tachometer-alt" /> {{ $t("Dashboard") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</li>
|
</li>
|
||||||
<li v-if="$root.loggedIn" class="nav-item me-2">
|
<li v-if="$root.loggedIn" class="nav-item">
|
||||||
<router-link to="/settings" class="nav-link" :class="{ active: $route.path.includes('settings') }">
|
<div class="dropdown dropdown-profile-pic">
|
||||||
<font-awesome-icon icon="cog" /> {{ $t("Settings") }}
|
<div type="button" class="nav-link" data-bs-toggle="dropdown">
|
||||||
</router-link>
|
<div class="profile-pic">L</div>
|
||||||
</li>
|
<font-awesome-icon icon="angle-down" />
|
||||||
<li v-if="$root.loggedIn && $root.storage().token !== 'autoLogin'" class="nav-item">
|
</div>
|
||||||
<button id="logout-btn" class="btn btn-danger me-2" @click="$root.logout">{{ $t("Logout") }}</button>
|
<ul class="dropdown-menu">
|
||||||
|
<li><span class="dropdown-item-text">Signed in as <strong>louislamlouislam</strong></span></li>
|
||||||
|
<li><hr class="dropdown-divider"></li>
|
||||||
|
<li>
|
||||||
|
<router-link to="/settings" class="dropdown-item" :class="{ active: $route.path.includes('settings') }">
|
||||||
|
<font-awesome-icon icon="cog" /> {{ $t("Settings") }}
|
||||||
|
</router-link>
|
||||||
|
</li>
|
||||||
|
<li v-if="$root.loggedIn && $root.storage().token !== 'autoLogin'">
|
||||||
|
<button class="dropdown-item" @click="$root.logout">
|
||||||
|
<font-awesome-icon icon="sign-out-alt" />
|
||||||
|
{{ $t("Logout") }}
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</header>
|
</header>
|
||||||
|
@ -77,10 +92,6 @@
|
||||||
<div><font-awesome-icon icon="cog" /></div>
|
<div><font-awesome-icon icon="cog" /></div>
|
||||||
{{ $t("Settings") }}
|
{{ $t("Settings") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
<button v-if="$root.loggedIn && $root.storage().token !== 'autoLogin'" id="logout-btn" class="nav-link" @click="$root.logout">
|
|
||||||
<div><font-awesome-icon icon="sign-out-alt" /></div>
|
|
||||||
{{ $t("Logout") }}
|
|
||||||
</button>
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -156,9 +167,9 @@ export default {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
|
|
||||||
a, button {
|
a {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 20%;
|
width: 25%;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 8px 10px 0;
|
padding: 8px 10px 0;
|
||||||
|
@ -166,7 +177,6 @@ export default {
|
||||||
color: #c1c1c1;
|
color: #c1c1c1;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
vertical-align: top;
|
|
||||||
|
|
||||||
&.router-link-exact-active, &.active {
|
&.router-link-exact-active, &.active {
|
||||||
color: $primary;
|
color: $primary;
|
||||||
|
@ -177,12 +187,6 @@ export default {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
|
||||||
border: none;
|
|
||||||
background: none;
|
|
||||||
color: #dc3545;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
|
@ -206,6 +210,78 @@ main {
|
||||||
z-index: 99999;
|
z-index: 99999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Profile Pic Button with Dropdown
|
||||||
|
.dropdown-profile-pic {
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
|
.nav-link {
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
gap: 6px;
|
||||||
|
align-items: center;
|
||||||
|
background-color: rgba(200, 200, 200, 0.2);
|
||||||
|
padding: 0.5rem 0.8rem;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu {
|
||||||
|
transition: all 0.2s;
|
||||||
|
padding-left: 0;
|
||||||
|
|
||||||
|
.dropdown-divider {
|
||||||
|
margin: 0;
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, 0.4);
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-item-text {
|
||||||
|
font-size: 14px;
|
||||||
|
padding-bottom: 0.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-item {
|
||||||
|
padding: 0.7rem 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark & {
|
||||||
|
background-color: $dark-bg;
|
||||||
|
color: $dark-font-color;
|
||||||
|
border-color: $dark-border-color;
|
||||||
|
|
||||||
|
.dropdown-item {
|
||||||
|
color: $dark-font-color;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
color: $dark-font-color2;
|
||||||
|
background-color: $highlight !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: $dark-bg2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-pic {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: white;
|
||||||
|
background-color: $primary;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
margin-right: 5px;
|
||||||
|
border-radius: 50rem;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.dark {
|
.dark {
|
||||||
header {
|
header {
|
||||||
background-color: $dark-header-bg;
|
background-color: $dark-header-bg;
|
||||||
|
|
|
@ -16,6 +16,14 @@
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</div>
|
</div>
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
|
<!-- Logout Button -->
|
||||||
|
<a v-if="$root.isMobile && $root.loggedIn && $root.storage().token !== 'autoLogin'" class="logout" @click.prevent="$root.logout">
|
||||||
|
<div class="menu-item">
|
||||||
|
<font-awesome-icon icon="sign-out-alt" />
|
||||||
|
{{ $t("Logout") }}
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="settings-content col-lg-9 col-md-7">
|
<div class="settings-content col-lg-9 col-md-7">
|
||||||
<div v-if="currentPage" class="settings-content-header">
|
<div v-if="currentPage" class="settings-content-header">
|
||||||
|
@ -233,4 +241,8 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logout {
|
||||||
|
color: $danger !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue