bri-components 1.2.49 → 1.2.51
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/package.json +2 -2
- package/src/components/controls/BriControlInput.vue +13 -9
- package/src/components/controls/base/DshCascader/DshCascader.vue +40 -23
- package/src/components/controls/base/DshCascader/InfoCascader.vue +7 -15
- package/src/components/controls/base/DshDate/DshDate.vue +146 -0
- package/src/components/controls/base/{DshDaterange.vue → DshDate/DshDaterange.vue} +74 -64
- package/src/components/controls/base/DshEditor.vue +1 -1
- package/src/components/controls/base/{BriInputs.vue → DshInput/BriInputs.vue} +1 -1
- package/src/components/controls/base/{DshInput.vue → DshInput/DshInput.vue} +21 -4
- package/src/components/controls/base/DshNumber/DshNumber.vue +33 -2
- package/src/components/controls/base/{DshNumberange.vue → DshNumber/DshNumberange.vue} +37 -2
- package/src/components/controls/base/DshSelect/DshCheckbox.vue +280 -0
- package/src/components/controls/base/DshSelect/DshSelect.vue +319 -0
- package/src/components/controls/base/DshSelect/selectMixin.js +239 -0
- package/src/components/controls/base/DshSwitch/DshSwitch.vue +79 -0
- package/src/components/controls/base/DshSwitch/switchMixin.js +73 -0
- package/src/components/controls/controlMap.js +8 -11
- package/src/components/controls/controlMixin.js +38 -6
- package/src/components/controls/senior/BriLabels.vue +1 -1
- package/src/components/controls/senior/selectDepartments.vue +9 -13
- package/src/components/controls/senior/selectUsers/selectUsers.vue +23 -21
- package/src/components/controls/special/DshBack.vue +1 -1
- package/src/components/controls/special/DshUndeveloped.vue +1 -1
- package/src/components/form/DshAdvSearch.vue +155 -3
- package/src/components/form/DshDefaultSearch.vue +84 -40
- package/src/components/form/DshForm.vue +24 -0
- package/src/components/form/searchMixin.js +5 -18
- package/src/components/other/BriGantt.vue +2 -2
- package/src/components/unit/DshFormUnit.vue +111 -2
- package/src/components/unit/DshListUnit.vue +6 -0
- package/src/index.js +10 -10
- package/src/styles/components/controls/base/DshInput.less +0 -16
- package/src/styles/components/index.less +0 -14
- package/src/styles/components/other/BriGantt.less +1 -12
- package/src/styles/index.less +5 -3
- package/src/styles/reset-iview-controls.less +104 -0
- package/src/abolish/BriTransfer.less +0 -65
- package/src/abolish/BriTransfer.vue +0 -71
- package/src/abolish/BriTree.less +0 -57
- package/src/abolish/DshCascaders.less +0 -11
- package/src/abolish/DshCascaders.vue +0 -151
- package/src/abolish/DshCrumbs.less +0 -0
- package/src/abolish/DshCrumbs.vue +0 -62
- package/src/abolish/DshCrumbsItem.vue +0 -109
- package/src/abolish/DshEditPanel.less +0 -70
- package/src/abolish/DshEditPanel.vue +0 -152
- package/src/abolish/DshFileShow.less +0 -61
- package/src/abolish/DshFileShow.vue +0 -0
- package/src/abolish/DshFlatTable.less +0 -93
- package/src/abolish/DshFlatTable.vue +0 -605
- package/src/abolish/DshMenu.less +0 -37
- package/src/abolish/DshMenu.vue +0 -133
- package/src/abolish/DshTexts.less +0 -13
- package/src/abolish/DshTexts.vue +0 -89
- package/src/components/controls/base/DshCheckbox.vue +0 -213
- package/src/components/controls/base/DshDate.vue +0 -122
- package/src/components/controls/base/DshSelect.vue +0 -242
- package/src/components/controls/base/DshSwitch.vue +0 -70
- package/src/components/controls/base/selectMixin.js +0 -110
- package/src/styles/components/controls/base/DshCheckbox.less +0 -115
- package/src/styles/components/controls/base/DshDate.less +0 -15
- package/src/styles/components/controls/base/DshDaterange.less +0 -49
- package/src/styles/components/controls/base/DshNumber.less +0 -55
- package/src/styles/components/controls/base/DshNumberange.less +0 -29
- package/src/styles/components/controls/base/DshSelect.less +0 -190
- package/src/styles/components/form/DshAdvSearch.less +0 -149
- package/src/styles/components/form/DshDefaultSearch.less +0 -82
- package/src/styles/components/form/DshForm.less +0 -18
- package/src/styles/components/unit/DshFormUnit.less +0 -105
- package/src/styles/components/unit/DshListUnit.less +0 -3
- /package/src/{abolish/DshCrumbItem.less → styles/reset-iview-other.less} +0 -0
- /package/src/styles/{reset-iview.less → reset-iview-variables.less} +0 -0
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<span class="DshCrumbItem">
|
|
3
|
-
<a
|
|
4
|
-
v-if="to"
|
|
5
|
-
:href="linkUrl"
|
|
6
|
-
:target="target"
|
|
7
|
-
:class="linkClasses"
|
|
8
|
-
@click.exact="handleCheckClick($event, false)"
|
|
9
|
-
@click.ctrl="handleCheckClick($event, true)"
|
|
10
|
-
@click.meta="handleCheckClick($event, true)"
|
|
11
|
-
>
|
|
12
|
-
<slot></slot>
|
|
13
|
-
</a>
|
|
14
|
-
<span
|
|
15
|
-
v-else
|
|
16
|
-
:class="linkClasses"
|
|
17
|
-
>
|
|
18
|
-
<slot></slot>
|
|
19
|
-
</span>
|
|
20
|
-
|
|
21
|
-
<span
|
|
22
|
-
v-if="!showSeparator"
|
|
23
|
-
:class="separatorClasses"
|
|
24
|
-
v-html="separator"
|
|
25
|
-
></span>
|
|
26
|
-
<span
|
|
27
|
-
v-else
|
|
28
|
-
:class="separatorClasses"
|
|
29
|
-
>
|
|
30
|
-
<slot name="separator"></slot>
|
|
31
|
-
</span>
|
|
32
|
-
</span>
|
|
33
|
-
</template>
|
|
34
|
-
|
|
35
|
-
<script>
|
|
36
|
-
const prefixCls = "dsh-crumb-item";
|
|
37
|
-
|
|
38
|
-
export default {
|
|
39
|
-
name: "DshCrumbItem",
|
|
40
|
-
props: {
|
|
41
|
-
to: {
|
|
42
|
-
type: [Object, String]
|
|
43
|
-
},
|
|
44
|
-
replace: {
|
|
45
|
-
type: Boolean,
|
|
46
|
-
default: false
|
|
47
|
-
},
|
|
48
|
-
target: {
|
|
49
|
-
type: String,
|
|
50
|
-
default: "_self",
|
|
51
|
-
validator (value) {
|
|
52
|
-
return ["_blank", "_self", "_parent", "_top"].includes(value);
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
append: {
|
|
56
|
-
type: Boolean,
|
|
57
|
-
required: false,
|
|
58
|
-
default: false
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
data () {
|
|
62
|
-
return {
|
|
63
|
-
separator: "",
|
|
64
|
-
showSeparator: false
|
|
65
|
-
};
|
|
66
|
-
},
|
|
67
|
-
computed: {
|
|
68
|
-
linkClasses () {
|
|
69
|
-
return `${prefixCls}-link`;
|
|
70
|
-
},
|
|
71
|
-
separatorClasses () {
|
|
72
|
-
return `${prefixCls}-separator`;
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
mounted () {
|
|
76
|
-
this.showSeparator = this.$slots.separator !== undefined;
|
|
77
|
-
},
|
|
78
|
-
methods: {
|
|
79
|
-
handleClick (newWindow = false) {
|
|
80
|
-
const router = this.$router;
|
|
81
|
-
if (newWindow) {
|
|
82
|
-
let to = this.to;
|
|
83
|
-
if (router) {
|
|
84
|
-
const current = this.$route;
|
|
85
|
-
const route = router.resolve(this.to, current, this.append);
|
|
86
|
-
to = route ? route.href : this.to;
|
|
87
|
-
}
|
|
88
|
-
window.open(to);
|
|
89
|
-
} else {
|
|
90
|
-
if (router) {
|
|
91
|
-
this.replace ? this.$router.replace(this.to, () => {}) : this.$router.push(this.to, () => {});
|
|
92
|
-
} else {
|
|
93
|
-
window.location.href = this.to;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
handleCheckClick (event, newWindow = false) {
|
|
98
|
-
if (this.to) {
|
|
99
|
-
if (this.target === "_blank") {
|
|
100
|
-
return false;
|
|
101
|
-
} else {
|
|
102
|
-
event.preventDefault();
|
|
103
|
-
this.handleClick(newWindow);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
};
|
|
109
|
-
</script>
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
.DshEditPanel {
|
|
2
|
-
width: 220px;
|
|
3
|
-
height: 240px;
|
|
4
|
-
text-align: left;
|
|
5
|
-
|
|
6
|
-
&-name {}
|
|
7
|
-
&-colors {
|
|
8
|
-
padding: 40px 0 0 0;
|
|
9
|
-
overflow: hidden;
|
|
10
|
-
&-item {
|
|
11
|
-
width: 46px;
|
|
12
|
-
height: 46px;
|
|
13
|
-
float: left;
|
|
14
|
-
margin-right: 20px;
|
|
15
|
-
margin-bottom: 10px;
|
|
16
|
-
border-radius: 50%;
|
|
17
|
-
border: 2px solid #DBDBDB;
|
|
18
|
-
padding: 1px;
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
position: relative;
|
|
21
|
-
&-content {
|
|
22
|
-
width: 40px;
|
|
23
|
-
height: 40px;
|
|
24
|
-
border-radius: 50%;
|
|
25
|
-
}
|
|
26
|
-
&-icon {
|
|
27
|
-
position: absolute;
|
|
28
|
-
top: -6px;
|
|
29
|
-
right: -4px;
|
|
30
|
-
color: @themeColor;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&-icons {
|
|
36
|
-
padding: 40px 0px 0px 0;
|
|
37
|
-
&-item {
|
|
38
|
-
float: left;
|
|
39
|
-
width: 55px;
|
|
40
|
-
height: 55px;
|
|
41
|
-
margin-right: 20px;
|
|
42
|
-
margin-bottom: 10px;
|
|
43
|
-
background: #FBF8F2;
|
|
44
|
-
border-radius: 8px;
|
|
45
|
-
padding: 10px;
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
&-content {
|
|
48
|
-
width: 100%;
|
|
49
|
-
height: 100%;
|
|
50
|
-
background-repeat: no-repeat;
|
|
51
|
-
background-size: contain;
|
|
52
|
-
text-align: center;
|
|
53
|
-
line-height: 35px;
|
|
54
|
-
i {
|
|
55
|
-
color: #ffffff;
|
|
56
|
-
font-size: 18px;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
&:hover {
|
|
60
|
-
color: @themeColor;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
&-form {
|
|
66
|
-
.ivu-form-item {
|
|
67
|
-
margin-bottom: 15px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="DshEditPanel">
|
|
3
|
-
<Form
|
|
4
|
-
class="DshEditPanel-form"
|
|
5
|
-
:model="value"
|
|
6
|
-
:label-width="80"
|
|
7
|
-
label-position="left"
|
|
8
|
-
>
|
|
9
|
-
<FormItem label="应用名称">
|
|
10
|
-
<Input
|
|
11
|
-
v-model="value.name"
|
|
12
|
-
placeholder="请输入应用名称"
|
|
13
|
-
autofocus
|
|
14
|
-
@on-blur="onBlur(value)"
|
|
15
|
-
/>
|
|
16
|
-
</FormItem>
|
|
17
|
-
|
|
18
|
-
<FormItem label="主题颜色">
|
|
19
|
-
<div class="DshEditPanel-colors">
|
|
20
|
-
<div
|
|
21
|
-
v-for="(colorItem, colorKey) in $appData.themeColors"
|
|
22
|
-
:key="colorKey"
|
|
23
|
-
class="DshEditPanel-colors-item"
|
|
24
|
-
@click="$dispatchEvent(operationMap.updateColor, colorItem.color, colorKey, value)"
|
|
25
|
-
>
|
|
26
|
-
<div
|
|
27
|
-
class="DshEditPanel-colors-item-content"
|
|
28
|
-
:style="{
|
|
29
|
-
backgroundColor: colorItem.color
|
|
30
|
-
}"
|
|
31
|
-
></div>
|
|
32
|
-
<Icon
|
|
33
|
-
v-if="colorItem.color === value.color"
|
|
34
|
-
class="DshEditPanel-colors-item-icon"
|
|
35
|
-
type="ios-checkmark-circle"
|
|
36
|
-
size="16"
|
|
37
|
-
/>
|
|
38
|
-
</div>
|
|
39
|
-
</div>
|
|
40
|
-
</FormItem>
|
|
41
|
-
|
|
42
|
-
<FormItem label="主题图标">
|
|
43
|
-
<div class="DshEditPanel-icons">
|
|
44
|
-
<div
|
|
45
|
-
v-for="(iconItem, iconIndex) in $appData.icons"
|
|
46
|
-
:key="iconIndex"
|
|
47
|
-
class="DshEditPanel-icons-item"
|
|
48
|
-
:style="{
|
|
49
|
-
backgroundColor: $appData.themeColors[value.color].bgColor,
|
|
50
|
-
border: value.icon === iconItem ? `1px solid ${value.color}` : 'none'
|
|
51
|
-
}"
|
|
52
|
-
@click="$dispatchEvent(operationMap.updateIcon, iconItem, iconIndex, value)"
|
|
53
|
-
>
|
|
54
|
-
<div
|
|
55
|
-
class="DshEditPanel-icons-item-content"
|
|
56
|
-
:style="{
|
|
57
|
-
backgroundImage: `url(${$appData.themeColors[value.color].bgUrl})`
|
|
58
|
-
}"
|
|
59
|
-
>
|
|
60
|
-
<Icon :custom="'bico-font ' + iconItem"></Icon>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
</FormItem>
|
|
65
|
-
</Form>
|
|
66
|
-
|
|
67
|
-
<!-- 操作按钮 -->
|
|
68
|
-
<dsh-buttons
|
|
69
|
-
class="bri-modal-footer"
|
|
70
|
-
:list="$getOperationList(['canCancel', 'canConfirm'])"
|
|
71
|
-
@click="$dispatchEvent($event)"
|
|
72
|
-
></dsh-buttons>
|
|
73
|
-
</div>
|
|
74
|
-
</template>
|
|
75
|
-
|
|
76
|
-
<script>
|
|
77
|
-
export default {
|
|
78
|
-
name: "DshEditPanel",
|
|
79
|
-
components: {},
|
|
80
|
-
props: {
|
|
81
|
-
value: {
|
|
82
|
-
type: Object,
|
|
83
|
-
default () {
|
|
84
|
-
return {};
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
data () {
|
|
89
|
-
return {
|
|
90
|
-
operationMap: {
|
|
91
|
-
updateColor: {
|
|
92
|
-
name: "修改主题色",
|
|
93
|
-
type: "updateColor",
|
|
94
|
-
event: "clickUpdateColor"
|
|
95
|
-
},
|
|
96
|
-
updateIcon: {
|
|
97
|
-
name: "修改图标",
|
|
98
|
-
type: "updateIcon",
|
|
99
|
-
event: "clickUpdateIcon"
|
|
100
|
-
},
|
|
101
|
-
canCancel: {
|
|
102
|
-
name: "取消",
|
|
103
|
-
type: "canCancel",
|
|
104
|
-
event: "clickCancel"
|
|
105
|
-
},
|
|
106
|
-
canConfirm: {
|
|
107
|
-
name: "确定",
|
|
108
|
-
type: "canConfirm",
|
|
109
|
-
btnType: "primary",
|
|
110
|
-
event: "clickConfirm"
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
};
|
|
114
|
-
},
|
|
115
|
-
computed: {},
|
|
116
|
-
created () {
|
|
117
|
-
this.init();
|
|
118
|
-
},
|
|
119
|
-
methods: {
|
|
120
|
-
// 初始化
|
|
121
|
-
init () {
|
|
122
|
-
Object.assign(this.value, {
|
|
123
|
-
oldName: this.value.name,
|
|
124
|
-
color: this.value.color || Object.values(this.$appData.themeColors)[0].color,
|
|
125
|
-
icon: this.value.icon || this.$appData.icons[0]
|
|
126
|
-
});
|
|
127
|
-
},
|
|
128
|
-
|
|
129
|
-
onBlur (value) {
|
|
130
|
-
if (!value.name) {
|
|
131
|
-
value.name = value.oldName || "未命名";
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
// 点击修改应用主题色
|
|
135
|
-
clickUpdateColor (item, colorItem, colorKey, appObj) {
|
|
136
|
-
appObj.color = colorItem;
|
|
137
|
-
},
|
|
138
|
-
// 点击修改应用图标
|
|
139
|
-
clickUpdateIcon (item, iconItem, iconIndex, appObj) {
|
|
140
|
-
appObj.icon = iconItem;
|
|
141
|
-
},
|
|
142
|
-
// 点击取消
|
|
143
|
-
clickConfirm () {
|
|
144
|
-
this.$emit("on-ok", this.value);
|
|
145
|
-
},
|
|
146
|
-
// 点击取消
|
|
147
|
-
clickCancel () {
|
|
148
|
-
this.$emit("on-cancel");
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
};
|
|
152
|
-
</script>
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
.DshFileShow {
|
|
2
|
-
display: block;
|
|
3
|
-
overflow: hidden;
|
|
4
|
-
word-break: keep-all;
|
|
5
|
-
white-space: nowrap;
|
|
6
|
-
text-overflow: ellipsis;
|
|
7
|
-
display: flex;
|
|
8
|
-
|
|
9
|
-
&-img {
|
|
10
|
-
margin-right: 3px;
|
|
11
|
-
&:hover{
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// 遮罩层
|
|
17
|
-
&-wrap {
|
|
18
|
-
width: 100%;
|
|
19
|
-
height: 100%;
|
|
20
|
-
position: fixed;
|
|
21
|
-
top: 0px;
|
|
22
|
-
left: 0px;
|
|
23
|
-
bottom: 0px;
|
|
24
|
-
right: 0px;
|
|
25
|
-
z-index: 9999;
|
|
26
|
-
text-align: center;
|
|
27
|
-
overflow: auto;
|
|
28
|
-
display: none;
|
|
29
|
-
background: rgba(0,0,0,0);
|
|
30
|
-
|
|
31
|
-
&-show {
|
|
32
|
-
display: block;
|
|
33
|
-
background: rgba(0,0,0,.6);
|
|
34
|
-
animation: animate-show .3s linear;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
&-preview {
|
|
38
|
-
position: absolute;
|
|
39
|
-
width: 90%;
|
|
40
|
-
height: 90%;
|
|
41
|
-
top: 5%;
|
|
42
|
-
left: 5%;
|
|
43
|
-
left: 5%;
|
|
44
|
-
right: 5%;
|
|
45
|
-
background-size: contain;
|
|
46
|
-
background-repeat: no-repeat;
|
|
47
|
-
background-position: center;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
@keyframes animate-show {
|
|
52
|
-
from {
|
|
53
|
-
display: none;
|
|
54
|
-
background: rgba(0,0,0,0);
|
|
55
|
-
}
|
|
56
|
-
to {
|
|
57
|
-
display: block;
|
|
58
|
-
background: rgba(0,0,0,.6);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
File without changes
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
.DshFlatTable {
|
|
2
|
-
width: 100%;
|
|
3
|
-
position: relative;
|
|
4
|
-
|
|
5
|
-
&-block {
|
|
6
|
-
width: 100%;
|
|
7
|
-
overflow: auto;
|
|
8
|
-
|
|
9
|
-
.table {
|
|
10
|
-
width: 100%;
|
|
11
|
-
border-spacing: 0;
|
|
12
|
-
border-collapse: collapse;
|
|
13
|
-
border-color: #E5E5E5;
|
|
14
|
-
background-color: #fff;
|
|
15
|
-
|
|
16
|
-
&-head {
|
|
17
|
-
background-color: #f0f0f0;
|
|
18
|
-
color: #666;
|
|
19
|
-
|
|
20
|
-
&-description {
|
|
21
|
-
color: #828499;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
&-row {
|
|
26
|
-
height: 50px;
|
|
27
|
-
|
|
28
|
-
&:hover {
|
|
29
|
-
.table-row-td-add {
|
|
30
|
-
display: inline-block;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&-td {
|
|
35
|
-
position: relative;
|
|
36
|
-
|
|
37
|
-
.td-inner {
|
|
38
|
-
&-compare {
|
|
39
|
-
width: 100%;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
&-tip {
|
|
44
|
-
padding: 2px 5px 0px 10px;
|
|
45
|
-
font-size: 12px;
|
|
46
|
-
line-height: 1;
|
|
47
|
-
color: #ed4014;
|
|
48
|
-
position: absolute;
|
|
49
|
-
top: calc(100% -15px);
|
|
50
|
-
left: 0px;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&-add {
|
|
54
|
-
line-height: 20px;
|
|
55
|
-
position: absolute;
|
|
56
|
-
bottom: 0px;
|
|
57
|
-
right: 0px;
|
|
58
|
-
display: none;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
&-nodata {
|
|
63
|
-
width: 100%;
|
|
64
|
-
height: 40px;
|
|
65
|
-
text-align: center;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
tbody {
|
|
70
|
-
// display: block;
|
|
71
|
-
// overflow-y: scroll;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
thead {
|
|
75
|
-
// display: block;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
&-create {
|
|
81
|
-
margin: 5px 0px;
|
|
82
|
-
|
|
83
|
-
button {
|
|
84
|
-
border-color: @theme-focus;
|
|
85
|
-
color: @theme-focus;
|
|
86
|
-
background-color: @bgColor;
|
|
87
|
-
|
|
88
|
-
&:hover {
|
|
89
|
-
background-color: @bgColor;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|