dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/brand/harvester/favicon.png +0 -0
- package/assets/brand/suse/favicon.png +0 -0
- package/assets/icons/demo.css +539 -0
- package/assets/icons/demo.css:Zone.Identifier +0 -0
- package/assets/icons/demo_index.html +1131 -0
- package/assets/icons/demo_index.html:Zone.Identifier +0 -0
- package/assets/icons/iconfont.css +216 -0
- package/assets/icons/iconfont.css:Zone.Identifier +0 -0
- package/assets/icons/iconfont.js +1 -0
- package/assets/icons/iconfont.js:Zone.Identifier +0 -0
- package/assets/icons/iconfont.json +324 -0
- package/assets/icons/iconfont.json:Zone.Identifier +0 -0
- package/assets/icons/iconfont.ttf +0 -0
- package/assets/icons/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff +0 -0
- package/assets/icons/iconfont.woff2 +0 -0
- package/assets/icons/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff:Zone.Identifier +0 -0
- package/assets/images/API.svg +3 -0
- package/assets/images/action.svg +6 -0
- package/assets/images/login/password.svg +20 -0
- package/assets/images/login/user.svg +6 -0
- package/assets/images/login-bg.png +0 -0
- package/assets/images/login-left.png +0 -0
- package/assets/images/login-logo.svg +19 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/pl/half-logo.svg +2 -23
- package/assets/images/pl/harvester.png +0 -0
- package/assets/images/pl/logo.png +0 -0
- package/assets/images/promp-yellow.svg +5 -0
- package/assets/images/user.png +0 -0
- package/assets/styles/all.scss +63 -0
- package/assets/styles/app.scss +4 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_mixins.scss +1 -1
- package/assets/styles/base/_typography.scss +2 -1
- package/assets/styles/base/_variables.scss +14 -7
- package/assets/styles/global/_button.scss +43 -25
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +45 -13
- package/assets/styles/global/_labeled-input.scss +54 -26
- package/assets/styles/global/_layout.scss +8 -3
- package/assets/styles/global/_select.scss +25 -17
- package/assets/styles/global/_table.scss +7 -1
- package/assets/styles/global/_tooltip.scss +56 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +66 -43
- package/assets/styles/vendor/vue-select.scss +22 -9
- package/assets/translations/en-us.yaml +28 -4
- package/assets/translations/zh-hans.yaml +452 -189
- package/components/ActionDropdown.vue +2 -1
- package/components/ActionMenu.vue +2 -2
- package/components/ActionMenuShell.vue +2 -0
- package/components/AppModal.vue +46 -5
- package/components/BrandImage.vue +1 -0
- package/components/ButtonDropdown.vue +26 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +1 -1
- package/components/CodeMirror.vue +20 -6
- package/components/ConsumptionGauge.vue +24 -5
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +9 -8
- package/components/CruResourceFooter.vue +2 -2
- package/components/DashboardOptions.vue +29 -17
- package/components/DotState.vue +84 -0
- package/components/Drawer/Chrome.vue +2 -2
- package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +22 -22
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +2 -1
- package/components/ExplorerMembers.vue +18 -3
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +112 -48
- package/components/GrafanaDashboard.vue +4 -4
- package/components/GrowlManager.vue +3 -1
- package/components/HardwareResourceGauge.vue +39 -3
- package/components/IndentedPanel.vue +4 -10
- package/components/InfoBox.vue +3 -3
- package/components/InputOrDisplay.vue +28 -2
- package/components/LabelValue.vue +20 -1
- package/components/ModalWithCard.vue +12 -3
- package/components/PodSecurityAdmission.vue +1 -1
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +30 -11
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +1 -3
- package/components/Resource/Detail/Metadata/KeyValue.vue +8 -4
- package/components/Resource/Detail/Metadata/index.vue +3 -1
- package/components/Resource/Detail/TitleBar/Title.vue +4 -3
- package/components/Resource/Detail/TitleBar/Top.vue +2 -0
- package/components/Resource/Detail/TitleBar/index.vue +109 -24
- package/components/ResourceDetail/Masthead/legacy.vue +181 -38
- package/components/ResourceDetail/legacy.vue +32 -14
- package/components/ResourceList/Masthead.vue +226 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +24 -2
- package/components/SideNav.vue +74 -20
- package/components/SortableTable/THead.vue +33 -3
- package/components/SortableTable/index.vue +1016 -463
- package/components/SortableTable/paging.js +26 -16
- package/components/SortableTable/selection.js +2 -2
- package/components/Tabbed/Tab.vue +3 -3
- package/components/Tabbed/index.vue +47 -29
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +37 -13
- package/components/auth/RoleDetailEdit.vue +58 -7
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +316 -0
- package/components/form/ArrayList.vue +41 -33
- package/components/form/ArrayListGrouped.vue +10 -2
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +4 -4
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Footer.vue +11 -8
- package/components/form/InputWithSelect.vue +8 -5
- package/components/form/KeyValue.vue +47 -7
- package/components/form/LabeledSelect.vue +214 -242
- package/components/form/Labels.vue +3 -3
- package/components/form/MatchExpressions.vue +24 -7
- package/components/form/Members/ClusterPermissionsEditor.vue +1 -2
- package/components/form/Members/MembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +59 -20
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +4 -5
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +18 -17
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +3 -6
- package/components/form/Select.vue +5 -2
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/UnitInput.vue +8 -3
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +132 -99
- package/components/nav/Header.vue +124 -27
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +20 -17
- package/components/nav/TopLevelMenu.vue +182 -119
- package/components/nav/Type.vue +63 -41
- package/composables/useClickOutside.ts +1 -1
- package/config/private-label.js +15 -11
- package/config/product/auth.js +17 -7
- package/config/product/settings.js +19 -9
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/management.cattle.io.user.vue +17 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +19 -19
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +31 -31
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.receiver/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +5 -5
- package/edit/monitoring.coreos.com.receiver/types/slack.vue +4 -4
- package/edit/namespace.vue +1 -2
- package/edit/token.vue +31 -12
- package/edit/workload/index.vue +4 -4
- package/list/management.cattle.io.setting.vue +22 -13
- package/list/management.cattle.io.user.vue +7 -3
- package/list/namespace.vue +3 -0
- package/list/provisioning.cattle.io.cluster.vue +6 -7
- package/mixins/brand.js +17 -0
- package/package.json +1 -1
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +220 -52
- package/pages/auth/setup.vue +142 -19
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +56 -5
- package/pages/c/_cluster/monitoring/monitor/index.vue +2 -2
- package/pages/c/_cluster/settings/banners.vue +174 -102
- package/pages/c/_cluster/settings/brand.vue +350 -302
- package/pages/c/_cluster/settings/performance.vue +61 -38
- package/pages/home.vue +70 -30
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.js +1 -1
- package/plugins/dashboard-store/resource-class.js +28 -27
- package/promptRemove/mixin/roleDeletionCheck.js +2 -2
- package/public/index.html +4 -4
- package/rancher-components/BadgeState/BadgeState.vue +38 -55
- package/rancher-components/Banner/Banner.vue +12 -8
- package/rancher-components/Card/Card.vue +7 -8
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -0
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +42 -3
- package/rancher-components/Form/Radio/RadioButton.vue +35 -11
- package/rancher-components/Form/Radio/RadioGroup.vue +13 -5
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +12 -4
- package/rancher-components/RcDropdown/RcDropdown.vue +35 -7
- package/rancher-components/RcDropdown/RcDropdownItem.vue +2 -2
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +12 -6
- package/rancher-components/RcDropdown/types.ts +1 -0
- package/rancher-components/StringList/StringList.vue +1 -1
- package/scripts/publish-shell.sh +1 -1
- package/static/favicon.ico +0 -0
- package/static/favicon.png +0 -0
- package/static/loading-indicator.html +3 -3
- package/store/i18n.js +5 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +32 -2
- package/types/shell/index.d.ts +78 -97
- package/utils/error.js +89 -8
- package/utils/errorTranslate.json +1351 -0
- package/utils/router.js +21 -0
- package/utils/select.js +26 -3
- package/utils/string.js +8 -5
- package/utils/title.ts +1 -1
- package/vue.config.js +1 -1
package/components/nav/Group.vue
CHANGED
|
@@ -8,6 +8,11 @@ export default {
|
|
|
8
8
|
emits: ['expand', 'close'],
|
|
9
9
|
|
|
10
10
|
props: {
|
|
11
|
+
loginName: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: '',
|
|
14
|
+
},
|
|
15
|
+
|
|
11
16
|
depth: {
|
|
12
17
|
type: Number,
|
|
13
18
|
default: 0,
|
|
@@ -46,8 +51,16 @@ export default {
|
|
|
46
51
|
|
|
47
52
|
data() {
|
|
48
53
|
const id = (this.idPrefix || '') + this.group.name;
|
|
54
|
+
const icons = {
|
|
55
|
+
'虚拟机管理': 'icon-backupandsnapshot',
|
|
56
|
+
'网络管理': 'icon-networks',
|
|
57
|
+
'镜像管理': 'icon-imagelist',
|
|
58
|
+
'资源管理': 'icon-sorcetype',
|
|
59
|
+
'运维管理': 'icon-monitoringandlogging'
|
|
60
|
+
}
|
|
61
|
+
|
|
49
62
|
|
|
50
|
-
return { id, expanded: false };
|
|
63
|
+
return { id, expanded: false, icons };
|
|
51
64
|
},
|
|
52
65
|
|
|
53
66
|
computed: {
|
|
@@ -224,41 +237,51 @@ export default {
|
|
|
224
237
|
<template>
|
|
225
238
|
<div
|
|
226
239
|
class="accordion"
|
|
227
|
-
:class="{[`depth-${depth}`]: true, 'expanded': isExpanded, 'has-children': hasChildren, 'group-highlight': isGroupActive
|
|
240
|
+
:class="{[`depth-${depth}`]: true, 'expanded': isExpanded, 'has-children': hasChildren, 'group-highlight': isGroupActive}"
|
|
228
241
|
>
|
|
242
|
+
<!-- 分组标题区 -->
|
|
229
243
|
<div
|
|
230
|
-
v-if="showHeader
|
|
231
|
-
class="
|
|
244
|
+
v-if="showHeader"
|
|
245
|
+
class="header"
|
|
246
|
+
:class="{'active': isOverview, 'noHover': !canCollapse}"
|
|
247
|
+
role="button"
|
|
248
|
+
tabindex="0"
|
|
249
|
+
:aria-label="group.labelDisplay || group.label || ''"
|
|
250
|
+
@click="groupSelected()"
|
|
251
|
+
@keyup.enter="groupSelected()"
|
|
252
|
+
@keyup.space="groupSelected()"
|
|
232
253
|
>
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
:aria-label="group.labelDisplay || group.label || ''"
|
|
240
|
-
@click="groupSelected()"
|
|
241
|
-
@keyup.enter="groupSelected()"
|
|
242
|
-
@keyup.space="groupSelected()"
|
|
243
|
-
>
|
|
244
|
-
<slot name="header">
|
|
254
|
+
|
|
255
|
+
<!-- 具名插槽 header,允许外部自定义标题内容 -->
|
|
256
|
+
<slot name="header">
|
|
257
|
+
|
|
258
|
+
<!-- 如果分组有概览页(overview) 跳转到第一个子路由 -->
|
|
259
|
+
<h6 v-if="hasOverview">
|
|
245
260
|
<router-link
|
|
246
|
-
|
|
261
|
+
class="menuRouterLink"
|
|
247
262
|
:to="group.children[0].route"
|
|
248
263
|
:exact="group.children[0].exact"
|
|
249
264
|
:tabindex="-1"
|
|
250
265
|
>
|
|
251
|
-
<
|
|
252
|
-
<span v-clean-html="group.labelDisplay || group.label" />
|
|
253
|
-
</h6>
|
|
254
|
-
</router-link>
|
|
255
|
-
<h6
|
|
256
|
-
v-else
|
|
257
|
-
>
|
|
266
|
+
<i v-if="!group.labelDisplay || (group.labelDisplay && group.labelDisplay.indexOf('</i>') === -1)" class="icon" :class="icons[group.label] ? icons[group.label] + ' init_icon' : 'icon-globe'" style="color: var(--muted);width: 32px;" />
|
|
258
267
|
<span v-clean-html="group.labelDisplay || group.label" />
|
|
259
|
-
</
|
|
260
|
-
</
|
|
261
|
-
|
|
268
|
+
</router-link>
|
|
269
|
+
</h6>
|
|
270
|
+
<!-- 虚拟机管理:icon-backupandsnapshot -->
|
|
271
|
+
<!-- 网络管理:icon-networks -->
|
|
272
|
+
<!-- 镜像管理:icon-imagelist -->
|
|
273
|
+
<!-- 资源管理:icon-sorcetype -->
|
|
274
|
+
<!-- 运维管理:icon-monitoringandlogging -->
|
|
275
|
+
<!-- 没有概览页的情况 -->
|
|
276
|
+
<h6
|
|
277
|
+
v-else
|
|
278
|
+
>
|
|
279
|
+
<i v-if="!group.labelDisplay || (group.labelDisplay && group.labelDisplay.indexOf('</i>') === -1)" class="icon" :class="icons[group.label] ? icons[group.label] + ' init_icon' : 'icon-globe'" style="color: var(--muted);width: 32px;" />
|
|
280
|
+
<span v-clean-html="group.labelDisplay || group.label" />
|
|
281
|
+
</h6>
|
|
282
|
+
</slot>
|
|
283
|
+
|
|
284
|
+
<!-- 折叠/展开图标 -->
|
|
262
285
|
<i
|
|
263
286
|
v-if="!onlyHasOverview && canCollapse"
|
|
264
287
|
class="icon toggle toggle-accordion"
|
|
@@ -271,6 +294,8 @@ export default {
|
|
|
271
294
|
@keyup.space="peek($event, true)"
|
|
272
295
|
/>
|
|
273
296
|
</div>
|
|
297
|
+
|
|
298
|
+
<!-- 子列表(Accordion 内容) -->
|
|
274
299
|
<ul
|
|
275
300
|
v-if="isExpanded"
|
|
276
301
|
class="list-unstyled body"
|
|
@@ -280,6 +305,7 @@ export default {
|
|
|
280
305
|
v-for="(child, idx) in group[childrenKey]"
|
|
281
306
|
:key="idx"
|
|
282
307
|
>
|
|
308
|
+
<!-- <template v-if="!(loginName && loginName !== 'admin' && child.label === '资源大盘')"></template> -->
|
|
283
309
|
<li
|
|
284
310
|
v-if="child.divider"
|
|
285
311
|
:key="idx"
|
|
@@ -325,21 +351,20 @@ export default {
|
|
|
325
351
|
position: relative;
|
|
326
352
|
cursor: pointer;
|
|
327
353
|
color: var(--body-text);
|
|
328
|
-
height:
|
|
329
|
-
outline: none;
|
|
354
|
+
height: 50px;
|
|
330
355
|
|
|
331
356
|
H6 {
|
|
332
357
|
color: var(--body-text);
|
|
333
358
|
user-select: none;
|
|
334
359
|
text-transform: none;
|
|
335
360
|
font-size: 14px;
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
361
|
+
.menuRouterLink {
|
|
362
|
+
color: var(--body-text);
|
|
363
|
+
user-select: none;
|
|
339
364
|
text-transform: none;
|
|
340
|
-
|
|
341
|
-
padding: 8px 0 8px 16px;
|
|
365
|
+
font-size: 14px;
|
|
342
366
|
}
|
|
367
|
+
}
|
|
343
368
|
|
|
344
369
|
> A {
|
|
345
370
|
display: block;
|
|
@@ -359,19 +384,6 @@ export default {
|
|
|
359
384
|
}
|
|
360
385
|
|
|
361
386
|
.accordion {
|
|
362
|
-
.accordion-item {
|
|
363
|
-
position: relative;
|
|
364
|
-
cursor: pointer;
|
|
365
|
-
color: var(--body-text);
|
|
366
|
-
height: 33px;
|
|
367
|
-
outline: none;
|
|
368
|
-
|
|
369
|
-
.toggle-accordion:focus-visible {
|
|
370
|
-
@include focus-outline;
|
|
371
|
-
outline-offset: -6px;
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
|
|
375
387
|
.header {
|
|
376
388
|
&:focus-visible {
|
|
377
389
|
h6 span {
|
|
@@ -379,30 +391,40 @@ export default {
|
|
|
379
391
|
outline-offset: 2px;
|
|
380
392
|
}
|
|
381
393
|
}
|
|
394
|
+
.toggle-accordion:focus-visible {
|
|
395
|
+
@include focus-outline;
|
|
396
|
+
outline-offset: -6px;
|
|
397
|
+
}
|
|
382
398
|
|
|
383
399
|
&.active {
|
|
384
|
-
color: var(--
|
|
385
|
-
background-color: var(--
|
|
400
|
+
color: var(--nav-hover-color);
|
|
401
|
+
background-color: var(--nav-active);
|
|
386
402
|
|
|
387
403
|
h6 {
|
|
388
|
-
padding: 8px 0 8px 16px;
|
|
389
|
-
font-weight: bold;
|
|
390
|
-
color: var(--
|
|
404
|
+
/* padding: 8px 0 8px 16px;
|
|
405
|
+
font-weight: bold; */
|
|
406
|
+
color: var(--nav-hover-color);
|
|
407
|
+
.menuRouterLink {
|
|
408
|
+
color: var(--nav-hover-color);
|
|
409
|
+
}
|
|
391
410
|
}
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
background-color: var(--primary-hover-bg);
|
|
411
|
+
I{
|
|
412
|
+
color: var(--nav-hover-color);
|
|
395
413
|
}
|
|
396
414
|
|
|
397
|
-
|
|
398
|
-
color: var(--primary-hover-
|
|
399
|
-
}
|
|
415
|
+
/* &:hover {
|
|
416
|
+
background-color: var(--primary-hover-bg);
|
|
417
|
+
} */
|
|
400
418
|
}
|
|
401
419
|
&:hover:not(.active) {
|
|
402
|
-
background-color: var(--nav-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
420
|
+
background-color: var(--nav-active);
|
|
421
|
+
color: var(--nav-hover-color);
|
|
422
|
+
h6{
|
|
423
|
+
color: var(--nav-hover-color);
|
|
424
|
+
.menuRouterLink {
|
|
425
|
+
color: var(--nav-hover-color);
|
|
426
|
+
}
|
|
427
|
+
}
|
|
406
428
|
}
|
|
407
429
|
}
|
|
408
430
|
}
|
|
@@ -410,83 +432,92 @@ export default {
|
|
|
410
432
|
.accordion {
|
|
411
433
|
&.depth-0 {
|
|
412
434
|
> .header {
|
|
435
|
+
/* padding: 8px 0; */
|
|
436
|
+
padding: 0px 0px 0px 20px;
|
|
437
|
+
height: 50px;
|
|
413
438
|
|
|
414
439
|
&.noHover {
|
|
415
440
|
cursor: default;
|
|
416
441
|
}
|
|
417
442
|
|
|
418
443
|
> H6 {
|
|
444
|
+
font-size: 14px;
|
|
419
445
|
text-transform: none;
|
|
420
|
-
|
|
446
|
+
line-height: 50px;
|
|
447
|
+
display: flex;
|
|
448
|
+
align-items: center;
|
|
421
449
|
}
|
|
422
|
-
}
|
|
423
450
|
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
451
|
+
> I {
|
|
452
|
+
position: absolute;
|
|
453
|
+
right: 0;
|
|
454
|
+
top: 0;
|
|
455
|
+
padding: 0px 20px 0px 0px;
|
|
456
|
+
user-select: none;
|
|
457
|
+
line-height: 50px;
|
|
458
|
+
}
|
|
430
459
|
}
|
|
431
460
|
|
|
432
461
|
> .body {
|
|
433
462
|
margin-left: 0;
|
|
434
463
|
}
|
|
435
|
-
|
|
436
|
-
&.group-highlight {
|
|
437
|
-
background: var(--nav-active);
|
|
438
|
-
}
|
|
439
464
|
}
|
|
440
465
|
|
|
441
466
|
&.depth-1 {
|
|
442
467
|
> .header {
|
|
443
|
-
|
|
468
|
+
line-height: 50px;
|
|
444
469
|
> H6 {
|
|
445
|
-
|
|
470
|
+
font-size: 13px;
|
|
471
|
+
line-height: 16px;
|
|
446
472
|
padding: 8px 0 7px 5px !important;
|
|
447
473
|
}
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
.accordion-item > I {
|
|
452
|
-
padding: 10px 7px 9px 7px !important;
|
|
474
|
+
> I {
|
|
475
|
+
padding: 9px 7px 8px 7px !important;
|
|
476
|
+
}
|
|
453
477
|
}
|
|
454
478
|
|
|
455
|
-
&:deep() .type-link > .label {
|
|
456
|
-
padding-left: 10px;
|
|
457
|
-
}
|
|
458
479
|
}
|
|
459
480
|
|
|
460
481
|
&:not(.depth-0) {
|
|
461
482
|
> .header {
|
|
483
|
+
padding-left: 30px;
|
|
484
|
+
line-height: 50px;
|
|
462
485
|
> H6 {
|
|
463
486
|
// Child groups that aren't linked themselves
|
|
464
487
|
display: inline-block;
|
|
465
488
|
padding: 5px 0 5px 5px;
|
|
466
489
|
}
|
|
467
|
-
}
|
|
468
490
|
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
491
|
+
> I {
|
|
492
|
+
position: absolute;
|
|
493
|
+
right: 0;
|
|
494
|
+
top: 0;
|
|
495
|
+
padding: 0px 20px 0px 0px !important;
|
|
496
|
+
user-select: none;
|
|
497
|
+
line-height: 50px;
|
|
498
|
+
}
|
|
474
499
|
}
|
|
475
500
|
}
|
|
476
501
|
}
|
|
477
502
|
|
|
478
503
|
.body :deep() > .child.router-link-active,
|
|
479
|
-
.
|
|
504
|
+
.header :deep() > .child.router-link-exact-active {
|
|
480
505
|
padding: 0;
|
|
481
506
|
|
|
482
507
|
A, A I {
|
|
483
|
-
color: var(--primary-hover-text);
|
|
508
|
+
/* color: var(--primary-hover-text); */
|
|
509
|
+
color: var(--nav-hover-color);
|
|
510
|
+
.menuRouterLink {
|
|
511
|
+
color: var(--nav-hover-color);
|
|
512
|
+
}
|
|
484
513
|
}
|
|
485
514
|
|
|
486
515
|
A {
|
|
487
|
-
color: var(--
|
|
488
|
-
|
|
489
|
-
|
|
516
|
+
background-color: var(--nav-active);
|
|
517
|
+
::v-deep .icon {
|
|
518
|
+
/* color: var(--body-text); */
|
|
519
|
+
color: var(--nav-hover-color);
|
|
520
|
+
}
|
|
490
521
|
}
|
|
491
522
|
}
|
|
492
523
|
|
|
@@ -495,9 +526,6 @@ export default {
|
|
|
495
526
|
border-left: solid 5px transparent;
|
|
496
527
|
line-height: 16px;
|
|
497
528
|
font-size: 14px;
|
|
498
|
-
padding-left: 24px;
|
|
499
|
-
display: flex;
|
|
500
|
-
justify-content: space-between;
|
|
501
529
|
}
|
|
502
530
|
|
|
503
531
|
A:focus {
|
|
@@ -507,8 +535,13 @@ export default {
|
|
|
507
535
|
&.root {
|
|
508
536
|
background: transparent;
|
|
509
537
|
A {
|
|
510
|
-
padding-left:
|
|
538
|
+
padding-left: 19px;
|
|
511
539
|
}
|
|
512
540
|
}
|
|
513
541
|
}
|
|
542
|
+
|
|
543
|
+
.init_icon{
|
|
544
|
+
font-size: 32px;
|
|
545
|
+
padding-left: 0px;
|
|
546
|
+
}
|
|
514
547
|
</style>
|