@mc-markets/ui 1.0.90 → 1.0.92
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/README.md +243 -40
- package/USAGE_GUIDE.md +339 -0
- package/dist/404.html +22 -22
- package/dist/components/Tag/Tag.vue.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10 -11
- package/dist/index.mjs.map +1 -1
- package/dist/resolver.d.ts +26 -0
- package/dist/resolver.d.ts.map +1 -0
- package/dist/style.css +1 -1
- package/package.json +8 -5
- package/packages/components/Alert/Alert.vue +139 -139
- package/packages/components/Banner/Banner.vue +299 -299
- package/packages/components/Breadcrumb/Breadcrumb.vue +113 -113
- package/packages/components/Breadcrumb/BreadcrumbSeparator.vue +31 -31
- package/packages/components/Button/Button.vue +17 -17
- package/packages/components/DatePicker/DatePicker.vue +85 -85
- package/packages/components/Dialog/Dialog.vue +61 -61
- package/packages/components/Empty/Empty.vue +73 -73
- package/packages/components/Form/Form.vue +30 -30
- package/packages/components/FormItem/FormItem.vue +19 -19
- package/packages/components/Icon/Icon.vue +210 -210
- package/packages/components/Input/Input.vue +15 -15
- package/packages/components/Message/Message.vue +503 -503
- package/packages/components/NotifiMessage/NotifiMessage.vue +293 -293
- package/packages/components/Notification/Notification.vue +19 -19
- package/packages/components/Option/Option.vue +13 -13
- package/packages/components/OptionGroup/OptionGroup.vue +13 -13
- package/packages/components/Pagination/Pagination.vue +61 -61
- package/packages/components/Radio/Radio.vue +67 -67
- package/packages/components/RadioButton/RadioButton.vue +110 -110
- package/packages/components/RadioGroup/RadioGroup.vue +155 -155
- package/packages/components/Select/Select.vue +22 -22
- package/packages/components/Switch/Switch.vue +47 -47
- package/packages/components/TabCard/TabCard.vue +107 -107
- package/packages/components/TabCard/TabCardItem.vue +105 -105
- package/packages/components/Table/Table.vue +17 -17
- package/packages/components/Table/TableColumn.vue +20 -20
- package/packages/components/Tabs/TabPane.vue +79 -79
- package/packages/components/Tabs/Tabs.vue +267 -267
- package/packages/components/Tag/Tag.vue +208 -211
- package/packages/components/Tooltip/Tooltip.vue +58 -58
- package/packages/hooks/useClassName.js +23 -23
- package/packages/resolver.js +179 -0
- package/packages/styles/README.md +129 -129
- package/packages/styles/colorfont/iconfont.css +1 -0
- package/packages/styles/components/button.scss +121 -121
- package/packages/styles/components/checkbox.scss +18 -18
- package/packages/styles/components/dialog.scss +47 -47
- package/packages/styles/components/form.scss +18 -18
- package/packages/styles/components/input.scss +14 -14
- package/packages/styles/components/select.scss +62 -62
- package/packages/styles/components/table.scss +37 -37
- package/packages/styles/components/tabs.scss +76 -76
- package/packages/styles/components/tag.scss +142 -142
- package/packages/styles/font/iconfont.scss +363 -363
- package/packages/styles/index.scss +94 -94
- package/packages/styles/variables/border-mode.css +6 -6
- package/packages/styles/variables/color-modes-dark.css +143 -143
- package/packages/styles/variables/index.scss +5 -5
- package/packages/styles/variables/primitives-style.css +112 -112
- package/packages/styles/variables/radius-mode.css +14 -14
- package/packages/styles/variables/spacing-mode.css +20 -20
- package/packages/styles/variables/typography-desktop.css +40 -40
- package/packages/styles/variables/typography-mobile.css +40 -40
- package/packages/utils/classNames.js +23 -23
- package/packages/utils/styleUtils.js +105 -105
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<el-pagination v-bind="$attrs" class="m-pagination">
|
|
3
|
-
<template v-for="(_, name) in $slots" :key="name" #[name]>
|
|
4
|
-
<slot :name="name" />
|
|
5
|
-
</template>
|
|
6
|
-
</el-pagination>
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
<script setup>
|
|
10
|
-
defineOptions({
|
|
11
|
-
name: "MPagination",
|
|
12
|
-
});
|
|
13
|
-
</script>
|
|
14
|
-
|
|
15
|
-
<style lang="scss">
|
|
16
|
-
.m-pagination {
|
|
17
|
-
--el-border-color-hover: var(--border-tertiary) !important;
|
|
18
|
-
--el-pagination-button-bg-color: var(--bg-tertiary-hover) !important;
|
|
19
|
-
&.is-background .el-pager li.is-active {
|
|
20
|
-
color: var(--text-quaternary) !important;
|
|
21
|
-
}
|
|
22
|
-
.el-pager li{
|
|
23
|
-
border-radius: var(--xs);
|
|
24
|
-
border: 1px solid transparent;
|
|
25
|
-
&:hover {
|
|
26
|
-
border: 1px solid var(--border-tertiary);
|
|
27
|
-
color: var(--text-primary);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
.el-select .el-select__wrapper {
|
|
31
|
-
width: 112px;
|
|
32
|
-
min-height: 32px;
|
|
33
|
-
padding: 5px 8px;
|
|
34
|
-
border-radius: var(--xs);
|
|
35
|
-
background-color: var(--bg-tertiary-hover);
|
|
36
|
-
}
|
|
37
|
-
.el-input .el-input__wrapper {
|
|
38
|
-
height: 30px;
|
|
39
|
-
border-radius: var(--xs);
|
|
40
|
-
background-color: var(--bg-tertiary-hover);
|
|
41
|
-
}
|
|
42
|
-
.el-pagination.is-background {
|
|
43
|
-
background-color: var(--bg-tertiary-hover);
|
|
44
|
-
}
|
|
45
|
-
.el-pager .number {
|
|
46
|
-
font-size: var(--font-size-text-sm);
|
|
47
|
-
font-weight: 500;
|
|
48
|
-
}
|
|
49
|
-
.btn-prev,
|
|
50
|
-
.btn-next {
|
|
51
|
-
&:disabled {
|
|
52
|
-
background-color: transparent !important;
|
|
53
|
-
}
|
|
54
|
-
&:hover:not(:disabled) {
|
|
55
|
-
border: 1px solid var(--border-tertiary);
|
|
56
|
-
color: var(--text-primary);
|
|
57
|
-
}
|
|
58
|
-
background-color: transparent !important;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<el-pagination v-bind="$attrs" class="m-pagination">
|
|
3
|
+
<template v-for="(_, name) in $slots" :key="name" #[name]>
|
|
4
|
+
<slot :name="name" />
|
|
5
|
+
</template>
|
|
6
|
+
</el-pagination>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup>
|
|
10
|
+
defineOptions({
|
|
11
|
+
name: "MPagination",
|
|
12
|
+
});
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<style lang="scss">
|
|
16
|
+
.m-pagination {
|
|
17
|
+
--el-border-color-hover: var(--border-tertiary) !important;
|
|
18
|
+
--el-pagination-button-bg-color: var(--bg-tertiary-hover) !important;
|
|
19
|
+
&.is-background .el-pager li.is-active {
|
|
20
|
+
color: var(--text-quaternary) !important;
|
|
21
|
+
}
|
|
22
|
+
.el-pager li{
|
|
23
|
+
border-radius: var(--xs);
|
|
24
|
+
border: 1px solid transparent;
|
|
25
|
+
&:hover {
|
|
26
|
+
border: 1px solid var(--border-tertiary);
|
|
27
|
+
color: var(--text-primary);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.el-select .el-select__wrapper {
|
|
31
|
+
width: 112px;
|
|
32
|
+
min-height: 32px;
|
|
33
|
+
padding: 5px 8px;
|
|
34
|
+
border-radius: var(--xs);
|
|
35
|
+
background-color: var(--bg-tertiary-hover);
|
|
36
|
+
}
|
|
37
|
+
.el-input .el-input__wrapper {
|
|
38
|
+
height: 30px;
|
|
39
|
+
border-radius: var(--xs);
|
|
40
|
+
background-color: var(--bg-tertiary-hover);
|
|
41
|
+
}
|
|
42
|
+
.el-pagination.is-background {
|
|
43
|
+
background-color: var(--bg-tertiary-hover);
|
|
44
|
+
}
|
|
45
|
+
.el-pager .number {
|
|
46
|
+
font-size: var(--font-size-text-sm);
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
}
|
|
49
|
+
.btn-prev,
|
|
50
|
+
.btn-next {
|
|
51
|
+
&:disabled {
|
|
52
|
+
background-color: transparent !important;
|
|
53
|
+
}
|
|
54
|
+
&:hover:not(:disabled) {
|
|
55
|
+
border: 1px solid var(--border-tertiary);
|
|
56
|
+
color: var(--text-primary);
|
|
57
|
+
}
|
|
58
|
+
background-color: transparent !important;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
</style>
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<el-radio v-bind="mergedAttrs" class="m-radio">
|
|
3
|
-
<template v-for="(_, name) in $slots" :key="name" #[name]>
|
|
4
|
-
<slot :name="name" />
|
|
5
|
-
</template>
|
|
6
|
-
</el-radio>
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
<script setup>
|
|
10
|
-
import { useClassName } from "@packages/hooks/useClassName.js"
|
|
11
|
-
|
|
12
|
-
defineOptions({
|
|
13
|
-
name: 'MRadio'
|
|
14
|
-
})
|
|
15
|
-
|
|
16
|
-
// 定义props
|
|
17
|
-
const props = defineProps({
|
|
18
|
-
popperClass: {
|
|
19
|
-
type: String,
|
|
20
|
-
default: ''
|
|
21
|
-
}
|
|
22
|
-
})
|
|
23
|
-
|
|
24
|
-
// 使用类名 Hook
|
|
25
|
-
const { mergedAttrs, className: popperClass } = useClassName('mc-radio-popper')
|
|
26
|
-
</script>
|
|
27
|
-
|
|
28
|
-
<style lang="scss">
|
|
29
|
-
// Radio popper-class 样式
|
|
30
|
-
// .mc-radio-popper {
|
|
31
|
-
// 自定义单选框样式可以在这里添加
|
|
32
|
-
// }
|
|
33
|
-
.m-radio{
|
|
34
|
-
&.el-radio{
|
|
35
|
-
--el-radio-input-height: 16px;
|
|
36
|
-
--el-radio-input-width: 16px;
|
|
37
|
-
--el-radio-input-border: 2px solid var(--icon-tertiary);
|
|
38
|
-
&.el-radio--large{
|
|
39
|
-
--el-radio-input-height: 20px;
|
|
40
|
-
--el-radio-input-width: 20px;
|
|
41
|
-
.el-radio__inner{
|
|
42
|
-
height: var(--el-radio-input-height);
|
|
43
|
-
width: var(--el-radio-input-width);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.el-radio__input {
|
|
48
|
-
&.is-checked .el-radio__inner::after {
|
|
49
|
-
height: 6px;
|
|
50
|
-
width: 6px;
|
|
51
|
-
background-color: var(--bg-primary);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
&.is-disabled {
|
|
55
|
-
.el-radio__inner {
|
|
56
|
-
background-color: var(--all-alphe-white-20);
|
|
57
|
-
border-color: var(--icon-tertiary);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&.is-checked .el-radio__inner::after {
|
|
61
|
-
background-color: var(--all-alphe-white-20);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<el-radio v-bind="mergedAttrs" class="m-radio">
|
|
3
|
+
<template v-for="(_, name) in $slots" :key="name" #[name]>
|
|
4
|
+
<slot :name="name" />
|
|
5
|
+
</template>
|
|
6
|
+
</el-radio>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup>
|
|
10
|
+
import { useClassName } from "@packages/hooks/useClassName.js"
|
|
11
|
+
|
|
12
|
+
defineOptions({
|
|
13
|
+
name: 'MRadio'
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
// 定义props
|
|
17
|
+
const props = defineProps({
|
|
18
|
+
popperClass: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: ''
|
|
21
|
+
}
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
// 使用类名 Hook
|
|
25
|
+
const { mergedAttrs, className: popperClass } = useClassName('mc-radio-popper')
|
|
26
|
+
</script>
|
|
27
|
+
|
|
28
|
+
<style lang="scss">
|
|
29
|
+
// Radio popper-class 样式
|
|
30
|
+
// .mc-radio-popper {
|
|
31
|
+
// 自定义单选框样式可以在这里添加
|
|
32
|
+
// }
|
|
33
|
+
.m-radio{
|
|
34
|
+
&.el-radio{
|
|
35
|
+
--el-radio-input-height: 16px;
|
|
36
|
+
--el-radio-input-width: 16px;
|
|
37
|
+
--el-radio-input-border: 2px solid var(--icon-tertiary);
|
|
38
|
+
&.el-radio--large{
|
|
39
|
+
--el-radio-input-height: 20px;
|
|
40
|
+
--el-radio-input-width: 20px;
|
|
41
|
+
.el-radio__inner{
|
|
42
|
+
height: var(--el-radio-input-height);
|
|
43
|
+
width: var(--el-radio-input-width);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.el-radio__input {
|
|
48
|
+
&.is-checked .el-radio__inner::after {
|
|
49
|
+
height: 6px;
|
|
50
|
+
width: 6px;
|
|
51
|
+
background-color: var(--bg-primary);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&.is-disabled {
|
|
55
|
+
.el-radio__inner {
|
|
56
|
+
background-color: var(--all-alphe-white-20);
|
|
57
|
+
border-color: var(--icon-tertiary);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&.is-checked .el-radio__inner::after {
|
|
61
|
+
background-color: var(--all-alphe-white-20);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
</style>
|
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<el-radio-button v-bind="mergedAttrs" class="m-radio-button">
|
|
3
|
-
<template v-for="(_, name) in $slots" :key="name" #[name]>
|
|
4
|
-
<slot :name="name" />
|
|
5
|
-
</template>
|
|
6
|
-
</el-radio-button>
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
<script setup>
|
|
10
|
-
import { useClassName } from "@packages/hooks/useClassName.js"
|
|
11
|
-
|
|
12
|
-
defineOptions({
|
|
13
|
-
name: 'MRadioButton'
|
|
14
|
-
})
|
|
15
|
-
|
|
16
|
-
// 定义props
|
|
17
|
-
const props = defineProps({
|
|
18
|
-
popperClass: {
|
|
19
|
-
type: String,
|
|
20
|
-
default: ''
|
|
21
|
-
}
|
|
22
|
-
})
|
|
23
|
-
|
|
24
|
-
// 使用类名 Hook
|
|
25
|
-
const { mergedAttrs, className: popperClass } = useClassName('mc-radio-button-popper')
|
|
26
|
-
</script>
|
|
27
|
-
|
|
28
|
-
<style lang="scss">
|
|
29
|
-
// RadioButton popper-class 样式
|
|
30
|
-
// .mc-radio-button-popper {
|
|
31
|
-
// 自定义单选框按钮样式可以在这里添加
|
|
32
|
-
// }
|
|
33
|
-
|
|
34
|
-
// 自定义主题示例
|
|
35
|
-
.mc-radio-button-custom {
|
|
36
|
-
.el-radio-button__inner {
|
|
37
|
-
background: linear-gradient(45deg, #667eea, #764ba2);
|
|
38
|
-
border-color: #667eea;
|
|
39
|
-
color: white;
|
|
40
|
-
|
|
41
|
-
&:hover {
|
|
42
|
-
background: linear-gradient(45deg, #5a6fd8, #6a4190);
|
|
43
|
-
border-color: #5a6fd8;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
48
|
-
background: linear-gradient(45deg, #4c63d2, #5d3a7e);
|
|
49
|
-
border-color: #4c63d2;
|
|
50
|
-
box-shadow: -1px 0 0 0 #4c63d2;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.mc-radio-button-success {
|
|
55
|
-
.el-radio-button__inner {
|
|
56
|
-
background-color: #67c23a;
|
|
57
|
-
border-color: #67c23a;
|
|
58
|
-
color: white;
|
|
59
|
-
|
|
60
|
-
&:hover {
|
|
61
|
-
background-color: #5daf34;
|
|
62
|
-
border-color: #5daf34;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
67
|
-
background-color: #529b2e;
|
|
68
|
-
border-color: #529b2e;
|
|
69
|
-
box-shadow: -1px 0 0 0 #529b2e;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.mc-radio-button-warning {
|
|
74
|
-
.el-radio-button__inner {
|
|
75
|
-
background-color: #e6a23c;
|
|
76
|
-
border-color: #e6a23c;
|
|
77
|
-
color: white;
|
|
78
|
-
|
|
79
|
-
&:hover {
|
|
80
|
-
background-color: #d4922b;
|
|
81
|
-
border-color: #d4922b;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
86
|
-
background-color: #c8951f;
|
|
87
|
-
border-color: #c8951f;
|
|
88
|
-
box-shadow: -1px 0 0 0 #c8951f;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.mc-radio-button-danger {
|
|
93
|
-
.el-radio-button__inner {
|
|
94
|
-
background-color: #f56c6c;
|
|
95
|
-
border-color: #f56c6c;
|
|
96
|
-
color: white;
|
|
97
|
-
|
|
98
|
-
&:hover {
|
|
99
|
-
background-color: #f45454;
|
|
100
|
-
border-color: #f45454;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
105
|
-
background-color: #f24545;
|
|
106
|
-
border-color: #f24545;
|
|
107
|
-
box-shadow: -1px 0 0 0 #f24545;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<el-radio-button v-bind="mergedAttrs" class="m-radio-button">
|
|
3
|
+
<template v-for="(_, name) in $slots" :key="name" #[name]>
|
|
4
|
+
<slot :name="name" />
|
|
5
|
+
</template>
|
|
6
|
+
</el-radio-button>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup>
|
|
10
|
+
import { useClassName } from "@packages/hooks/useClassName.js"
|
|
11
|
+
|
|
12
|
+
defineOptions({
|
|
13
|
+
name: 'MRadioButton'
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
// 定义props
|
|
17
|
+
const props = defineProps({
|
|
18
|
+
popperClass: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: ''
|
|
21
|
+
}
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
// 使用类名 Hook
|
|
25
|
+
const { mergedAttrs, className: popperClass } = useClassName('mc-radio-button-popper')
|
|
26
|
+
</script>
|
|
27
|
+
|
|
28
|
+
<style lang="scss">
|
|
29
|
+
// RadioButton popper-class 样式
|
|
30
|
+
// .mc-radio-button-popper {
|
|
31
|
+
// 自定义单选框按钮样式可以在这里添加
|
|
32
|
+
// }
|
|
33
|
+
|
|
34
|
+
// 自定义主题示例
|
|
35
|
+
.mc-radio-button-custom {
|
|
36
|
+
.el-radio-button__inner {
|
|
37
|
+
background: linear-gradient(45deg, #667eea, #764ba2);
|
|
38
|
+
border-color: #667eea;
|
|
39
|
+
color: white;
|
|
40
|
+
|
|
41
|
+
&:hover {
|
|
42
|
+
background: linear-gradient(45deg, #5a6fd8, #6a4190);
|
|
43
|
+
border-color: #5a6fd8;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
48
|
+
background: linear-gradient(45deg, #4c63d2, #5d3a7e);
|
|
49
|
+
border-color: #4c63d2;
|
|
50
|
+
box-shadow: -1px 0 0 0 #4c63d2;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.mc-radio-button-success {
|
|
55
|
+
.el-radio-button__inner {
|
|
56
|
+
background-color: #67c23a;
|
|
57
|
+
border-color: #67c23a;
|
|
58
|
+
color: white;
|
|
59
|
+
|
|
60
|
+
&:hover {
|
|
61
|
+
background-color: #5daf34;
|
|
62
|
+
border-color: #5daf34;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
67
|
+
background-color: #529b2e;
|
|
68
|
+
border-color: #529b2e;
|
|
69
|
+
box-shadow: -1px 0 0 0 #529b2e;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.mc-radio-button-warning {
|
|
74
|
+
.el-radio-button__inner {
|
|
75
|
+
background-color: #e6a23c;
|
|
76
|
+
border-color: #e6a23c;
|
|
77
|
+
color: white;
|
|
78
|
+
|
|
79
|
+
&:hover {
|
|
80
|
+
background-color: #d4922b;
|
|
81
|
+
border-color: #d4922b;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
86
|
+
background-color: #c8951f;
|
|
87
|
+
border-color: #c8951f;
|
|
88
|
+
box-shadow: -1px 0 0 0 #c8951f;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.mc-radio-button-danger {
|
|
93
|
+
.el-radio-button__inner {
|
|
94
|
+
background-color: #f56c6c;
|
|
95
|
+
border-color: #f56c6c;
|
|
96
|
+
color: white;
|
|
97
|
+
|
|
98
|
+
&:hover {
|
|
99
|
+
background-color: #f45454;
|
|
100
|
+
border-color: #f45454;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
105
|
+
background-color: #f24545;
|
|
106
|
+
border-color: #f24545;
|
|
107
|
+
box-shadow: -1px 0 0 0 #f24545;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
</style>
|