bri-components 1.0.0
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 +30 -0
- package/lib/.DS_Store +0 -0
- package/lib/0.bri-components.min.js +2 -0
- package/lib/0.bri-components.min.js.map +1 -0
- package/lib/1.bri-components.min.js +2 -0
- package/lib/1.bri-components.min.js.map +1 -0
- package/lib/2.bri-components.min.js +2 -0
- package/lib/2.bri-components.min.js.map +1 -0
- package/lib/3.bri-components.min.js +2 -0
- package/lib/3.bri-components.min.js.gz +0 -0
- package/lib/3.bri-components.min.js.map +1 -0
- package/lib/4.bri-components.min.js +2 -0
- package/lib/4.bri-components.min.js.gz +0 -0
- package/lib/4.bri-components.min.js.map +1 -0
- package/lib/5.bri-components.min.js +2 -0
- package/lib/5.bri-components.min.js.map +1 -0
- package/lib/6.bri-components.min.js +2 -0
- package/lib/6.bri-components.min.js.map +1 -0
- package/lib/bri-components.min.js +21 -0
- package/lib/bri-components.min.js.gz +0 -0
- package/lib/bri-components.min.js.map +1 -0
- package/lib/styles/bri-components.css +1 -0
- package/lib/styles/bundle.css +14 -0
- package/lib/styles/font/fontello.eot +0 -0
- package/lib/styles/font/fontello.svg +32 -0
- package/lib/styles/font/fontello.ttf +0 -0
- package/lib/styles/font/fontello.woff +0 -0
- package/lib/styles/font/fontello.woff2 +0 -0
- package/package.json +121 -0
- package/src/.DS_Store +0 -0
- package/src/components/controls/base/DshBack.vue +36 -0
- package/src/components/controls/base/DshCascader.vue +366 -0
- package/src/components/controls/base/DshCascaderMultiple.vue +158 -0
- package/src/components/controls/base/DshCheckbox.vue +199 -0
- package/src/components/controls/base/DshCoordinates.vue +497 -0
- package/src/components/controls/base/DshDate.vue +148 -0
- package/src/components/controls/base/DshDaterange.vue +335 -0
- package/src/components/controls/base/DshDivider.vue +59 -0
- package/src/components/controls/base/DshEditor.vue +166 -0
- package/src/components/controls/base/DshInput.vue +139 -0
- package/src/components/controls/base/DshLabels.vue +302 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/BriInputNumber.vue +425 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/mixins/emitter.js +34 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/mixins/form.js +14 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/utils/assist.js +322 -0
- package/src/components/controls/base/DshNumber/DshNumber.vue +148 -0
- package/src/components/controls/base/DshNumberange.vue +137 -0
- package/src/components/controls/base/DshPackage.vue +72 -0
- package/src/components/controls/base/DshSelect.vue +231 -0
- package/src/components/controls/base/DshSwitch.vue +112 -0
- package/src/components/controls/base/DshUndeveloped.vue +39 -0
- package/src/components/controls/base/YSerialNumber.vue +37 -0
- package/src/components/controls/base/ZUpload/YUploadImage.vue +228 -0
- package/src/components/controls/base/ZUpload/index.vue +356 -0
- package/src/components/controls/base/ZUpload/upload-list.vue +277 -0
- package/src/components/controls/base/ZUpload/upload-listItem.vue +0 -0
- package/src/components/controls/base/ZUpload/uploadMixin.js +397 -0
- package/src/components/controls/base/selectMixin.js +110 -0
- package/src/components/controls/base/textMultiple/DshTextMultiple.vue +94 -0
- package/src/components/controls/base/textMultiple/MultipleInput.vue +106 -0
- package/src/components/controls/controlMap.js +94 -0
- package/src/components/controls/controlMixin.js +84 -0
- package/src/components/form/DshAdvSearchForm.vue +341 -0
- package/src/components/form/DshDefaultSearch.vue +203 -0
- package/src/components/form/DshForm.vue +364 -0
- package/src/components/form/searchMixin.js +205 -0
- package/src/components/list/DshBox/DshBox.vue +168 -0
- package/src/components/list/DshBox/DshCard.vue +219 -0
- package/src/components/list/DshBox/DshCrossTable.vue +624 -0
- package/src/components/list/DshBox/DshList.vue +442 -0
- package/src/components/list/DshBox/DshPanel.vue +407 -0
- package/src/components/list/DshBox/DshSingleData.vue +82 -0
- package/src/components/list/DshBox/DshTable.vue +273 -0
- package/src/components/list/DshCascaderTable.vue +817 -0
- package/src/components/list/DshFlatTable.vue +622 -0
- package/src/components/list/ZTree.vue +527 -0
- package/src/components/list/easyTable/index.js +23 -0
- package/src/components/list/easyTable/src/directives/clickoutside.js +32 -0
- package/src/components/list/easyTable/src/mixins/layerAdjustment.js +62 -0
- package/src/components/list/easyTable/src/settings/settings.js +11 -0
- package/src/components/list/easyTable/src/utils/deepClone.js +256 -0
- package/src/components/list/easyTable/src/utils/dom.js +41 -0
- package/src/components/list/easyTable/src/utils/utils.js +190 -0
- package/src/components/list/easyTable/v-checkbox/index.js +7 -0
- package/src/components/list/easyTable/v-checkbox/src/checkbox.vue +127 -0
- package/src/components/list/easyTable/v-checkbox-group/index.js +7 -0
- package/src/components/list/easyTable/v-checkbox-group/src/checkbox-group.vue +68 -0
- package/src/components/list/easyTable/v-dropdown/index.js +7 -0
- package/src/components/list/easyTable/v-dropdown/src/dropdown.vue +337 -0
- package/src/components/list/easyTable/v-table/index.js +7 -0
- package/src/components/list/easyTable/v-table/src/body-cell-merge-mixin.js +141 -0
- package/src/components/list/easyTable/v-table/src/cell-edit-mixin.js +102 -0
- package/src/components/list/easyTable/v-table/src/checkbox-selection-mixin.js +189 -0
- package/src/components/list/easyTable/v-table/src/classes-mixin.js +56 -0
- package/src/components/list/easyTable/v-table/src/drag-width-mixin.js +202 -0
- package/src/components/list/easyTable/v-table/src/export-csv.js +74 -0
- package/src/components/list/easyTable/v-table/src/frozen-columns-mixin.js +134 -0
- package/src/components/list/easyTable/v-table/src/loading.vue +49 -0
- package/src/components/list/easyTable/v-table/src/scroll-bar-control-mixin.js +21 -0
- package/src/components/list/easyTable/v-table/src/scroll-control-mixin.js +92 -0
- package/src/components/list/easyTable/v-table/src/sort-control-mixin.js +108 -0
- package/src/components/list/easyTable/v-table/src/table-empty-mixin.js +73 -0
- package/src/components/list/easyTable/v-table/src/table-empty.vue +66 -0
- package/src/components/list/easyTable/v-table/src/table-filters-mixin.js +126 -0
- package/src/components/list/easyTable/v-table/src/table-footer-mixin.js +122 -0
- package/src/components/list/easyTable/v-table/src/table-resize-mixin.js +279 -0
- package/src/components/list/easyTable/v-table/src/table-row-mouse-events-mixin.js +123 -0
- package/src/components/list/easyTable/v-table/src/table.vue +1565 -0
- package/src/components/list/easyTable/v-table/src/title-cell-merge-mixin.js +115 -0
- package/src/components/list/evTable/EvTable.vue +323 -0
- package/src/components/list/evTable/EvTableMixin.js +26 -0
- package/src/components/other/DshAvatar.vue +149 -0
- package/src/components/other/DshBtnModal.vue +64 -0
- package/src/components/other/DshColorPanel.vue +128 -0
- package/src/components/other/DshEditPanel.vue +130 -0
- package/src/components/other/InfoCascader.vue +258 -0
- package/src/components/other/YNoPermission.vue +45 -0
- package/src/components/other/ZCode.vue +125 -0
- package/src/components/other/ZCollapseTree.vue +84 -0
- package/src/components/other/ZGantt.vue +669 -0
- package/src/components/other/ZIframe.vue +105 -0
- package/src/components/other/ZLoading.vue +59 -0
- package/src/components/other/menu/DshMenu.vue +133 -0
- package/src/components/other/menu/DshMenuNav.vue +104 -0
- package/src/components/pages/Error/Error403.vue +34 -0
- package/src/components/pages/Error/Error404.vue +34 -0
- package/src/components/pages/Error/Error500.vue +34 -0
- package/src/components/pages/Error/error.less +163 -0
- package/src/components/pages/Error/errorBack.vue +38 -0
- package/src/components/small/Ctooltip.vue +90 -0
- package/src/components/small/DshButtons.vue +195 -0
- package/src/components/small/DshControlDefine.vue +110 -0
- package/src/components/small/DshCrumbs.vue +61 -0
- package/src/components/small/DshCrumbsItem.vue +107 -0
- package/src/components/small/DshDropdown.vue +159 -0
- package/src/components/small/DshFileShow.vue +212 -0
- package/src/components/small/DshIcons.vue +63 -0
- package/src/components/small/DshModal.vue +255 -0
- package/src/components/small/DshPage.vue +98 -0
- package/src/components/small/DshSteps.vue +68 -0
- package/src/components/small/DshTabs.vue +227 -0
- package/src/components/small/DshTags.vue +58 -0
- package/src/components/small/DshTdRender.js +21 -0
- package/src/components/small/DshTitle.vue +36 -0
- package/src/components/small/render.js +20 -0
- package/src/components/unit/DshFormItem.vue +157 -0
- package/src/components/unit/DshUnit.vue +72 -0
- package/src/components/unit/unitMixin.js +43 -0
- package/src/datas/.DS_Store +0 -0
- package/src/datas/common/region.json +1 -0
- package/src/datas/common/resourceData.json +20 -0
- package/src/datas/index.js +11 -0
- package/src/index.js +243 -0
- package/src/styles/animate.less +16 -0
- package/src/styles/bundle.css +14 -0
- package/src/styles/common/box.less +157 -0
- package/src/styles/common/common.less +31 -0
- package/src/styles/common/flex.less +282 -0
- package/src/styles/common/index.less +4 -0
- package/src/styles/common/text.less +43 -0
- package/src/styles/components/controls/DshCascader.less +75 -0
- package/src/styles/components/controls/DshCheckbox.less +156 -0
- package/src/styles/components/controls/DshCoordinates.less +72 -0
- package/src/styles/components/controls/DshDaterange.less +49 -0
- package/src/styles/components/controls/DshDivider.less +115 -0
- package/src/styles/components/controls/DshEditor.less +52 -0
- package/src/styles/components/controls/DshInput.less +40 -0
- package/src/styles/components/controls/DshLabels.less +187 -0
- package/src/styles/components/controls/DshNumberange.less +24 -0
- package/src/styles/components/controls/DshPackage.less +25 -0
- package/src/styles/components/controls/DshSelect.less +172 -0
- package/src/styles/components/controls/MultipleInput.less +55 -0
- package/src/styles/components/controls/ZUpload.less +446 -0
- package/src/styles/components/form/DshAdvSearchForm.less +159 -0
- package/src/styles/components/form/DshDefaultSearch.less +71 -0
- package/src/styles/components/index.less +49 -0
- package/src/styles/components/list/DshCascaderTable.less +113 -0
- package/src/styles/components/list/DshCrossTable.less +175 -0
- package/src/styles/components/list/DshFlatTable.less +98 -0
- package/src/styles/components/list/DshSingleData.less +30 -0
- package/src/styles/components/list/evTable.less +79 -0
- package/src/styles/components/list/evtable/animation.less +141 -0
- package/src/styles/components/list/evtable/font/fontello.eot +0 -0
- package/src/styles/components/list/evtable/font/fontello.svg +32 -0
- package/src/styles/components/list/evtable/font/fontello.ttf +0 -0
- package/src/styles/components/list/evtable/font/fontello.woff +0 -0
- package/src/styles/components/list/evtable/font/fontello.woff2 +0 -0
- package/src/styles/components/list/evtable/fontello.less +68 -0
- package/src/styles/components/list/evtable/index.less +5 -0
- package/src/styles/components/list/evtable/v-checkbox.less +167 -0
- package/src/styles/components/list/evtable/v-dropdown.less +235 -0
- package/src/styles/components/list/evtable/v-table.less +334 -0
- package/src/styles/components/list/ivu_reset.less +49 -0
- package/src/styles/components/other/DshEditPanel.less +70 -0
- package/src/styles/components/other/DshMenu.less +37 -0
- package/src/styles/components/other/DshMenuNav.less +82 -0
- package/src/styles/components/other/InfoCascader.less +55 -0
- package/src/styles/components/other/ZCode.less +1 -0
- package/src/styles/components/other/ZCollapseTree.less +62 -0
- package/src/styles/components/other/ZGantt.less +278 -0
- package/src/styles/components/other/ZLoading.less +36 -0
- package/src/styles/components/small/Ctooltip.less +5 -0
- package/src/styles/components/small/DshButtons.less +40 -0
- package/src/styles/components/small/DshControlDefine.less +64 -0
- package/src/styles/components/small/DshDropdown.less +61 -0
- package/src/styles/components/small/DshPage.less +94 -0
- package/src/styles/components/small/DshSteps.less +58 -0
- package/src/styles/components/small/DshTabs.less +82 -0
- package/src/styles/components/small/DshTitle.less +18 -0
- package/src/styles/components/unit/DshFormItem.less +124 -0
- package/src/styles/define.less +374 -0
- package/src/styles/index.less +10 -0
- package/src/styles/reset.less +83 -0
- package/src/styles/variables.less +98 -0
- package/src/styles/view_reset.less +446 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/*主色start*/
|
|
2
|
+
@themeColor: #3DB8C5; // 主题颜色
|
|
3
|
+
@primaryColor: #0875FF; // button primary颜色
|
|
4
|
+
@themeDarkColor: #0E3161; //深色导航背景
|
|
5
|
+
@themeHelpColor: @themeColor; //辅助色1 原#34527A;
|
|
6
|
+
@themeHelpColor1: @themeColor; //辅助色2 原#285AD8
|
|
7
|
+
@progressColor: @themeColor; //进度条绿色 原#6CACEE
|
|
8
|
+
@borderColor: @themeColor; // 边框颜色 原#BAC9F0
|
|
9
|
+
@bgColor: #F4F5FA; // 背景颜色
|
|
10
|
+
@btnBg: @themeColor; //按钮色
|
|
11
|
+
@disabledColor: #8A92A5; // 辅助图标
|
|
12
|
+
@shenpi-themeColor:#3D84EE; // 审批端表单编辑改版主题色
|
|
13
|
+
/*主色end*/
|
|
14
|
+
|
|
15
|
+
/*辅色start*/
|
|
16
|
+
@warningDanger: #F5222D; //警示红
|
|
17
|
+
@warningOrange: #FA8C16; //警示橙
|
|
18
|
+
@warningYellow: #FACF16; //警示黄
|
|
19
|
+
@tipSuccess: #13C282; //通过绿
|
|
20
|
+
/*辅色end*/
|
|
21
|
+
|
|
22
|
+
/*字色start*/
|
|
23
|
+
@contentColor: #596278; // 正文颜色
|
|
24
|
+
@textColor: #8c8c8c; // 文字颜色
|
|
25
|
+
@minorTextColor: #8A92A5; //次要文字颜色
|
|
26
|
+
@subColor: #B8BECC; //弱文字颜色
|
|
27
|
+
@greyColor: #E3E7F0; // 弱文字色,当前激活若背景色
|
|
28
|
+
@deleteColor: @warningDanger; //删除文字颜色
|
|
29
|
+
@titleColor: #19233B; // title文字颜色
|
|
30
|
+
/*字色end*/
|
|
31
|
+
|
|
32
|
+
/*字体大小规范start*/
|
|
33
|
+
@largeTitleSize: 24px; // 最大title字体大小
|
|
34
|
+
@titleSize: 20px; // 用于导航文字 大标题文字
|
|
35
|
+
@commonTitleSize: 18px; //用于主页重要标题信息
|
|
36
|
+
@smallTitleSize: 16px; //用于小标题类文字信息
|
|
37
|
+
@textSize: 14px; //用于主要信息类文字
|
|
38
|
+
@textSmallSize: 13px;
|
|
39
|
+
@tipTextSize: 12px; //用于辅助信息类文字
|
|
40
|
+
@bannerTitleSize: 54px;
|
|
41
|
+
/*字体大小规范end*/
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
@shadowColor: #828499; // 阴影颜色
|
|
45
|
+
@textActiveColor: #262626; // 文字选中颜色
|
|
46
|
+
@tabTextActiveColor: @themeColor; // tab选中的背景颜色
|
|
47
|
+
@tabBgActiveColor: #F7FCFC; // tab选中的背景颜色
|
|
48
|
+
@tipTextColor: #60c0ec; // 提示文字的颜色
|
|
49
|
+
|
|
50
|
+
@titleFontFamily: SourceHanSansCN-Bold, SourceHanSansCN; // title字体
|
|
51
|
+
|
|
52
|
+
@numberFontFamily: DINAlternate-Bold, DINAlternate; //数字字体
|
|
53
|
+
@textFontFamily: PingFang SC; //中文文字字体
|
|
54
|
+
@hoverBg: #E8F3FD;
|
|
55
|
+
@white: #fff;
|
|
56
|
+
@formLabelColor: #666; //表单label
|
|
57
|
+
@formTextColor: #333; //表单label
|
|
58
|
+
@formLabelSize: 14px; //表单label
|
|
59
|
+
@formBorderColor: #E5E5E5; // 表单边框
|
|
60
|
+
@formBgColor: #F5F5F5; // 表单背景色
|
|
61
|
+
@formFocusBorderColor: @themeColor; // 表单选中边框
|
|
62
|
+
@uploadBackgroundColor: transparent; //上传icon背景
|
|
63
|
+
@iconDefaultGreyColor: #BABABA; //icon默认灰色
|
|
64
|
+
@ghostBg: #F4F8FF; //btn 浅背景色
|
|
65
|
+
@inputPlaceholderColor: #BCBCBC; //input框内部placeholder
|
|
66
|
+
@sheetSearchTitleColor: #333333; //工作表筛选两级title颜色
|
|
67
|
+
@activeDarkGreyColor: #515a6e; // active时字体深灰颜色
|
|
68
|
+
@readonlyBorderColor: #eee; //readonly状态下border颜色
|
|
69
|
+
@disabledBgColor: rgb(250, 250, 250);
|
|
70
|
+
// @disabledColor: #666;
|
|
71
|
+
|
|
72
|
+
@mainBg: #ecf1f9;
|
|
73
|
+
@boxShadow: 0px 2px 20px 0px rgba(116, 138, 163, 0.38);
|
|
74
|
+
@boxShadowRight: 5px 0px 9px rgba(0, 0, 0, 0.1);
|
|
75
|
+
|
|
76
|
+
@cscecBg: #F4F5FA;
|
|
77
|
+
@cscecTableTitleBg: #fafbfd;
|
|
78
|
+
@dasTextColor: @contentColor;
|
|
79
|
+
@cscecInputBg: #fff;
|
|
80
|
+
|
|
81
|
+
@borderGrey: #d9d9d9;
|
|
82
|
+
|
|
83
|
+
@resourceColor: #3D84EE,
|
|
84
|
+
#F4A135,
|
|
85
|
+
#32B5A5,
|
|
86
|
+
#A3CF26,
|
|
87
|
+
#C36625,
|
|
88
|
+
#793CB7,
|
|
89
|
+
#E94829,
|
|
90
|
+
#E8BB1F,
|
|
91
|
+
#52A829,
|
|
92
|
+
#37B653,
|
|
93
|
+
#1DD9E6,
|
|
94
|
+
#1457BC,
|
|
95
|
+
#4B5CC4,
|
|
96
|
+
#7471F7,
|
|
97
|
+
#C434DB,
|
|
98
|
+
#252F36;
|
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+
.ivu-input-icon-clear {
|
|
2
|
+
width: 20px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.ivu-select-dropdown {
|
|
6
|
+
max-height: 350px;
|
|
7
|
+
font-size: 14px;
|
|
8
|
+
|
|
9
|
+
// 时间日期控件
|
|
10
|
+
.ivu-date-picker {
|
|
11
|
+
&-header {
|
|
12
|
+
border-bottom: 0;
|
|
13
|
+
margin-top: 5px;
|
|
14
|
+
|
|
15
|
+
&-label {
|
|
16
|
+
font-weight: 700;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&-cells {
|
|
21
|
+
& span em:hover {
|
|
22
|
+
border-radius: 50%;
|
|
23
|
+
background-color: @shenpi-themeColor;
|
|
24
|
+
color: @white;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&-focused em {
|
|
28
|
+
border-radius: 50%;
|
|
29
|
+
color: @white;
|
|
30
|
+
background: @shenpi-themeColor;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&-cell-today em::after {
|
|
34
|
+
display: none;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ivu-select-multiple .ivu-select-item-selected:after {
|
|
41
|
+
content: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.ivu-dropdown-menu {
|
|
45
|
+
min-width: 50px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ivu-form-item-error-tip {
|
|
49
|
+
font-size: 12px;
|
|
50
|
+
padding: 0 8px 0px 16px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.ivu-tree-empty {
|
|
54
|
+
text-align: center;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// 蓝色按钮primary
|
|
58
|
+
.ivu-btn-primary {
|
|
59
|
+
background-color: @formFocusBorderColor;
|
|
60
|
+
border-color: @formFocusBorderColor;
|
|
61
|
+
font-weight: bold;
|
|
62
|
+
|
|
63
|
+
&:hover {
|
|
64
|
+
background-color: @themeHelpColor1;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// primary-ghost
|
|
69
|
+
.ivu-btn-ghost.ivu-btn-primary {
|
|
70
|
+
background-color: @ghostBg;
|
|
71
|
+
color: @tabTextActiveColor;
|
|
72
|
+
border: 1px solid @formFocusBorderColor;
|
|
73
|
+
|
|
74
|
+
&:hover {
|
|
75
|
+
color: @themeColor;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.ivu-btn-ghost.btn-cancel {
|
|
80
|
+
background-color: @ghostBg;
|
|
81
|
+
color: @tabTextActiveColor;
|
|
82
|
+
border: none;
|
|
83
|
+
|
|
84
|
+
&:hover {
|
|
85
|
+
background-color: @ghostBg !important;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.ivu-btn-default {
|
|
90
|
+
border-color: #C6C6C8;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/*自定义模态框start*/
|
|
94
|
+
.ivu-modal {
|
|
95
|
+
// width: 468px;
|
|
96
|
+
|
|
97
|
+
.ivu-modal-confirm {
|
|
98
|
+
padding: 6px 8px 8px;
|
|
99
|
+
|
|
100
|
+
.ivu-modal-confirm-head {}
|
|
101
|
+
|
|
102
|
+
.ivu-modal-confirm-body {
|
|
103
|
+
padding: 20px 0;
|
|
104
|
+
padding-left: 40px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.ivu-modal-confirm-footer {
|
|
108
|
+
button {
|
|
109
|
+
width: 102px;
|
|
110
|
+
height: 38px;
|
|
111
|
+
line-height: 38px;
|
|
112
|
+
font-size: 16px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.ivu-btn-text {
|
|
116
|
+
border: 1px solid @minorTextColor !important;
|
|
117
|
+
color: @textColor;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.ivu-btn-text:hover {
|
|
121
|
+
border-color: @minorTextColor !important;
|
|
122
|
+
color: @themeHelpColor1;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/*自定义模态框end*/
|
|
129
|
+
|
|
130
|
+
/*按钮start*/
|
|
131
|
+
//按钮配置公共样式
|
|
132
|
+
.ivu-btn {
|
|
133
|
+
border-radius: 2px;
|
|
134
|
+
height: 32px;
|
|
135
|
+
font-size: 14px;
|
|
136
|
+
color: @textColor;
|
|
137
|
+
background-color: @white;
|
|
138
|
+
border: 1px solid transparent;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.ivu-btn-dashed {
|
|
142
|
+
border-color: #dcdee2;
|
|
143
|
+
border-style: dashed;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
//高亮按钮
|
|
147
|
+
.ivu-btn-primary {
|
|
148
|
+
color: @white;
|
|
149
|
+
background-color: @btnBg;
|
|
150
|
+
border-color: @btnBg;
|
|
151
|
+
|
|
152
|
+
//.ivu-btn-large;
|
|
153
|
+
//按钮状态 悬停
|
|
154
|
+
&:hover {
|
|
155
|
+
background-color: @themeHelpColor1;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
//默认按钮
|
|
160
|
+
.ivu-btn-default {
|
|
161
|
+
border-color: @minorTextColor;
|
|
162
|
+
|
|
163
|
+
// color: #596278;
|
|
164
|
+
// background-color: @white;
|
|
165
|
+
// border-color: #8A92A5;
|
|
166
|
+
//.ivu-btn-large;
|
|
167
|
+
&:hover {
|
|
168
|
+
border-color: @minorTextColor;
|
|
169
|
+
color: @themeHelpColor1;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
//按钮尺寸 大
|
|
174
|
+
.ivu-btn-large {
|
|
175
|
+
height: 38px;
|
|
176
|
+
font-size: 16px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
//按钮尺寸 中 默认样式
|
|
180
|
+
.ivu-btn-middle {
|
|
181
|
+
.ivu-btn
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
//按钮尺寸 小
|
|
185
|
+
.ivu-btn-small {
|
|
186
|
+
height: 26px;
|
|
187
|
+
font-size: 12px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
//按钮状态 禁用
|
|
191
|
+
.ivu-btn.disabled,
|
|
192
|
+
.ivu-btn.disabled.active,
|
|
193
|
+
.ivu-btn.disabled:active,
|
|
194
|
+
.ivu-btn.disabled:focus,
|
|
195
|
+
.ivu-btn.disabled:hover,
|
|
196
|
+
.ivu-btn[disabled],
|
|
197
|
+
.ivu-btn[disabled].active,
|
|
198
|
+
.ivu-btn[disabled]:active,
|
|
199
|
+
.ivu-btn[disabled]:focus,
|
|
200
|
+
.ivu-btn[disabled]:hover,
|
|
201
|
+
fieldset[disabled] .ivu-btn,
|
|
202
|
+
fieldset[disabled] .ivu-btn.active,
|
|
203
|
+
fieldset[disabled] .ivu-btn:active,
|
|
204
|
+
fieldset[disabled] .ivu-btn:focus,
|
|
205
|
+
fieldset[disabled] .ivu-btn:hover {
|
|
206
|
+
color: @minorTextColor !important;
|
|
207
|
+
background-color: @bgColor;
|
|
208
|
+
border: 1px solid @minorTextColor;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.ivu-btn-text {
|
|
212
|
+
border-color: transparent !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
//配置按钮
|
|
216
|
+
.ivu-settings-btn {
|
|
217
|
+
// height: 38px;
|
|
218
|
+
// font-size: 16px;
|
|
219
|
+
background: @bgColor;
|
|
220
|
+
color: @minorTextColor;
|
|
221
|
+
min-width: 153px;
|
|
222
|
+
border: 1px solid @greyColor;
|
|
223
|
+
|
|
224
|
+
&:hover {
|
|
225
|
+
border-color: @greyColor;
|
|
226
|
+
color: @minorTextColor;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.ivu-icon {
|
|
230
|
+
width: 15px;
|
|
231
|
+
height: 15px;
|
|
232
|
+
line-height: 15px;
|
|
233
|
+
color: @white;
|
|
234
|
+
background-color: @minorTextColor;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
>span {
|
|
238
|
+
vertical-align: middle;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
//下拉按钮 待实现
|
|
243
|
+
// .ivu-select-selected-value,.ivu-select-arrow {
|
|
244
|
+
// color: @themeColor;
|
|
245
|
+
// }
|
|
246
|
+
//文字按钮
|
|
247
|
+
.ivu-btn-text {
|
|
248
|
+
// font-size: 16px !important;
|
|
249
|
+
color: @themeColor;
|
|
250
|
+
background: transparent;
|
|
251
|
+
border: none;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
//成功按钮
|
|
255
|
+
.ivu-btn-success {
|
|
256
|
+
color: #fff;
|
|
257
|
+
background-color: @tipSuccess;
|
|
258
|
+
border-color: @tipSuccess;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/*按钮end*/
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
// checkbox 控制选中时icon样式
|
|
266
|
+
|
|
267
|
+
// 默认样式
|
|
268
|
+
.type-item-0.ivu-radio-wrapper-checked,
|
|
269
|
+
.type-item-0.ivu-checkbox-wrapper-checked {
|
|
270
|
+
.ivu-checkbox-inner:after {
|
|
271
|
+
border-color: @white;
|
|
272
|
+
left: 4px;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.type-item-1.ivu-radio-wrapper-checked,
|
|
277
|
+
.type-item-1.ivu-checkbox-wrapper-checked {
|
|
278
|
+
.ivu-checkbox-inner:after {
|
|
279
|
+
border-color: #CDE6FF;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.type-item-2.ivu-radio-wrapper-checked,
|
|
284
|
+
.type-item-2.ivu-checkbox-wrapper-checked {
|
|
285
|
+
.ivu-checkbox-inner:after {
|
|
286
|
+
border-color: #C1FCFF;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.type-item-3.ivu-radio-wrapper-checked,
|
|
291
|
+
.type-item-3.ivu-checkbox-wrapper-checked {
|
|
292
|
+
.ivu-checkbox-inner:after {
|
|
293
|
+
border-color: #C5FFD9;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.type-item-4.ivu-radio-wrapper-checked,
|
|
298
|
+
.type-item-4.ivu-checkbox-wrapper-checked {
|
|
299
|
+
.ivu-checkbox-inner:after {
|
|
300
|
+
border-color: #FFEDC8;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.type-item-5.ivu-radio-wrapper-checked,
|
|
305
|
+
.type-item-5.ivu-checkbox-wrapper-checked {
|
|
306
|
+
.ivu-checkbox-inner:after {
|
|
307
|
+
border-color: #FFDCAC;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.type-item-6.ivu-radio-wrapper-checked,
|
|
312
|
+
.type-item-6.ivu-checkbox-wrapper-checked {
|
|
313
|
+
.ivu-checkbox-inner:after {
|
|
314
|
+
border-color: #FFD3B6;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.type-item-7.ivu-radio-wrapper-checked,
|
|
319
|
+
.type-item-7.ivu-checkbox-wrapper-checked {
|
|
320
|
+
.ivu-checkbox-inner:after {
|
|
321
|
+
border-color: #EEB0FF;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.type-item-8.ivu-radio-wrapper-checked,
|
|
326
|
+
.type-item-8.ivu-checkbox-wrapper-checked {
|
|
327
|
+
.ivu-checkbox-inner:after {
|
|
328
|
+
border-color: #D1B3FF;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.type-item-9.ivu-radio-wrapper-checked,
|
|
333
|
+
.type-item-9.ivu-checkbox-wrapper-checked {
|
|
334
|
+
.ivu-checkbox-inner:after {
|
|
335
|
+
border-color: #B1C7FF;
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.type-item-10.ivu-radio-wrapper-checked,
|
|
340
|
+
.type-item-10.ivu-checkbox-wrapper-checked {
|
|
341
|
+
.ivu-checkbox-inner:after {
|
|
342
|
+
border-color: #DCDCDC;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.type-item-11.ivu-radio-wrapper-checked,
|
|
347
|
+
.type-item-11.ivu-checkbox-wrapper-checked {
|
|
348
|
+
.ivu-checkbox-inner:after {
|
|
349
|
+
border-color: #6DAEF2;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.type-item-12.ivu-radio-wrapper-checked,
|
|
354
|
+
.type-item-12.ivu-checkbox-wrapper-checked {
|
|
355
|
+
.ivu-checkbox-inner:after {
|
|
356
|
+
border-color: #40CBD2;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.type-item-13.ivu-radio-wrapper-checked,
|
|
361
|
+
.type-item-13.ivu-checkbox-wrapper-checked {
|
|
362
|
+
.ivu-checkbox-inner:after {
|
|
363
|
+
border-color: #50C979;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.type-item-14.ivu-radio-wrapper-checked,
|
|
368
|
+
.type-item-14.ivu-checkbox-wrapper-checked {
|
|
369
|
+
.ivu-checkbox-inner:after {
|
|
370
|
+
border-color: #FFC53B;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.type-item-15.ivu-radio-wrapper-checked,
|
|
375
|
+
.type-item-15.ivu-checkbox-wrapper-checked {
|
|
376
|
+
.ivu-checkbox-inner:after {
|
|
377
|
+
border-color: #FF9300;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.type-item-16.ivu-radio-wrapper-checked,
|
|
382
|
+
.type-item-16.ivu-checkbox-wrapper-checked {
|
|
383
|
+
.ivu-checkbox-inner:after {
|
|
384
|
+
border-color: #FA6400;
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.type-item-17.ivu-radio-wrapper-checked,
|
|
389
|
+
.type-item-17.ivu-checkbox-wrapper-checked {
|
|
390
|
+
.ivu-checkbox-inner:after {
|
|
391
|
+
border-color: #B620E0;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.type-item-18.ivu-radio-wrapper-checked,
|
|
396
|
+
.type-item-18.ivu-checkbox-wrapper-checked {
|
|
397
|
+
.ivu-checkbox-inner:after {
|
|
398
|
+
border-color: #7E41DF;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.type-item-19.ivu-radio-wrapper-checked,
|
|
403
|
+
.type-item-19.ivu-checkbox-wrapper-checked {
|
|
404
|
+
.ivu-checkbox-inner:after {
|
|
405
|
+
border-color: #25428D;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.type-item-20.ivu-radio-wrapper-checked,
|
|
410
|
+
.type-item-20.ivu-checkbox-wrapper-checked {
|
|
411
|
+
.ivu-checkbox-inner:after {
|
|
412
|
+
border-color: #5D5D5D;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// input number border delete
|
|
417
|
+
.ivu-input-number {
|
|
418
|
+
&-handler {
|
|
419
|
+
&-wrap {
|
|
420
|
+
border-left: none;
|
|
421
|
+
opacity: 1;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
&-down {
|
|
425
|
+
border-top-color: #fff;
|
|
426
|
+
opacity: 1;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
//表格中的多选框tooltip样式修改
|
|
432
|
+
.columnCheckbox {
|
|
433
|
+
width: 100%;
|
|
434
|
+
|
|
435
|
+
// text-align: center;
|
|
436
|
+
.ivu-tooltip-rel {
|
|
437
|
+
overflow: hidden;
|
|
438
|
+
white-space: nowrap;
|
|
439
|
+
text-overflow: ellipsis;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
// tooltip 数字不折行问题
|
|
444
|
+
.ivu-tooltip-inner {
|
|
445
|
+
word-break: break-word;
|
|
446
|
+
}
|