mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-02 06:34:01 +00:00
fix: update Marketplace title and breadcrumb component style (#316)
This commit is contained in:
parent
6b1a2fa9f8
commit
b7115a4e47
@ -14,7 +14,12 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License. -->
|
limitations under the License. -->
|
||||||
<template>
|
<template>
|
||||||
<div class="nav-bar flex-h">
|
<div class="nav-bar flex-h">
|
||||||
<el-breadcrumb separator=">" class="title flex-h" v-if="pathNames.length">
|
<el-breadcrumb
|
||||||
|
:separator-icon="ArrowRight"
|
||||||
|
class="title flex-h"
|
||||||
|
v-if="pathNames.length"
|
||||||
|
:style="{ '--el-text-color-placeholder': '#666' }"
|
||||||
|
>
|
||||||
<el-breadcrumb-item
|
<el-breadcrumb-item
|
||||||
v-for="(path, index) in pathNames"
|
v-for="(path, index) in pathNames"
|
||||||
:key="index"
|
:key="index"
|
||||||
@ -69,6 +74,7 @@ limitations under the License. -->
|
|||||||
import { MetricCatalog } from "@/views/dashboard/data";
|
import { MetricCatalog } from "@/views/dashboard/data";
|
||||||
import type { DashboardItem } from "@/types/dashboard";
|
import type { DashboardItem } from "@/types/dashboard";
|
||||||
import router from "@/router";
|
import router from "@/router";
|
||||||
|
import { ArrowRight } from "@element-plus/icons-vue";
|
||||||
|
|
||||||
/*global Indexable */
|
/*global Indexable */
|
||||||
const { t, te } = useI18n();
|
const { t, te } = useI18n();
|
||||||
@ -296,7 +302,6 @@ limitations under the License. -->
|
|||||||
.title {
|
.title {
|
||||||
font-size: $font-size-normal;
|
font-size: $font-size-normal;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
height: 28px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-tabs {
|
.nav-tabs {
|
||||||
|
@ -213,9 +213,6 @@ div:has(> a.menu-title) {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-breadcrumb {
|
|
||||||
line-height: 28px;
|
|
||||||
}
|
|
||||||
.el-input-number .el-input__inner {
|
.el-input-number .el-input__inner {
|
||||||
text-align: left !important;
|
text-align: left !important;
|
||||||
}
|
}
|
||||||
|
@ -63,8 +63,6 @@ limitations under the License. -->
|
|||||||
function handleItems(item: MenuOptions) {
|
function handleItems(item: MenuOptions) {
|
||||||
currentItems.value = item;
|
currentItems.value = item;
|
||||||
}
|
}
|
||||||
|
|
||||||
appStore.setPageTitle("Marketplace");
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.menus {
|
.menus {
|
||||||
|
Loading…
Reference in New Issue
Block a user