dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.61
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/csp/favicon.png +0 -0
- 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 +219 -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/iconsNew/demo.css +539 -0
- package/assets/iconsNew/demo.css:Zone.Identifier +0 -0
- package/assets/iconsNew/demo_index.html +303 -0
- package/assets/iconsNew/demo_index.html:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.css +43 -0
- package/assets/iconsNew/iconfont.css:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.js +1 -0
- package/assets/iconsNew/iconfont.js:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.json +44 -0
- package/assets/iconsNew/iconfont.json:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.ttf +0 -0
- package/assets/iconsNew/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff +0 -0
- package/assets/iconsNew/iconfont.woff2 +0 -0
- package/assets/iconsNew/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/iconsNew/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 +44 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logo.svg +47 -0
- package/assets/images/pl/dark/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 +83 -0
- package/assets/styles/app.scss +5 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_helpers.scss +1 -1
- 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/fonts/_icons.scss +3 -2
- package/assets/styles/global/_button.scss +44 -26
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +46 -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 +60 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +69 -46
- package/assets/styles/vendor/vue-select.scss +24 -10
- package/assets/translations/en-us.yaml +92 -4
- package/assets/translations/zh-hans.yaml +668 -206
- 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 +28 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +2 -2
- package/components/CodeMirror.vue +26 -10
- package/components/ConsumptionGauge.vue +24 -5
- package/components/ContainerResourceLimit.vue +2 -2
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +12 -10
- 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 +30 -27
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +5 -4
- package/components/ExplorerMembers.vue +28 -4
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +23 -4
- 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 +2 -2
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +53 -12
- package/components/RelatedResources.vue +3 -0
- 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/composables.ts +16 -1
- package/components/Resource/Detail/TitleBar/index.vue +125 -27
- package/components/ResourceDetail/Masthead/index.vue +1 -1
- package/components/ResourceDetail/Masthead/latest.vue +1 -1
- package/components/ResourceDetail/Masthead/legacy.vue +183 -39
- package/components/ResourceDetail/legacy.vue +47 -29
- package/components/ResourceList/Masthead.vue +222 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +40 -2
- package/components/SideNav.vue +74 -20
- package/components/SingleClusterInfo.vue +2 -1
- package/components/SortableTable/THead.vue +79 -4
- package/components/SortableTable/index.vue +1053 -464
- 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 +53 -30
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +51 -19
- package/components/auth/RoleDetailEdit.vue +69 -14
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +119 -0
- package/components/form/ArrayList.vue +177 -152
- package/components/form/ArrayListGrouped.vue +13 -3
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +5 -5
- package/components/form/ClusterAppearance.vue +4 -3
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Command.vue +4 -5
- package/components/form/Conditions.vue +15 -1
- package/components/form/Footer.vue +12 -8
- package/components/form/HealthCheck.vue +0 -2
- package/components/form/HookOption.vue +87 -58
- package/components/form/InputWithSelect.vue +8 -4
- package/components/form/KeyValue.vue +66 -8
- package/components/form/LabeledSelect.vue +216 -242
- package/components/form/Labels.vue +4 -4
- package/components/form/MatchExpressions.vue +28 -11
- package/components/form/Members/ClusterMembershipEditor.vue +1 -1
- package/components/form/Members/ClusterPermissionsEditor.vue +61 -43
- package/components/form/Members/MembershipEditor.vue +4 -4
- package/components/form/Members/ProjectMembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +62 -22
- package/components/form/Networking.vue +6 -9
- package/components/form/NodeAffinity.vue +29 -28
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +24 -25
- package/components/form/Probe.vue +15 -11
- package/components/form/ProjectMemberEditor.vue +66 -48
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +26 -23
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +38 -35
- package/components/form/ResourceSelector.vue +1 -1
- package/components/form/SecretSelector.vue +24 -23
- package/components/form/Security.vue +1 -3
- package/components/form/Select.vue +12 -3
- package/components/form/ServiceNameSelect.vue +2 -5
- package/components/form/ServicePorts.vue +149 -75
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/Tolerations.vue +13 -9
- package/components/form/UnitInput.vue +8 -3
- package/components/form/ValueFromResource.vue +110 -96
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/formatter/WorkloadHealthScale.vue +4 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +139 -99
- package/components/nav/Header.vue +138 -164
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +34 -36
- package/components/nav/TopLevelMenu.vue +62 -25
- package/components/nav/Type.vue +73 -43
- package/composables/useClickOutside.ts +1 -1
- package/config/menuRouteMap.js +10 -0
- package/config/private-label.js +14 -11
- package/config/product/auth.js +17 -7
- package/config/product/explorer.js +32 -10
- package/config/product/manager.js +28 -17
- package/config/product/settings.js +19 -9
- package/config/product/uiplugins.js +13 -10
- package/config/router/navigation-guards/index.js +61 -3
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/detail/node.vue +28 -23
- package/dialog/AddCustomBadgeDialog.vue +17 -9
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/RollbackWorkloadDialog.vue +1 -1
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/hpa-scaling-rule.vue +9 -6
- package/edit/autoscaling.horizontalpodautoscaler/index.vue +3 -1
- package/edit/autoscaling.horizontalpodautoscaler/metric-identifier.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/metric-object-reference.vue +7 -5
- package/edit/autoscaling.horizontalpodautoscaler/metric-target.vue +5 -3
- package/edit/autoscaling.horizontalpodautoscaler/metrics-row.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/resource-metric.vue +2 -2
- package/edit/configmap.vue +4 -0
- package/edit/logging-flow/index.vue +1 -2
- package/edit/logging.banzaicloud.io.output/providers/awsElasticsearch.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/azurestorage.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/cloudwatch.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/datadog.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/forward.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/gcs.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/gelf.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/kafka.vue +10 -10
- package/edit/logging.banzaicloud.io.output/providers/kinesisStream.vue +8 -8
- package/edit/logging.banzaicloud.io.output/providers/logdna.vue +17 -17
- package/edit/logging.banzaicloud.io.output/providers/logz.vue +7 -7
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/newrelic.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/opensearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/redis.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/s3.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +13 -13
- package/edit/logging.banzaicloud.io.output/providers/sumologic.vue +2 -2
- package/edit/logging.banzaicloud.io.output/providers/syslog.vue +54 -54
- 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 +50 -26
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/dingding.vue +32 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/message.vue +52 -0
- 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/snmp.vue +45 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/work.vue +31 -0
- 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/networking.k8s.io.ingress/Certificate.vue +14 -5
- package/edit/networking.k8s.io.ingress/DefaultBackend.vue +2 -2
- package/edit/networking.k8s.io.ingress/Rule.vue +5 -11
- package/edit/networking.k8s.io.ingress/RulePath.vue +105 -96
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +3 -3
- package/edit/networking.k8s.io.networkpolicy/PolicyRulePort.vue +4 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +12 -11
- package/edit/networking.k8s.io.networkpolicy/index.vue +1 -1
- package/edit/persistentvolume/index.vue +3 -1
- package/edit/persistentvolumeclaim.vue +2 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +1 -1
- package/edit/secret/index.vue +2 -2
- package/edit/service.vue +4 -1
- package/edit/storage.k8s.io.storageclass/index.vue +10 -8
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/aws-ebs.vue +34 -27
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/gce-pd.vue +15 -13
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/vsphere-volume.vue +41 -39
- package/edit/token.vue +31 -12
- package/edit/workload/Job.vue +31 -34
- package/edit/workload/Upgrading.vue +5 -5
- package/edit/workload/index.vue +22 -18
- package/edit/workload/storage/Mount.vue +1 -0
- package/edit/workload/storage/awsElasticBlockStore.vue +9 -7
- package/edit/workload/storage/azureDisk.vue +14 -10
- package/edit/workload/storage/azureFile.vue +9 -7
- package/edit/workload/storage/csi/index.vue +6 -9
- package/edit/workload/storage/emptyDir.vue +7 -5
- package/edit/workload/storage/gcePersistentDisk.vue +9 -7
- package/edit/workload/storage/hostPath.vue +7 -5
- package/edit/workload/storage/nfs.vue +8 -6
- package/edit/workload/storage/persistentVolumeClaim/index.vue +12 -10
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +20 -15
- package/edit/workload/storage/secret.vue +9 -6
- package/edit/workload/storage/vsphereVolume.vue +11 -7
- package/initialize/app-extended.js +7 -1
- package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +8 -6
- 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/mixins/create-edit-view/impl.js +10 -0
- package/models/provisioning.cattle.io.cluster.js +19 -18
- package/models/workload.js +2 -2
- package/package.json +1 -1
- package/pages/account/index.vue +93 -58
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +216 -51
- package/pages/auth/setup.vue +175 -33
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +83 -8
- package/pages/c/_cluster/explorer/ConfigBadge.vue +1 -1
- package/pages/c/_cluster/explorer/index.vue +2 -1
- package/pages/c/_cluster/explorer/tools/index.vue +6 -6
- 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 +119 -37
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.js +1 -1
- package/plugins/dashboard-store/actions.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 +25 -9
- 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 +22 -6
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +41 -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/build-pkg.sh +18 -23
- 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 +6 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +30 -2
- package/types/shell/index.d.ts +86 -97
- package/utils/error.js +109 -8
- package/utils/errorTranslate.json +1740 -0
- package/utils/errorTranslateNew.json +39 -0
- package/utils/roleFiltering.js +33 -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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
.main-layout {
|
|
3
3
|
grid-area: main;
|
|
4
4
|
overflow: auto;
|
|
5
|
-
|
|
5
|
+
overflow-x: hidden;
|
|
6
6
|
.outlet {
|
|
7
7
|
display: flex;
|
|
8
8
|
flex-direction: column;
|
|
@@ -36,8 +36,8 @@ HEADER {
|
|
|
36
36
|
|
|
37
37
|
.actions-container {
|
|
38
38
|
grid-area: actions;
|
|
39
|
-
margin-left:
|
|
40
|
-
align-self: center;
|
|
39
|
+
margin-left: 0px;
|
|
40
|
+
// align-self: center;
|
|
41
41
|
text-align: right;
|
|
42
42
|
|
|
43
43
|
&.align-start {
|
|
@@ -47,6 +47,10 @@ HEADER {
|
|
|
47
47
|
|
|
48
48
|
.role-multi-action {
|
|
49
49
|
padding: 0 $input-padding-sm;
|
|
50
|
+
background-color: var(--body-bg);
|
|
51
|
+
&:focus{
|
|
52
|
+
background-color: var(--body-bg);
|
|
53
|
+
}
|
|
50
54
|
}
|
|
51
55
|
}
|
|
52
56
|
|
|
@@ -69,6 +73,7 @@ HEADER {
|
|
|
69
73
|
display: grid;
|
|
70
74
|
position: relative;
|
|
71
75
|
flex: 1 1 auto;
|
|
76
|
+
overflow-y: auto;
|
|
72
77
|
min-height: 0px;
|
|
73
78
|
|
|
74
79
|
&.dashboard-padding-left {
|
|
@@ -9,17 +9,20 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.unlabeled-select:not(.in-input) {
|
|
12
|
+
// min-height: $unlabeled-input-height;
|
|
12
13
|
min-height: $unlabeled-input-height;
|
|
13
14
|
}
|
|
14
15
|
.col {
|
|
15
16
|
> .unlabeled-select:not(.taggable) {
|
|
16
|
-
padding-top: 5px;
|
|
17
|
+
// padding-top: 5px;
|
|
17
18
|
}
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
.labeled-select,
|
|
21
22
|
.unlabeled-select {
|
|
22
23
|
min-width: 75px;
|
|
24
|
+
min-height: 32px;
|
|
25
|
+
width: $input-width;
|
|
23
26
|
|
|
24
27
|
.required {
|
|
25
28
|
color: var(--error);
|
|
@@ -34,11 +37,6 @@
|
|
|
34
37
|
float: right;
|
|
35
38
|
}
|
|
36
39
|
|
|
37
|
-
&:focus-visible, &.focused {
|
|
38
|
-
@include focus-outline;
|
|
39
|
-
outline-offset: -1px;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
40
|
&.focused {
|
|
43
41
|
border-bottom-left-radius: 0;
|
|
44
42
|
border-bottom-right-radius: 0;
|
|
@@ -53,9 +51,14 @@
|
|
|
53
51
|
|
|
54
52
|
.vs__search {
|
|
55
53
|
background-color: transparent;
|
|
54
|
+
border: 0px;
|
|
56
55
|
}
|
|
57
56
|
|
|
58
|
-
.vs__dropdown-toggle
|
|
57
|
+
.vs__dropdown-toggle{
|
|
58
|
+
border: solid var(--border-width) var(--input-border);
|
|
59
|
+
// height: 30px;
|
|
60
|
+
}
|
|
61
|
+
// .vs__dropdown-toggle,
|
|
59
62
|
.vs__dropdown-toggle > * {
|
|
60
63
|
background-color: transparent;
|
|
61
64
|
border: transparent;
|
|
@@ -95,11 +98,14 @@
|
|
|
95
98
|
min-height: 30px;
|
|
96
99
|
|
|
97
100
|
.vs__selected {
|
|
98
|
-
min-height:
|
|
101
|
+
min-height: 20px;
|
|
99
102
|
padding: 0 7px;
|
|
103
|
+
height: 21px;
|
|
104
|
+
width: unset !important;
|
|
100
105
|
|
|
101
106
|
&:not(:only-child) {
|
|
102
|
-
margin-bottom:
|
|
107
|
+
margin-bottom: 2px;
|
|
108
|
+
margin-top: 2px;
|
|
103
109
|
}
|
|
104
110
|
}
|
|
105
111
|
}
|
|
@@ -121,10 +127,10 @@
|
|
|
121
127
|
}
|
|
122
128
|
|
|
123
129
|
&.disabled {
|
|
124
|
-
border: solid var(--border-width) var(--input-disabled-border);
|
|
125
|
-
|
|
130
|
+
// border: solid var(--border-width) var(--input-disabled-border);
|
|
126
131
|
.vs__dropdown-toggle, input {
|
|
127
132
|
cursor: not-allowed;
|
|
133
|
+
background-color: var(--input-disabled-bg);
|
|
128
134
|
}
|
|
129
135
|
|
|
130
136
|
.v-select {
|
|
@@ -134,6 +140,7 @@
|
|
|
134
140
|
|
|
135
141
|
.vs__dropdown-toggle, input {
|
|
136
142
|
cursor: not-allowed;
|
|
143
|
+
background-color: var(--input-disabled-bg);
|
|
137
144
|
|
|
138
145
|
.vs__selected {
|
|
139
146
|
color: var(--input-disabled-text);
|
|
@@ -147,7 +154,7 @@
|
|
|
147
154
|
background-color: var(--input-bg);
|
|
148
155
|
border-radius: var(--border-radius);
|
|
149
156
|
color: var(--input-text);
|
|
150
|
-
padding:
|
|
157
|
+
padding: 0px 0;
|
|
151
158
|
|
|
152
159
|
.vs--single .vs__selected-options {
|
|
153
160
|
flex-wrap: nowrap;
|
|
@@ -159,7 +166,7 @@
|
|
|
159
166
|
height: 100%;
|
|
160
167
|
|
|
161
168
|
.vs__dropdown-toggle {
|
|
162
|
-
height: 100%;
|
|
169
|
+
// height: 100%;
|
|
163
170
|
}
|
|
164
171
|
.vs__actions {
|
|
165
172
|
width: auto;
|
|
@@ -169,25 +176,26 @@
|
|
|
169
176
|
|
|
170
177
|
&:not(.view):not(.disabled) {
|
|
171
178
|
background-color: var(--input-bg);
|
|
172
|
-
border: solid var(--border-width) var(--input-border);
|
|
179
|
+
// border: solid var(--border-width) var(--input-border);
|
|
173
180
|
|
|
174
181
|
&:hover:not(.focused):not(.disabled) {
|
|
175
182
|
&,
|
|
176
183
|
.vs__dropdown-menu {
|
|
177
|
-
|
|
184
|
+
box-shadow: 0 4px 6px 0 var(--input-border-box-shadow);
|
|
185
|
+
// border: solid var(--border-width) var(--input-hover-border) !important;
|
|
178
186
|
}
|
|
179
187
|
}
|
|
180
188
|
|
|
181
189
|
&.focused {
|
|
182
190
|
&,
|
|
183
191
|
.vs__dropdown-menu {
|
|
184
|
-
border: solid var(--border-width) var(--outline) !important;
|
|
192
|
+
// border: solid var(--border-width) var(--outline) !important;
|
|
185
193
|
}
|
|
186
194
|
}
|
|
187
195
|
|
|
188
196
|
}
|
|
189
197
|
|
|
190
198
|
.labeled-tooltip .status-icon {
|
|
191
|
-
top: $input-padding-sm;
|
|
199
|
+
// top: $input-padding-sm;
|
|
192
200
|
}
|
|
193
201
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
thead th {
|
|
16
16
|
vertical-align: bottom;
|
|
17
|
-
border-bottom:
|
|
17
|
+
// border-bottom: 1px solid var(--border);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
tbody + tbody {
|
|
@@ -104,3 +104,9 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
.sortable-table tbody tr.group-row td:first-of-type {
|
|
110
|
+
background-color: var(--sortable-table-bg) !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
@@ -4,16 +4,32 @@
|
|
|
4
4
|
$center: calc(50% - #{$triangle-size});
|
|
5
5
|
|
|
6
6
|
display: block !important;
|
|
7
|
-
z-index: z-index('tooltip');
|
|
7
|
+
// z-index: z-index('tooltip');
|
|
8
8
|
max-width: 50vw;
|
|
9
9
|
|
|
10
10
|
.v-popper__inner {
|
|
11
11
|
background: var(--tooltip-bg);
|
|
12
|
+
box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
12
13
|
color: var(--tooltip-text);
|
|
13
|
-
border-radius:
|
|
14
|
+
border-radius: 2px;
|
|
14
15
|
padding: 8px;
|
|
15
16
|
}
|
|
16
17
|
|
|
18
|
+
|
|
19
|
+
// .tooltip-arrow {
|
|
20
|
+
// width: 0;
|
|
21
|
+
// height: 0;
|
|
22
|
+
// border: 0 solid transparent;
|
|
23
|
+
// position: absolute;
|
|
24
|
+
// z-index: 1;
|
|
25
|
+
|
|
26
|
+
// &:after {
|
|
27
|
+
// position: absolute;
|
|
28
|
+
// border: $triangle-inner-size solid transparent;
|
|
29
|
+
// content: '';
|
|
30
|
+
// }
|
|
31
|
+
// }
|
|
32
|
+
|
|
17
33
|
.v-popper__arrow-container {
|
|
18
34
|
border: 0 solid transparent;
|
|
19
35
|
z-index: 1;
|
|
@@ -27,7 +43,9 @@
|
|
|
27
43
|
.v-popper__arrow-container {
|
|
28
44
|
|
|
29
45
|
.v-popper__arrow-outer {
|
|
30
|
-
border-top-color: var(--tooltip-bg);
|
|
46
|
+
// border-top-color: var(--tooltip-bg);
|
|
47
|
+
// border-top-color: var(--tooltip-bg);
|
|
48
|
+
border-top-color:var(--border);
|
|
31
49
|
}
|
|
32
50
|
}
|
|
33
51
|
}
|
|
@@ -37,7 +55,7 @@
|
|
|
37
55
|
.v-popper__arrow-container {
|
|
38
56
|
|
|
39
57
|
.v-popper__arrow-outer {
|
|
40
|
-
border-bottom-color: var(--
|
|
58
|
+
border-bottom-color: var(--border);
|
|
41
59
|
background: transparent;
|
|
42
60
|
}
|
|
43
61
|
}
|
|
@@ -47,7 +65,7 @@
|
|
|
47
65
|
.v-popper__arrow-container {
|
|
48
66
|
|
|
49
67
|
.v-popper__arrow-outer {
|
|
50
|
-
border-right-color: var(--
|
|
68
|
+
border-right-color: var(--border);
|
|
51
69
|
}
|
|
52
70
|
}
|
|
53
71
|
}
|
|
@@ -56,7 +74,7 @@
|
|
|
56
74
|
.v-popper__arrow-container {
|
|
57
75
|
|
|
58
76
|
.v-popper__arrow-outer {
|
|
59
|
-
border-left-color: var(--
|
|
77
|
+
border-left-color: var(--border);
|
|
60
78
|
}
|
|
61
79
|
}
|
|
62
80
|
}
|
|
@@ -105,13 +123,14 @@
|
|
|
105
123
|
.v-popper__popper {
|
|
106
124
|
$color: var(--popover-bg);
|
|
107
125
|
border: 1px solid var(--border);
|
|
108
|
-
border-radius:
|
|
126
|
+
border-radius: 2px;
|
|
109
127
|
|
|
110
128
|
.v-popper__inner {
|
|
129
|
+
border-radius: 2px;
|
|
111
130
|
background: $color;
|
|
112
131
|
color: var(--popover-text);
|
|
113
132
|
padding: 10px;
|
|
114
|
-
border-radius:
|
|
133
|
+
border-radius: 0px;
|
|
115
134
|
border: none;
|
|
116
135
|
|
|
117
136
|
a {
|
|
@@ -128,7 +147,9 @@
|
|
|
128
147
|
}
|
|
129
148
|
|
|
130
149
|
.v-popper__popper.v-popper--theme-dropdown {
|
|
150
|
+
border-radius: 0px;
|
|
131
151
|
z-index: z-index('tooltip');
|
|
152
|
+
border: 1px solid #d9d9d9 !important;
|
|
132
153
|
|
|
133
154
|
&.containerLogsDropdown, &.fleet-summary-tooltip{
|
|
134
155
|
.v-popper__arrow-container {
|
|
@@ -136,6 +157,10 @@
|
|
|
136
157
|
}
|
|
137
158
|
}
|
|
138
159
|
}
|
|
160
|
+
.v-popper__popper .v-popper__arrow-container {
|
|
161
|
+
display: none;
|
|
162
|
+
}
|
|
163
|
+
|
|
139
164
|
|
|
140
165
|
.v-popper {
|
|
141
166
|
display: inline;
|
|
@@ -162,4 +187,31 @@
|
|
|
162
187
|
//icon tooltip
|
|
163
188
|
.icon-info.v-popper--has-tooltip {
|
|
164
189
|
font-size: 14px;
|
|
190
|
+
color: var(--primary);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// .v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner, .v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{
|
|
194
|
+
// left: -3px;
|
|
195
|
+
// }
|
|
196
|
+
.v-popper__popper.v-popper--theme-tooltip .v-popper__arrow-container .v-popper__arrow-inner{
|
|
197
|
+
border: 7px solid #fff;
|
|
198
|
+
}
|
|
199
|
+
.v-popper__arrow-inner{
|
|
200
|
+
visibility: visible
|
|
165
201
|
}
|
|
202
|
+
|
|
203
|
+
.v-popper__popper{
|
|
204
|
+
|
|
205
|
+
border: 0px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
.custom-dropdown{
|
|
210
|
+
.v-popper__inner {
|
|
211
|
+
padding: 0px;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// .v-popper__arrow-container {
|
|
216
|
+
// display: none;
|
|
217
|
+
// }
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
|
|
39
39
|
--slate: #{$slate};
|
|
40
40
|
|
|
41
|
+
--lightest : #{rgba($lightest, 1)};
|
|
42
|
+
|
|
41
43
|
--default : #{$dark};
|
|
42
44
|
--default-text : #{$light};
|
|
43
45
|
--default-hover-bg : #{darken($dark, 10%)};
|
|
@@ -97,6 +99,7 @@
|
|
|
97
99
|
--modal-border : #{$medium};
|
|
98
100
|
--subtle-overlay-bg : #{rgba($darkest, 0.75)};
|
|
99
101
|
--overlay-bg : #{rgba($darkest, 0.75)};
|
|
102
|
+
--overlay-model-bg : rgba($darkest, 0.45);
|
|
100
103
|
--shadow : #{rgba($darkest, 0.9)};
|
|
101
104
|
|
|
102
105
|
--checkbox-tick : #{$lightest};
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
// Local variables for reused colors
|
|
2
2
|
//light main text
|
|
3
|
-
$darkest : #
|
|
3
|
+
$darkest : #333;
|
|
4
4
|
|
|
5
5
|
//light secondary
|
|
6
|
-
$darker : #
|
|
6
|
+
$darker : #333;
|
|
7
7
|
|
|
8
8
|
//light disabled
|
|
9
|
-
$dark : #
|
|
9
|
+
$dark : #ffffff;
|
|
10
|
+
|
|
11
|
+
$scroll_dark: #8b8b8b;
|
|
10
12
|
|
|
11
13
|
//light border and buttons
|
|
12
|
-
$medium : #
|
|
14
|
+
$medium : #d7d7d7;
|
|
13
15
|
|
|
14
|
-
//light inputs
|
|
15
|
-
$light : #
|
|
16
|
+
//light inputs
|
|
17
|
+
$light : #E8F4FF;
|
|
16
18
|
|
|
17
19
|
//light sidebar and box
|
|
18
20
|
$lighter : #F4F5FA;
|
|
@@ -21,17 +23,20 @@ $lighter : #F4F5FA;
|
|
|
21
23
|
$lightest : #FFFFFF;
|
|
22
24
|
|
|
23
25
|
//color for items that are not enabled
|
|
24
|
-
$disabled : $medium;
|
|
26
|
+
// $disabled : $medium;
|
|
27
|
+
$disabled : #f5f5f5;
|
|
25
28
|
|
|
26
|
-
$primary : #
|
|
29
|
+
$primary : #1890FF;
|
|
27
30
|
$secondary : $darker;
|
|
28
|
-
$link : #3D98D3;
|
|
31
|
+
// $link : #3D98D3;
|
|
32
|
+
$link : #1890FF;
|
|
29
33
|
|
|
30
34
|
// Status colors
|
|
31
|
-
$success : #
|
|
35
|
+
$success : #1890FF;
|
|
32
36
|
$warning : #DAC342;
|
|
33
37
|
$error : #F64747;
|
|
34
|
-
$
|
|
38
|
+
// $error : #A30014;
|
|
39
|
+
$info : #1890FF;
|
|
35
40
|
|
|
36
41
|
$contrasted-dark: $darkest !default;
|
|
37
42
|
$contrasted-light: $lightest !default;
|
|
@@ -40,20 +45,20 @@ $contrasted-light: $lightest !default;
|
|
|
40
45
|
// The terminal alway uses a light background, so okay to use a fixed color
|
|
41
46
|
$selected: rgba(#3D98D3, .5);
|
|
42
47
|
|
|
43
|
-
$drag-over: #
|
|
48
|
+
$drag-over: #E8F4FF;
|
|
44
49
|
|
|
45
50
|
BODY, .theme-light {
|
|
46
51
|
|
|
47
52
|
--primary : #{$primary};
|
|
48
53
|
--primary-text : #{contrast-color($primary)};
|
|
49
|
-
--primary-hover-bg : #{darken($primary, 10%)};
|
|
54
|
+
// --primary-hover-bg : #{darken($primary, 10%)};
|
|
55
|
+
--primary-hover-bg : #{$primary};
|
|
50
56
|
--primary-hover-text : #{saturate($lightest, 20%)};
|
|
51
57
|
--primary-active-bg : #{darken($primary, 25%)};
|
|
52
58
|
--primary-active-text : #{contrast-color(darken($primary, 25%))};
|
|
53
59
|
--primary-border : #{$primary};
|
|
54
60
|
--primary-banner-bg : #{rgba($primary, 0.15)};
|
|
55
61
|
--primary-light-bg : #{rgba($primary, 0.05)};
|
|
56
|
-
--primary-keyboard-focus : hsl(from var(--primary) h s calc(l - 10));
|
|
57
62
|
|
|
58
63
|
|
|
59
64
|
.text-primary {
|
|
@@ -66,7 +71,8 @@ BODY, .theme-light {
|
|
|
66
71
|
|
|
67
72
|
&.btn:hover {
|
|
68
73
|
color: var(--primary-hover-text);
|
|
69
|
-
background: var(--primary-hover-bg);
|
|
74
|
+
// background: var(--primary-hover-bg);
|
|
75
|
+
box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2) !important;
|
|
70
76
|
transition: all 0.3s ease;
|
|
71
77
|
}
|
|
72
78
|
|
|
@@ -86,15 +92,12 @@ BODY, .theme-light {
|
|
|
86
92
|
--link-border : #{$link};
|
|
87
93
|
--link-banner-bg : #{rgba($link, 0.15)};
|
|
88
94
|
--link-light-bg : #{rgba($link, 0.05)};
|
|
95
|
+
|
|
89
96
|
|
|
90
|
-
|
|
91
|
-
|
|
97
|
+
|
|
92
98
|
.text-link {
|
|
93
99
|
color: var(--link) !important;
|
|
94
100
|
|
|
95
|
-
&.disabled {
|
|
96
|
-
color: var(--disabled-text) !important;
|
|
97
|
-
}
|
|
98
101
|
}
|
|
99
102
|
|
|
100
103
|
.secondary-text-link {
|
|
@@ -122,6 +125,8 @@ BODY, .theme-light {
|
|
|
122
125
|
}
|
|
123
126
|
}
|
|
124
127
|
|
|
128
|
+
--lightest : #{rgba($lightest, 1)};
|
|
129
|
+
|
|
125
130
|
--default : #{$light};
|
|
126
131
|
--default-text : #{contrast-color($light)};
|
|
127
132
|
--default-hover-bg : #{darken($light, 10%)};
|
|
@@ -155,7 +160,7 @@ BODY, .theme-light {
|
|
|
155
160
|
}
|
|
156
161
|
}
|
|
157
162
|
|
|
158
|
-
--muted : #
|
|
163
|
+
--muted : #A8ABB2;
|
|
159
164
|
--deemphasized : #717179;
|
|
160
165
|
|
|
161
166
|
.text-muted {
|
|
@@ -181,7 +186,8 @@ BODY, .theme-light {
|
|
|
181
186
|
}
|
|
182
187
|
|
|
183
188
|
.bg-darker {
|
|
184
|
-
background-color: var(--darker);
|
|
189
|
+
// background-color: var(--darker);
|
|
190
|
+
background-color: #dd0c17;
|
|
185
191
|
color: var(--darker-text);
|
|
186
192
|
|
|
187
193
|
&.btn:hover {
|
|
@@ -199,6 +205,7 @@ BODY, .theme-light {
|
|
|
199
205
|
|
|
200
206
|
|
|
201
207
|
--success : #{$success};
|
|
208
|
+
--success-new : #{$info};
|
|
202
209
|
--success-text : #{contrast-color($success)};
|
|
203
210
|
--success-hover-bg : #{darken($success, 10%)};
|
|
204
211
|
--success-hover-text : #{saturate($lightest, 20%)};
|
|
@@ -261,9 +268,9 @@ BODY, .theme-light {
|
|
|
261
268
|
|
|
262
269
|
|
|
263
270
|
--warning : #{$warning};
|
|
264
|
-
--warning-text : #
|
|
271
|
+
--warning-text : #fff;
|
|
265
272
|
--warning-hover-bg : #{darken($warning, 10%)};
|
|
266
|
-
--warning-hover-text : #
|
|
273
|
+
--warning-hover-text : #fff;
|
|
267
274
|
--warning-active-bg : #{darken($warning, 25%)};
|
|
268
275
|
--warning-active-text : #{contrast-color(darken($warning, 25%))};
|
|
269
276
|
--warning-border : #{$warning};
|
|
@@ -271,7 +278,9 @@ BODY, .theme-light {
|
|
|
271
278
|
--warning-light-bg : #{rgba($warning, 0.05)};
|
|
272
279
|
|
|
273
280
|
.text-warning {
|
|
274
|
-
color: var(--
|
|
281
|
+
// color: var(--error) !important;
|
|
282
|
+
color: #A30014 !important;
|
|
283
|
+
line-height: 20px;
|
|
275
284
|
}
|
|
276
285
|
|
|
277
286
|
.bg-warning {
|
|
@@ -304,6 +313,7 @@ BODY, .theme-light {
|
|
|
304
313
|
|
|
305
314
|
.text-error {
|
|
306
315
|
color: var(--error) !important;
|
|
316
|
+
line-height: 16px;
|
|
307
317
|
}
|
|
308
318
|
|
|
309
319
|
.bg-error {
|
|
@@ -343,7 +353,7 @@ BODY, .theme-light {
|
|
|
343
353
|
|
|
344
354
|
&.btn:hover {
|
|
345
355
|
color: var(--disabled-hover-text);
|
|
346
|
-
background:
|
|
356
|
+
background-color: #ccc !important;
|
|
347
357
|
transition: all 0.3s ease;
|
|
348
358
|
}
|
|
349
359
|
|
|
@@ -352,11 +362,11 @@ BODY, .theme-light {
|
|
|
352
362
|
background: var(--disabled-active-bg);
|
|
353
363
|
}
|
|
354
364
|
}
|
|
355
|
-
|
|
365
|
+
|
|
356
366
|
|
|
357
367
|
--body-bg : #{$lightest};
|
|
358
368
|
--body-text : #{$darkest};
|
|
359
|
-
--scrollbar-thumb : #{$
|
|
369
|
+
--scrollbar-thumb : #{$scroll_dark};
|
|
360
370
|
--scrollbar-thumb-dropdown : #{$lighter};
|
|
361
371
|
--scrollbar-track : transparent;
|
|
362
372
|
|
|
@@ -368,17 +378,18 @@ BODY, .theme-light {
|
|
|
368
378
|
--header-btn-text : #{$darkest};
|
|
369
379
|
--header-btn-text-hover : #{$lightest};
|
|
370
380
|
--header-input-text : #{$darkest};
|
|
371
|
-
--header-height :
|
|
381
|
+
--header-height : 50px;
|
|
372
382
|
--header-border : #{$medium};
|
|
373
383
|
--header-border-size : 1px;
|
|
374
|
-
--nav-width :
|
|
384
|
+
--nav-width : 205px;
|
|
375
385
|
--nav-bg : #{$lightest};
|
|
376
386
|
--nav-active : #{$light};
|
|
377
387
|
--nav-hover : #{$medium};
|
|
388
|
+
--nav-hover-color :#1890FF;
|
|
378
389
|
--nav-expander-hover : #{darken($medium, 10%)};
|
|
390
|
+
--nav-icon-badge-bg : #{$dark};
|
|
379
391
|
--nav-border : #{$medium};
|
|
380
392
|
--nav-border-size : 1px;
|
|
381
|
-
--nav-icon-badge-bg : #{$lightest};
|
|
382
393
|
|
|
383
394
|
--footer-bg : transparent;
|
|
384
395
|
--footer-height : 0px;
|
|
@@ -390,15 +401,17 @@ BODY, .theme-light {
|
|
|
390
401
|
--topmost-light-hover : #{$light};
|
|
391
402
|
|
|
392
403
|
--disabled-bg : #{$disabled};
|
|
393
|
-
--disabled-text : #{$secondary};
|
|
404
|
+
// --disabled-text : #{$secondary};
|
|
405
|
+
--disabled-text : #b8b8b8;;
|
|
394
406
|
--box-bg : #{$lighter};
|
|
395
407
|
--subtle-border : #{$medium};
|
|
396
408
|
--border : #{$medium};
|
|
397
409
|
--border-width : 1px;
|
|
398
|
-
--border-radius :
|
|
410
|
+
--border-radius : 2px;
|
|
399
411
|
--border-radius-md : 6px;
|
|
400
412
|
--border-radius-lg : 8px;
|
|
401
|
-
--outline : var(--primary);
|
|
413
|
+
// --outline : var(--primary);
|
|
414
|
+
--outline : #d9d9d9;
|
|
402
415
|
--outline-width : 1px;
|
|
403
416
|
|
|
404
417
|
--accent-btn : var(--primary-banner-bg);
|
|
@@ -409,6 +422,8 @@ BODY, .theme-light {
|
|
|
409
422
|
--modal-border : #{$dark};
|
|
410
423
|
--subtle-overlay-bg : #{rgba($lighter, 0.75)};
|
|
411
424
|
--overlay-bg : rgba(38, 42, 64, 0.35);
|
|
425
|
+
--overlay-model-bg : rgba(0, 0, 0, 0.45);
|
|
426
|
+
--overlay-model-bg : rgba(0, 0, 0, 0.45);
|
|
412
427
|
--shadow : #{rgba($medium, 0.85)};
|
|
413
428
|
|
|
414
429
|
--checkbox-tick : #{$lightest};
|
|
@@ -424,13 +439,16 @@ BODY, .theme-light {
|
|
|
424
439
|
--dropdown-border : #{$medium};
|
|
425
440
|
--dropdown-divider : #{$medium};
|
|
426
441
|
--dropdown-text : #{$darkest};
|
|
427
|
-
--dropdown-active-text : #{$lightest};
|
|
428
|
-
--dropdown-active-
|
|
429
|
-
--dropdown-
|
|
430
|
-
--dropdown-
|
|
442
|
+
// --dropdown-active-text : #{$lightest};
|
|
443
|
+
--dropdown-active-text : #333;
|
|
444
|
+
// --dropdown-active-bg : #{$dark};
|
|
445
|
+
--dropdown-active-bg : #f7f9fa;
|
|
446
|
+
// --dropdown-hover-text : #{$lightest};
|
|
447
|
+
--dropdown-hover-text : #333;
|
|
448
|
+
// --dropdown-hover-bg : var(--link);
|
|
449
|
+
--dropdown-hover-bg : #f7f9fa;
|
|
431
450
|
--dropdown-disabled-text : var(--muted);
|
|
432
451
|
--dropdown-disabled-bg : #{$disabled};
|
|
433
|
-
--dropdown-group-text : #{$darker};
|
|
434
452
|
--dropdown-highlight-text : var(--link);
|
|
435
453
|
|
|
436
454
|
--notification-unread-bg : var(--primary-banner-bg);
|
|
@@ -444,17 +462,18 @@ BODY, .theme-light {
|
|
|
444
462
|
--input-label : #{$secondary};
|
|
445
463
|
--input-placeholder : #{darken($disabled, 10%)};
|
|
446
464
|
--input-border : var(--border);
|
|
465
|
+
--input-border-box-shadow : rgba(0,0,0,.2);
|
|
447
466
|
--input-bg : var(--body-bg);
|
|
448
467
|
--input-bg-accent : #{darken($light, 2%)};
|
|
449
468
|
--input-hover-bg : var(--box-bg);
|
|
450
469
|
--input-focus-bg : var(--box-bg);
|
|
451
470
|
--input-disabled-text : #{darken($disabled, 60%)};
|
|
452
471
|
--input-disabled-label : #{darken($disabled, 40%)};
|
|
453
|
-
--input-disabled-bg : #
|
|
472
|
+
--input-disabled-bg : #f5f5f5;
|
|
454
473
|
--input-disabled-border : #{darken($medium, 10%)};
|
|
455
474
|
--input-disabled-placeholder : #{darken($medium, 15%)};
|
|
456
475
|
--input-addon-bg : #{$darker};
|
|
457
|
-
--input-hover-border : #
|
|
476
|
+
--input-hover-border : #d7d7d7;
|
|
458
477
|
|
|
459
478
|
--label-secondary : #{$darker};
|
|
460
479
|
|
|
@@ -463,24 +482,28 @@ BODY, .theme-light {
|
|
|
463
482
|
|
|
464
483
|
--sortable-table-bg : #{darken($lightest, 5%)};
|
|
465
484
|
--sortable-table-row-bg : #{$lightest};
|
|
466
|
-
--sortable-table-header-bg : #{$lighter};
|
|
485
|
+
// --sortable-table-header-bg : #{$lighter};
|
|
486
|
+
--sortable-table-header-bg : #f8f9fa;
|
|
467
487
|
--sortable-table-top-divider : var(--border);
|
|
468
488
|
--sortable-table-body-divider : #{$medium};
|
|
469
489
|
|
|
470
|
-
--sortable-table-hover-bg : #{$lighter};
|
|
490
|
+
// --sortable-table-hover-bg : #{$lighter};
|
|
491
|
+
--sortable-table-hover-bg :#ebf4fa;
|
|
471
492
|
//--sortable-table-selected-bg : #{rgba($primary, 0.02)};
|
|
472
493
|
|
|
473
|
-
--sortable-table-selected-bg : var(--primary-light-bg);
|
|
494
|
+
// --sortable-table-selected-bg : var(--primary-light-bg);
|
|
495
|
+
--sortable-table-selected-bg : #ebf4fa;
|
|
474
496
|
--sortable-table-group-label : #{$secondary};
|
|
475
497
|
|
|
476
498
|
--tag-primary : #{$darkest};
|
|
477
|
-
--tag-bg : #
|
|
499
|
+
--tag-bg : #{$medium};
|
|
478
500
|
|
|
479
501
|
--popover-bg : var(--body-bg);
|
|
480
502
|
--popover-border : var(--border);
|
|
481
503
|
--popover-text : var(--body-text);
|
|
482
504
|
--popover-border-radius : var(--border-radius);
|
|
483
|
-
--tooltip-bg : #{$medium};
|
|
505
|
+
// --tooltip-bg : #{$medium};
|
|
506
|
+
--tooltip-bg : #fff;
|
|
484
507
|
--tooltip-border : var(--tag-primary);
|
|
485
508
|
--tooltip-text : var(--tag-primary);
|
|
486
509
|
--tooltip-bg-warning : #{rgba($warning, 0.8)};
|