From 24c9c21daa4cf39075594d1d42137e6c325e3538 Mon Sep 17 00:00:00 2001 From: ulleo Date: Mon, 6 Nov 2023 17:31:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BB=AA=E8=A1=A8=E6=9D=BF=E7=BC=96?= =?UTF-8?q?=E8=BE=91=20=E5=B1=9E=E6=80=A7=E6=98=BE=E7=A4=BA=E5=AD=97?= =?UTF-8?q?=E4=BD=93=E5=A4=A7=E5=B0=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/suspensionSelector/index.vue | 7 ++++++ .../BackgroundColorSelector.vue | 8 +++++++ .../componentStyle/LegendSelector.vue | 8 +++++++ .../componentStyle/LegendSelectorAntV.vue | 8 +++++++ .../componentStyle/MarginSelector.vue | 8 +++++++ .../componentStyle/SplitSelector.vue | 8 +++++++ .../componentStyle/SplitSelectorAntV.vue | 14 ++++++++--- .../componentStyle/TitleSelector.vue | 8 +++++++ .../componentStyle/TitleSelectorAntV.vue | 8 +++++++ .../componentStyle/XAxisSelector.vue | 8 +++++++ .../componentStyle/XAxisSelectorAntV.vue | 8 +++++++ .../componentStyle/YAxisExtSelector.vue | 8 +++++++ .../componentStyle/YAxisExtSelectorAntV.vue | 8 +++++++ .../componentStyle/YAxisSelector.vue | 8 +++++++ .../componentStyle/YAxisSelectorAntV.vue | 8 +++++++ .../components/shapeAttr/ColorSelector.vue | 7 ++++++ .../components/shapeAttr/ColorSelectorExt.vue | 7 ++++++ .../components/shapeAttr/LabelSelector.vue | 8 +++++++ .../shapeAttr/LabelSelectorAntV.vue | 24 ++++++++++++------- .../components/shapeAttr/SizeSelector.vue | 8 +++++++ .../components/shapeAttr/SizeSelectorAntV.vue | 7 ++++++ .../components/shapeAttr/TooltipSelector.vue | 8 +++++++ .../shapeAttr/TooltipSelectorAntV.vue | 8 +++++++ .../chart/components/shapeAttr/TotalCfg.vue | 8 +++++++ .../src/views/chart/view/ChartStyle.vue | 10 ++++++++ .../panelStyle/BackgroundSelector.vue | 6 +++++ .../selector/BackgroundColorSelector.vue | 8 +++++++ .../src/components/selector/ColorSelector.vue | 12 ++++++++-- .../src/components/selector/LabelSelector.vue | 12 ++++++++-- .../selector/BackgroundColorSelector.vue | 8 +++++++ .../src/components/selector/ColorSelector.vue | 12 ++++++++-- .../src/components/selector/LabelSelector.vue | 8 +++++++ .../selector/SuspensionSelector.vue | 7 ++++++ .../src/components/selector/TitleSelector.vue | 7 ++++++ .../components/selector/TooltipSelector.vue | 7 ++++++ .../selector/BackgroundColorSelector.vue | 8 +++++++ .../src/components/selector/ColorSelector.vue | 8 +++++++ .../src/components/selector/LabelSelector.vue | 7 ++++++ .../selector/BackgroundColorSelector.vue | 8 +++++++ .../src/components/selector/ColorSelector.vue | 7 ++++++ .../src/components/selector/LabelSelector.vue | 7 ++++++ .../selector/BackgroundColorSelector.vue | 8 +++++++ .../src/components/selector/ColorSelector.vue | 7 ++++++ .../src/components/selector/LabelSelector.vue | 7 ++++++ .../components/selector/LegendSelector.vue | 8 +++++++ .../selector/BackgroundColorSelector.vue | 8 +++++++ .../selector/BaseMapStyleSelector.vue | 10 +++++++- .../src/components/selector/ColorSelector.vue | 12 ++++++++-- .../src/components/selector/LabelSelector.vue | 8 +++++++ .../components/selector/LegendSelector.vue | 8 +++++++ 50 files changed, 408 insertions(+), 20 deletions(-) diff --git a/core/frontend/src/components/suspensionSelector/index.vue b/core/frontend/src/components/suspensionSelector/index.vue index 7182735689..db59daae6f 100644 --- a/core/frontend/src/components/suspensionSelector/index.vue +++ b/core/frontend/src/components/suspensionSelector/index.vue @@ -107,6 +107,13 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + + .form-item ::v-deep .el-checkbox__label { + font-size: 12px; + } + .form-item ::v-deep .el-radio__label { + font-size: 12px; + } .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/BackgroundColorSelector.vue b/core/frontend/src/views/chart/components/componentStyle/BackgroundColorSelector.vue index e60ce961ee..b1569cd787 100644 --- a/core/frontend/src/views/chart/components/componentStyle/BackgroundColorSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/BackgroundColorSelector.vue @@ -117,6 +117,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/LegendSelector.vue b/core/frontend/src/views/chart/components/componentStyle/LegendSelector.vue index 2b2e2f2884..77803e4877 100644 --- a/core/frontend/src/views/chart/components/componentStyle/LegendSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/LegendSelector.vue @@ -221,6 +221,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/LegendSelectorAntV.vue b/core/frontend/src/views/chart/components/componentStyle/LegendSelectorAntV.vue index 60283bf7b1..15e96cd67d 100644 --- a/core/frontend/src/views/chart/components/componentStyle/LegendSelectorAntV.vue +++ b/core/frontend/src/views/chart/components/componentStyle/LegendSelectorAntV.vue @@ -225,6 +225,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/MarginSelector.vue b/core/frontend/src/views/chart/components/componentStyle/MarginSelector.vue index 1d0b4fa5aa..4ee8cfb10d 100644 --- a/core/frontend/src/views/chart/components/componentStyle/MarginSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/MarginSelector.vue @@ -251,6 +251,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/SplitSelector.vue b/core/frontend/src/views/chart/components/componentStyle/SplitSelector.vue index e2a9081e12..e2a41cd7fd 100644 --- a/core/frontend/src/views/chart/components/componentStyle/SplitSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/SplitSelector.vue @@ -247,6 +247,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/SplitSelectorAntV.vue b/core/frontend/src/views/chart/components/componentStyle/SplitSelectorAntV.vue index fc74ea5e81..7d71c56edd 100644 --- a/core/frontend/src/views/chart/components/componentStyle/SplitSelectorAntV.vue +++ b/core/frontend/src/views/chart/components/componentStyle/SplitSelectorAntV.vue @@ -147,9 +147,9 @@ export default { diff --git a/core/frontend/src/views/chart/components/componentStyle/XAxisSelector.vue b/core/frontend/src/views/chart/components/componentStyle/XAxisSelector.vue index 808b5946cf..e97120bb57 100644 --- a/core/frontend/src/views/chart/components/componentStyle/XAxisSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/XAxisSelector.vue @@ -478,6 +478,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/XAxisSelectorAntV.vue b/core/frontend/src/views/chart/components/componentStyle/XAxisSelectorAntV.vue index 7bd74c37d5..fd847622fc 100644 --- a/core/frontend/src/views/chart/components/componentStyle/XAxisSelectorAntV.vue +++ b/core/frontend/src/views/chart/components/componentStyle/XAxisSelectorAntV.vue @@ -465,6 +465,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelector.vue b/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelector.vue index d3ae81851e..3a1b25543f 100644 --- a/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelector.vue @@ -465,6 +465,14 @@ export default { font-size: 12px; line-height: 38px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .form-item ::v-deep .el-form-item__label{ font-size: 12px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelectorAntV.vue b/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelectorAntV.vue index df6eb7f1c8..517edd1340 100644 --- a/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelectorAntV.vue +++ b/core/frontend/src/views/chart/components/componentStyle/YAxisExtSelectorAntV.vue @@ -454,6 +454,14 @@ export default { justify-content: space-between; align-items: center; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .form-item-slider ::v-deep .el-form-item__label{ font-size: 12px; line-height: 38px; diff --git a/core/frontend/src/views/chart/components/componentStyle/YAxisSelector.vue b/core/frontend/src/views/chart/components/componentStyle/YAxisSelector.vue index e7b29e2b54..16ed4d09e2 100644 --- a/core/frontend/src/views/chart/components/componentStyle/YAxisSelector.vue +++ b/core/frontend/src/views/chart/components/componentStyle/YAxisSelector.vue @@ -471,6 +471,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/componentStyle/YAxisSelectorAntV.vue b/core/frontend/src/views/chart/components/componentStyle/YAxisSelectorAntV.vue index fd35a3ab1e..ac7dee48ac 100644 --- a/core/frontend/src/views/chart/components/componentStyle/YAxisSelectorAntV.vue +++ b/core/frontend/src/views/chart/components/componentStyle/YAxisSelectorAntV.vue @@ -461,6 +461,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/shapeAttr/ColorSelector.vue b/core/frontend/src/views/chart/components/shapeAttr/ColorSelector.vue index 4d8a4db119..df0d5314a6 100644 --- a/core/frontend/src/views/chart/components/shapeAttr/ColorSelector.vue +++ b/core/frontend/src/views/chart/components/shapeAttr/ColorSelector.vue @@ -641,6 +641,13 @@ export default { font-size: 12px; } +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item { padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/shapeAttr/ColorSelectorExt.vue b/core/frontend/src/views/chart/components/shapeAttr/ColorSelectorExt.vue index ca9f6b43cd..a80ed6ee23 100644 --- a/core/frontend/src/views/chart/components/shapeAttr/ColorSelectorExt.vue +++ b/core/frontend/src/views/chart/components/shapeAttr/ColorSelectorExt.vue @@ -361,6 +361,13 @@ export default { font-size: 12px; } +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item { padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/shapeAttr/LabelSelector.vue b/core/frontend/src/views/chart/components/shapeAttr/LabelSelector.vue index 5e3db7c8c8..1c82f1507a 100644 --- a/core/frontend/src/views/chart/components/shapeAttr/LabelSelector.vue +++ b/core/frontend/src/views/chart/components/shapeAttr/LabelSelector.vue @@ -330,6 +330,14 @@ export default { .form-item ::v-deep .el-form-item__label{ font-size: 12px; } + +.form-item ::v-deep .el-checkbox__label { + font-size: 12px; +} +.form-item ::v-deep .el-radio__label { + font-size: 12px; +} + .el-select-dropdown__item{ padding: 0 20px; } diff --git a/core/frontend/src/views/chart/components/shapeAttr/LabelSelectorAntV.vue b/core/frontend/src/views/chart/components/shapeAttr/LabelSelectorAntV.vue index b204c3a6d6..84bfcd6045 100644 --- a/core/frontend/src/views/chart/components/shapeAttr/LabelSelectorAntV.vue +++ b/core/frontend/src/views/chart/components/shapeAttr/LabelSelectorAntV.vue @@ -422,14 +422,14 @@ export default {