From 9b613993e8b59f0426cbaddb8e5bd735b975472b Mon Sep 17 00:00:00 2001 From: caoyang Date: Tue, 8 Mar 2022 19:02:25 +0800 Subject: [PATCH 01/26] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/components/ocrAddForm/index.vue | 10 +- jero-web/src/components/ocrUpload/index.vue | 133 +++++++++--------- .../documentManage/tags/dialog/areaManage.vue | 1 + .../documentManage/tags/dialog/dicList.vue | 4 +- .../documentManage/tags/tabs/tagContent.vue | 20 ++- 5 files changed, 93 insertions(+), 75 deletions(-) diff --git a/jero-web/src/components/ocrAddForm/index.vue b/jero-web/src/components/ocrAddForm/index.vue index daed13cb8..794bdc370 100644 --- a/jero-web/src/components/ocrAddForm/index.vue +++ b/jero-web/src/components/ocrAddForm/index.vue @@ -271,9 +271,8 @@ }, methods: { sumber() { - console.log('vilidate',this.formInline) + // console.log('vilidate',this.formInline) this.$refs.ruleForm1.validate(valid => { - console.log('va',valid) if (valid) { let url = '' if (this.formInline.id) { @@ -310,7 +309,12 @@ /** 赋值给当前对应的表单文件 */ this.formInline[this.uploadName] = attIdList.join(',') this.formInline = { ...this.formInline } - console.log('form',this.formInline) + // console.log('form',this.formInline) + }else{ + this.formInline[this.uploadName]='' + this.formInline = { ...this.formInline } + // console.log('form',this.formInline) + } }, handleInput(value) { diff --git a/jero-web/src/components/ocrUpload/index.vue b/jero-web/src/components/ocrUpload/index.vue index 3c2bb46a0..2fd79aa8d 100644 --- a/jero-web/src/components/ocrUpload/index.vue +++ b/jero-web/src/components/ocrUpload/index.vue @@ -7,7 +7,7 @@ class="ant-upload-list" name="file" :file-list="myfileList" - :multiple="true" + :multiple="false" :action = 'uploadAction' :headers="headers" :before-upload="beforeUpload" @@ -47,19 +47,23 @@ // console.log(this.thisFileType,this.thisFileSize,this.thisFileUploadUrl); }, methods:{ - beforeUpload(file) { - // console.log(file) - // let thisFileType = this.thisFileType.replace(/\s+/g, ""); - if(file.type==this.accept){ - this.fileTypeSatus = true; - this.$message.destroy() - // 207M.doc文件大小超出100MB限制, 请压缩或降低文件质量! - this.errorMessage = file.name + "文件大小超出100MB限制, 请压缩或降低文件质量!"; + beforeUpload(file,fileList) { + if(this.myfileList&&this.myfileList.length>=1){ + this.$message.warning('只能上传一个文件') + return false + }else{ + // let thisFileType = this.thisFileType.replace(/\s+/g, ""); + if(file.type==this.accept){ + this.fileTypeSatus = true; + this.$message.destroy() + // 207M.doc文件大小超出100MB限制, 请压缩或降低文件质量! + this.errorMessage = file.name + "文件大小超出100MB限制, 请压缩或降低文件质量!"; + } } - }, remove(){ this.fileTypeSatus = true; + // console.log('rrr',this.myfileList) }, handleChange(info) { // console.log('info',info) @@ -71,38 +75,18 @@ info.fileList.splice(index,1) } }) - if (this.fileTypeSatus) { - if (file.size > 100000000) { - this.$message.error(this.errorMessage) - return - }else { - if (status === 'error') { - this.$emit('uploadSuccess', this.fileList) - this.$message.destroy() - this.$message.error(`${info.file.name} 文件上传失败。`); - } else if (status === 'removed') { - this.myfileList = info.fileList; - this.fileList = [] - this.myfileList.forEach((res) => { - if (res.response) { - this.fileList.push(res.response.result) - } else { - this.fileList.push(res) - } - }) - this.$emit('uploadSuccess', this.fileList) - if(this.myfileList.length > 0){ + if (this.fileTypeSatus) { + if (file.size > 100000000) { + this.$message.error(this.errorMessage) + return + }else { + if (status === 'error') { + this.$emit('uploadSuccess', this.fileList) this.$message.destroy() - this.$message.success(`${info.file.name} 删除成功。`); - } - } else if (status === 'done') { - this.fileList = [] - this.myfileList = info.fileList; - // console.log('file3333',info.fileList) - if (info.fileList.length > 20) { - info.fileList.splice(20) - // this.myfileList = info.fileList; - + this.$message.error(`${info.file.name} 文件上传失败。`); + } else if (status === 'removed') { + this.myfileList = info.fileList; + this.fileList = [] this.myfileList.forEach((res) => { if (res.response) { this.fileList.push(res.response.result) @@ -110,36 +94,55 @@ this.fileList.push(res) } }) - // console.log('file1111',this.fileList) + // console.log('remove',this.fileList) this.$emit('uploadSuccess', this.fileList) this.$message.destroy() - this.$message.error('最多只能上传二十个'); - return - } - // console.log('my222',this.myfileList) - this.myfileList.forEach((res) => { - if (res.response) { - this.fileList.push(res.response.result) - // console.log('flist',res.response) - } else { - this.fileList.push(res) - } - }) + this.$message.success(`${info.file.name} 删除成功。`); + } else if (status === 'done') { + this.fileList = [] + this.myfileList = info.fileList; + // console.log('file3333',info.fileList) + if (info.fileList.length > 1) { + info.fileList.splice(1) + // this.myfileList = info.fileList; - if(this.myfileList.length > 0){ - this.$emit('uploadSuccess', this.fileList) - this.$message.destroy() - this.$message.success(`${info.file.name} 文件上传成功。`); + this.myfileList.forEach((res) => { + if (res.response) { + this.fileList.push(res.response.result) + } else { + this.fileList.push(res) + } + }) + // console.log('file1111',this.fileList) + this.$emit('uploadSuccess', this.fileList) + this.$message.destroy() + this.$message.error('最多只能上传一个文件'); + return + } + // console.log('my222',this.myfileList) + this.myfileList.forEach((res) => { + if (res.response) { + this.fileList.push(res.response.result) + // console.log('flist',res.response) + } else { + this.fileList.push(res) + } + }) + + if(this.myfileList.length > 0){ + this.$emit('uploadSuccess', this.fileList) + this.$message.destroy() + this.$message.success(`${info.file.name} 文件上传成功。`); + } + } else if (status === 'uploading') { + this.myfileList = info.fileList; + this.$emit('uploadSuccess') + // this.$message.success(`${info.file.name} 文件上传成功。`); } - } else if (status === 'uploading') { - this.myfileList = info.fileList; - this.$emit('uploadSuccess') - // this.$message.success(`${info.file.name} 文件上传成功。`); } + }else{ + this.$message.warning('不支持上传该类型的文件!') } - }else{ - this.$message.warning('不支持上传该类型的文件!') - } }, } } diff --git a/jero-web/src/views/documentManage/tags/dialog/areaManage.vue b/jero-web/src/views/documentManage/tags/dialog/areaManage.vue index a51a0d19d..db85f339d 100644 --- a/jero-web/src/views/documentManage/tags/dialog/areaManage.vue +++ b/jero-web/src/views/documentManage/tags/dialog/areaManage.vue @@ -267,6 +267,7 @@ deleteAction(`tag/onlCgformArea/delete`, { id: val }).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')); + this.queryParams.pageNo=1 this.loadData() }else{ this.$message.warning(this.$t('operationFailed')); diff --git a/jero-web/src/views/documentManage/tags/dialog/dicList.vue b/jero-web/src/views/documentManage/tags/dialog/dicList.vue index 5b21c47cc..c060b1603 100644 --- a/jero-web/src/views/documentManage/tags/dialog/dicList.vue +++ b/jero-web/src/views/documentManage/tags/dialog/dicList.vue @@ -353,6 +353,7 @@ deleteAction(`sys/dictItem/delete`, params).then(res => { if(res.success) { this.$message.success(this.$t('OperationSuccessful')); + this.queryParams.pageNo=1 this.loadData() }else{ this.$message.warning(this.$t('operationFailed')); @@ -381,6 +382,7 @@ async () => { deleteAction(`sys/category/deleteBatch`, params).then(res => { if(res.success){ + this.queryParams.pageNo=1 this.loadData() this.$message.success(this.$t('OperationSuccessful')) }else{ @@ -394,7 +396,7 @@ } }, ok(val){ - this.queryParams.pageNo=val.pageSize + this.queryParams.pageNo=val.pageNo this.queryParams.pageSize=val.pageSize this.loadData() } diff --git a/jero-web/src/views/documentManage/tags/tabs/tagContent.vue b/jero-web/src/views/documentManage/tags/tabs/tagContent.vue index 4a30135d6..01a70ac37 100644 --- a/jero-web/src/views/documentManage/tags/tabs/tagContent.vue +++ b/jero-web/src/views/documentManage/tags/tabs/tagContent.vue @@ -32,17 +32,17 @@ :label-col="labelCol" :wrapper-col="wrapperCol" > - + - + - + \ No newline at end of file From 893ce0b7314e9de64e66e610b4e200b1f19ff529 Mon Sep 17 00:00:00 2001 From: xiejunyu Date: Tue, 8 Mar 2022 21:02:33 +0800 Subject: [PATCH 02/26] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/controller/SysDictController.java | 31 ++++++++++-------- .../controller/OnlCgformTagController.java | 32 ++++--------------- .../tag/mapper/OnlCgformTagMapper.java | 7 ++-- .../service/impl/OnlCgformTagServiceImpl.java | 21 ++++++++++++ 4 files changed, 50 insertions(+), 41 deletions(-) diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/controller/SysDictController.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/controller/SysDictController.java index dd18e97f6..7184b847c 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/controller/SysDictController.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/controller/SysDictController.java @@ -369,22 +369,27 @@ public class SysDictController { Result result = new Result(); try { Integer count = sysDictService.queryExitData(sysDict); + Integer countDictName=sysDictService.queryExitDictName(sysDict); System.out.println("count="+count); - - if (count > 0) { - sysDict.setDelFlag(CommonConstant.DEL_FLAG_0); - } else { - if(sysDict.getIsTagDict() == 1){ - String pinYin = HanYuPinYinUtil.changeToNumberPinYin(sysDict.getDictName()); - sysDict.setDictCode(pinYin); + if (countDictName > 0) { + result.error500("标签名称不能重复"); + }else{ + //判断逻辑删除 + if (count > 0) { + sysDict.setDelFlag(CommonConstant.DEL_FLAG_0); + } else { + if(sysDict.getIsTagDict() == 1){ + String pinYin = HanYuPinYinUtil.changeToNumberPinYin(sysDict.getDictName()); + sysDict.setDictCode(pinYin.replace(" ","_")); + } + sysDict.setCreateTime(new Date()); + sysDict.setDelFlag(CommonConstant.DEL_FLAG_0); + sysDictService.save(sysDict); } - sysDict.setCreateTime(new Date()); - sysDict.setDelFlag(CommonConstant.DEL_FLAG_0); - sysDictService.save(sysDict); + result.success("保存成功!"); + //添加成功后需要刷新缓存 + sysDictService.refreshCache(); } - result.success("保存成功!"); - //添加成功后需要刷新缓存 - sysDictService.refreshCache(); } catch (Exception e) { log.error(e.getMessage(),e); result.error500("操作失败"); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/controller/OnlCgformTagController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/controller/OnlCgformTagController.java index 26e4a7b4e..54ba9f9d0 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/controller/OnlCgformTagController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/controller/OnlCgformTagController.java @@ -3,14 +3,13 @@ package com.jero.modules.tag.controller; import com.baomidou.mybatisplus.core.metadata.IPage; import com.jero.common.api.vo.Result; import com.jero.common.aspect.annotation.AutoLog; -import com.jero.common.constant.CommonConstant; import com.jero.common.system.base.controller.JeroController; +import com.jero.generater.modules.online.cgform.controller.OnlCgformApiController; import com.jero.modules.enums.FixedFieldEnum; import com.jero.modules.system.service.impl.SysDictItemServiceImpl; import com.jero.modules.tag.entity.OnlCgformArea; import com.jero.modules.tag.entity.OnlCgformTag; import com.jero.modules.tag.service.IOnlCgformTagService; -import com.jero.modules.utils.HanYuPinYinUtil; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; @@ -23,7 +22,6 @@ import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.util.Arrays; -import java.util.Date; import java.util.List; import java.util.Map; @@ -46,6 +44,8 @@ public class OnlCgformTagController extends JeroController add(@Validated @RequestBody OnlCgformTag onlCgformTag) { - Integer count=onlCgformTagService.queryExitData(onlCgformTag); - if (count > 0) { - onlCgformTag.setIsDelete(CommonConstant.DEL_FLAG_0); - } else { - onlCgformTag.setCreateTime(new Date()); - onlCgformTag.setIsDelete(CommonConstant.DEL_FLAG_0); - onlCgformTag.setCgformHeadId("48308196e7b04761b533dc31bc899707");//设置文档库-表id - onlCgformTag.setDbIsKey(0); - onlCgformTag.setDbIsNull(1); - onlCgformTag.setDbPointLength(0); - String pinYin = HanYuPinYinUtil.changeToNumberPinYin(onlCgformTag.getDbFieldTxt()); - onlCgformTag.setDbFieldName(pinYin.replace(" ","_")); - onlCgformTag.setDbFieldEnName(onlCgformTag.getDbFieldEnName().replace(" ","_")); - if(onlCgformTag.getFieldShowType()=="2"){ - onlCgformTag.setDbType("int"); - }else if(onlCgformTag.getFieldShowType()=="5" && onlCgformTag.getFieldShowType()=="6"){ - onlCgformTag.setDbType("Date"); - }else{ - onlCgformTag.setDbType("String"); - } - onlCgformTagService.add(onlCgformTag); - } + onlCgformTagService.add(onlCgformTag); + onlCgformApiController.h("48308196e7b04761b533dc31bc899707","normal"); return Result.OK("添加成功!"); } @@ -121,6 +101,7 @@ public class OnlCgformTagController extends JeroController { @Select("select f.id,f.create_by,f.create_time,f.update_by,f.update_time,f.cgform_head_id,\n" + "f.is_model,f.db_field_txt,f.db_field_en_name,\n" + - "f.field_show_type,i.item_text,f.dict_id,f.db_length,\n" + - "f.order_num,f.field_must_input,f.is_show_form,f.is_show_list,\n" + - "f.is_read_only,f.show_area,a.show_area as show_area_name,f.is_query,f.is_show_laws_list,f.is_show_search,f.is_delete,\n" + + "f.field_show_type,i.item_text as field_show_type_name,\n" + + "f.dict_id,f.db_length,f.order_num,f.field_must_input,\n" + + "f.is_show_form,f.is_show_list,f.is_read_only,\n" + + "f.show_area,a.show_area as show_area_name,f.is_query,f.is_show_laws_list,f.is_show_search,f.is_delete,\n" + "f.db_field_name,f.db_is_key,f.db_is_null,f.db_point_length,f.db_type,\n" + "i.en_name as field_show_type_en_name,a.en_name as show_area_en_name\n" + "from onl_cgform_field as f \n" + diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java index 434458801..071babbb7 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java @@ -43,6 +43,27 @@ public class OnlCgformTagServiceImpl extends ServiceImpl 0) { + onlCgformTag.setIsDelete(CommonConstant.DEL_FLAG_0); + } else { + onlCgformTag.setIsDelete(CommonConstant.DEL_FLAG_0); + onlCgformTag.setCgformHeadId("48308196e7b04761b533dc31bc899707");//设置文档库-表id + onlCgformTag.setDbIsKey(0); + onlCgformTag.setDbIsNull(1); + onlCgformTag.setDbPointLength(0); + onlCgformTag.setIsReadOnly(0); + String pinYin = HanYuPinYinUtil.changeToNumberPinYin(onlCgformTag.getDbFieldTxt()); + onlCgformTag.setDbFieldName(pinYin.replace(" ","_")); + onlCgformTag.setDbFieldEnName(onlCgformTag.getDbFieldEnName().replace(" ","_")); + if(onlCgformTag.getFieldShowType()=="2"){ + onlCgformTag.setDbType("int"); + }else if(onlCgformTag.getFieldShowType()=="5" && onlCgformTag.getFieldShowType()=="6"){ + onlCgformTag.setDbType("Date"); + }else{ + onlCgformTag.setDbType("String"); + } + } Date now = new Date(); onlCgformTag.setCreateTime(now); onlCgformTag.setUpdateTime(now); From b7b3b4329d8bf9ec0ab65aa95c45099960071178 Mon Sep 17 00:00:00 2001 From: zhn <947514737@qq.com> Date: Wed, 9 Mar 2022 09:09:46 +0800 Subject: [PATCH 03/26] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=BA=93--=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0=E6=96=87=E4=BB=B6=E6=A0=BC=E5=BC=8F=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jero/modules/oss/service/impl/OSSFileServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/oss/service/impl/OSSFileServiceImpl.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/oss/service/impl/OSSFileServiceImpl.java index 124588073..7e789d729 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/oss/service/impl/OSSFileServiceImpl.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/oss/service/impl/OSSFileServiceImpl.java @@ -80,7 +80,7 @@ public class OSSFileServiceImpl extends ServiceImpl impl fileType = orgName.substring(orgName.lastIndexOf(".")); //判断文件类型 if (StringUtils.isNotEmpty(fileType)) { - String[] fileTypeArr = {".doc", ".docx", ".xls", ".xlsx", ".pdf", ".png", ".jfif", ".pjpeg", ".jpeg", ".pjp", ".jpg", ".swf", ".bmp",".rar",".zip"}; + String[] fileTypeArr = {".doc",".DOC","txt","TXT", ".docx",".DOCX", ".xls", ".XLS",".xlsx",".XLSX", ".pdf",".PDF", ".png",".PNG", ".jfif",".JFIF", ".pjpeg",".PJPEG", ".jpeg",".JPEG", ".pjp",".PJP", ".jpg",".JPG", ".swf",".SWF", ".bmp",".BMP",".rar",".RAR",".zip",".ZIP"}; boolean flag = true; for (String fileTypeTemp : fileTypeArr) { if (fileTypeTemp.equalsIgnoreCase(fileType)) { From 93929740ae019f55683923f86792d2179c12e163 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Wed, 9 Mar 2022 09:51:01 +0800 Subject: [PATCH 04/26] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93?= =?UTF-8?q?=E5=B7=B2=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/public/color.less | 1813 +++++++++++++++++++++++++++++++----- jero-web/src/App.vue | 14 +- 2 files changed, 1606 insertions(+), 221 deletions(-) diff --git a/jero-web/public/color.less b/jero-web/public/color.less index f206ced63..baf657fd3 100644 --- a/jero-web/public/color.less +++ b/jero-web/public/color.less @@ -107,6 +107,7 @@ return ''; })()`; } + // It is hacky way to make this function will be compiled preferentially by less // resolve error: `ReferenceError: colorPalette is not defined` // https://github.com/ant-design/ant-motion/issues/44 @@ -1292,6 +1293,7 @@ this.tinycolor = tinycolor; })()`; } + // It is hacky way to make this function will be compiled preferentially by less // resolve error: `ReferenceError: colorPalette is not defined` // https://github.com/ant-design/ant-motion/issues/44 @@ -1364,6 +1366,7 @@ this.tinycolor = tinycolor; }; })()`; } + // It is hacky way to make this function will be compiled preferentially by less // resolve error: `ReferenceError: colorPalette is not defined` // https://github.com/ant-design/ant-motion/issues/44 @@ -1515,59 +1518,59 @@ this.tinycolor = tinycolor; @gold-10: color(~`colorPalette("@{gold-6}", 10)`); // The prefix to use on all css classes from ant. -@ant-prefix : ant; +@ant-prefix: ant; // -------- Colors ----------- -@info-color : @blue-6; -@success-color : @green-6; -@processing-color : @blue-6; -@error-color : @red-6; -@highlight-color : @red-6; -@warning-color : @gold-6; -@normal-color : #d9d9d9; +@info-color: @blue-6; +@success-color: @green-6; +@processing-color: @blue-6; +@error-color: @red-6; +@highlight-color: @red-6; +@warning-color: @gold-6; +@normal-color: #d9d9d9; // Color used by default to control hover and active backgrounds and for // alert info backgrounds. -@primary-1: color(~`colorPalette("@{primary-color}", 1)`); // replace tint(@primary-color, 90%) -@primary-2: color(~`colorPalette("@{primary-color}", 2)`); // replace tint(@primary-color, 80%) -@primary-3: color(~`colorPalette("@{primary-color}", 3)`); // unused -@primary-4: color(~`colorPalette("@{primary-color}", 4)`); // unused -@primary-5: color(~`colorPalette("@{primary-color}", 5)`); // color used to control the text color in many active and hover states, replace tint(@primary-color, 20%) -@primary-6: @primary-color; // color used to control the text color of active buttons, don't use, use @primary-color -@primary-7: color(~`colorPalette("@{primary-color}", 7)`); // replace shade(@primary-color, 5%) -@primary-8: color(~`colorPalette("@{primary-color}", 8)`); // unused -@primary-9: color(~`colorPalette("@{primary-color}", 9)`); // unused -@primary-10: color(~`colorPalette("@{primary-color}", 10)`); // unused +@primary-1: color(~`colorPalette("@{primary-color}", 1)`); // replace tint(@primary-color, 90%) +@primary-2: color(~`colorPalette("@{primary-color}", 2)`); // replace tint(@primary-color, 80%) +@primary-3: color(~`colorPalette("@{primary-color}", 3)`); // unused +@primary-4: color(~`colorPalette("@{primary-color}", 4)`); // unused +@primary-5: color(~`colorPalette("@{primary-color}", 5)`); // color used to control the text color in many active and hover states, replace tint(@primary-color, 20%) +@primary-6: @primary-color; // color used to control the text color of active buttons, don't use, use @primary-color +@primary-7: color(~`colorPalette("@{primary-color}", 7)`); // replace shade(@primary-color, 5%) +@primary-8: color(~`colorPalette("@{primary-color}", 8)`); // unused +@primary-9: color(~`colorPalette("@{primary-color}", 9)`); // unused +@primary-10: color(~`colorPalette("@{primary-color}", 10)`); // unused // Base Scaffolding Variables // --- // Background color for `` -@body-background : #fff; +@body-background: #fff; // Base background color for most components -@component-background : #fff; -@font-family : "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, +@component-background: #fff; +@font-family: "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; -@code-family : "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; -@heading-color : fade(#000, 85%); -@text-color : fade(#000, 65%); -@text-color-secondary : fade(#000, 45%); -@heading-color-dark : fade(#fff, 100%); -@text-color-dark : fade(#fff, 85%); +@code-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; +@heading-color: fade(#000, 85%); +@text-color: fade(#000, 65%); +@text-color-secondary: fade(#000, 45%); +@heading-color-dark: fade(#fff, 100%); +@text-color-dark: fade(#fff, 85%); @text-color-secondary-dark: fade(#fff, 65%); -@font-size-base : 14px; -@font-size-lg : @font-size-base + 2px; -@font-size-sm : 12px; -@line-height-base : 1.5; -@border-radius-base : 4px; -@border-radius-sm : 2px; +@font-size-base: 14px; +@font-size-lg: @font-size-base + 2px; +@font-size-sm: 12px; +@line-height-base: 1.5; +@border-radius-base: 4px; +@border-radius-sm: 2px; // vertical paddings -@padding-lg : 24px; // containers -@padding-md : 16px; // small containers and buttons -@padding-sm : 12px; // Form controls and items -@padding-xs : 8px; // small items +@padding-lg: 24px; // containers +@padding-md: 16px; // small containers and buttons +@padding-sm: 12px; // Form controls and items +@padding-xs: 8px; // small items // vertical padding for all form controls @control-padding-horizontal: @padding-sm; @@ -1575,179 +1578,179 @@ this.tinycolor = tinycolor; // The background colors for active and hover states for things like // list items or table cells. -@item-active-bg : @primary-1; -@item-hover-bg : @primary-1; +@item-active-bg: @primary-1; +@item-hover-bg: @primary-1; // ICONFONT -@iconfont-css-prefix : anticon; +@iconfont-css-prefix: anticon; // LINK -@link-color : @primary-color; -@link-hover-color : color(~`colorPalette("@{link-color}", 5)`); -@link-active-color : color(~`colorPalette("@{link-color}", 7)`); -@link-decoration : none; -@link-hover-decoration : none; +@link-color: @primary-color; +@link-hover-color: color(~`colorPalette("@{link-color}", 5)`); +@link-active-color: color(~`colorPalette("@{link-color}", 7)`); +@link-decoration: none; +@link-hover-decoration: none; // Animation -@ease-base-out : cubic-bezier(0.7, 0.3, 0.1, 1); -@ease-base-in : cubic-bezier(0.9, 0, 0.3, 0.7); -@ease-out : cubic-bezier(0.215, 0.61, 0.355, 1); -@ease-in : cubic-bezier(0.55, 0.055, 0.675, 0.19); -@ease-in-out : cubic-bezier(0.645, 0.045, 0.355, 1); -@ease-out-back : cubic-bezier(0.12, 0.4, 0.29, 1.46); -@ease-in-back : cubic-bezier(0.71, -0.46, 0.88, 0.6); -@ease-in-out-back : cubic-bezier(0.71, -0.46, 0.29, 1.46); -@ease-out-circ : cubic-bezier(0.08, 0.82, 0.17, 1); -@ease-in-circ : cubic-bezier(0.6, 0.04, 0.98, 0.34); -@ease-in-out-circ : cubic-bezier(0.78, 0.14, 0.15, 0.86); -@ease-out-quint : cubic-bezier(0.23, 1, 0.32, 1); -@ease-in-quint : cubic-bezier(0.755, 0.05, 0.855, 0.06); -@ease-in-out-quint : cubic-bezier(0.86, 0, 0.07, 1); +@ease-base-out: cubic-bezier(0.7, 0.3, 0.1, 1); +@ease-base-in: cubic-bezier(0.9, 0, 0.3, 0.7); +@ease-out: cubic-bezier(0.215, 0.61, 0.355, 1); +@ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19); +@ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1); +@ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46); +@ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6); +@ease-in-out-back: cubic-bezier(0.71, -0.46, 0.29, 1.46); +@ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1); +@ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.34); +@ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86); +@ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1); +@ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06); +@ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1); // Border color -@border-color-base : hsv(0, 0, 85%); // base border outline a component -@border-color-split : hsv(0, 0, 91%); // split border inside a component -@border-width-base : 1px; // width of the border for a component -@border-style-base : solid; // style of a components border +@border-color-base: hsv(0, 0, 85%); // base border outline a component +@border-color-split: hsv(0, 0, 91%); // split border inside a component +@border-width-base: 1px; // width of the border for a component +@border-style-base: solid; // style of a components border // Outline -@outline-blur-size : 0; -@outline-width : 2px; -@outline-color : @primary-color; +@outline-blur-size: 0; +@outline-width: 2px; +@outline-color: @primary-color; -@background-color-light : hsv(0, 0, 98%); // background of header and selected item -@background-color-base : hsv(0, 0, 96%); // Default grey background color +@background-color-light: hsv(0, 0, 98%); // background of header and selected item +@background-color-base: hsv(0, 0, 96%); // Default grey background color // Disabled states -@disabled-color : fade(#000, 25%); -@disabled-bg : @background-color-base; -@disabled-color-dark : fade(#fff, 35%); +@disabled-color: fade(#000, 25%); +@disabled-bg: @background-color-base; +@disabled-color-dark: fade(#fff, 35%); // Shadow -@shadow-color : rgba(0, 0, 0, .15); -@box-shadow-base : @shadow-1-down; -@shadow-1-up : 0 -2px 8px @shadow-color; -@shadow-1-down : 0 2px 8px @shadow-color; -@shadow-1-left : -2px 0 8px @shadow-color; -@shadow-1-right : 2px 0 8px @shadow-color; -@shadow-2 : 0 4px 12px @shadow-color; +@shadow-color: rgba(0, 0, 0, .15); +@box-shadow-base: @shadow-1-down; +@shadow-1-up: 0 -2px 8px @shadow-color; +@shadow-1-down: 0 2px 8px @shadow-color; +@shadow-1-left: -2px 0 8px @shadow-color; +@shadow-1-right: 2px 0 8px @shadow-color; +@shadow-2: 0 4px 12px @shadow-color; // Buttons -@btn-font-weight : 400; -@btn-border-radius-base : @border-radius-base; -@btn-border-radius-sm : @border-radius-base; +@btn-font-weight: 400; +@btn-border-radius-base: @border-radius-base; +@btn-border-radius-sm: @border-radius-base; -@btn-primary-color : #fff; -@btn-primary-bg : @primary-color; +@btn-primary-color: #fff; +@btn-primary-bg: @primary-color; -@btn-default-color : @text-color; -@btn-default-bg : #fff; -@btn-default-border : @border-color-base; +@btn-default-color: @text-color; +@btn-default-bg: #fff; +@btn-default-border: @border-color-base; -@btn-danger-color : @error-color; -@btn-danger-bg : @background-color-base; -@btn-danger-border : @border-color-base; +@btn-danger-color: @error-color; +@btn-danger-bg: @background-color-base; +@btn-danger-border: @border-color-base; -@btn-disable-color : @disabled-color; -@btn-disable-bg : @disabled-bg; -@btn-disable-border : @border-color-base; +@btn-disable-color: @disabled-color; +@btn-disable-bg: @disabled-bg; +@btn-disable-border: @border-color-base; -@btn-padding-base : 0 @padding-md - 1px; -@btn-font-size-lg : @font-size-lg; -@btn-font-size-sm : @font-size-base; -@btn-padding-lg : @btn-padding-base; -@btn-padding-sm : 0 @padding-xs - 1px; +@btn-padding-base: 0 @padding-md - 1px; +@btn-font-size-lg: @font-size-lg; +@btn-font-size-sm: @font-size-base; +@btn-padding-lg: @btn-padding-base; +@btn-padding-sm: 0 @padding-xs - 1px; -@btn-height-base : 32px; -@btn-height-lg : 40px; -@btn-height-sm : 24px; +@btn-height-base: 32px; +@btn-height-lg: 40px; +@btn-height-sm: 24px; -@btn-circle-size : @btn-height-base; -@btn-circle-size-lg : @btn-height-lg; -@btn-circle-size-sm : @btn-height-sm; +@btn-circle-size: @btn-height-base; +@btn-circle-size-lg: @btn-height-lg; +@btn-circle-size-sm: @btn-height-sm; -@btn-group-border : @primary-5; +@btn-group-border: @primary-5; // Checkbox -@checkbox-size : 16px; -@checkbox-color : @primary-color; -@checkbox-check-color : #fff; +@checkbox-size: 16px; +@checkbox-color: @primary-color; +@checkbox-check-color: #fff; // Radio -@radio-size : 16px; -@radio-dot-color : @primary-color; +@radio-size: 16px; +@radio-dot-color: @primary-color; // Radio buttons -@radio-button-bg : @btn-default-bg; -@radio-button-color : @btn-default-color; -@radio-button-hover-color : @primary-5; -@radio-button-active-color : @primary-7; +@radio-button-bg: @btn-default-bg; +@radio-button-color: @btn-default-color; +@radio-button-hover-color: @primary-5; +@radio-button-active-color: @primary-7; // Media queries breakpoints // Extra small screen / phone -@screen-xs : 480px; -@screen-xs-min : @screen-xs; +@screen-xs: 480px; +@screen-xs-min: @screen-xs; // Small screen / tablet -@screen-sm : 576px; -@screen-sm-min : @screen-sm; +@screen-sm: 576px; +@screen-sm-min: @screen-sm; // Medium screen / desktop -@screen-md : 768px; -@screen-md-min : @screen-md; +@screen-md: 768px; +@screen-md-min: @screen-md; // Large screen / wide desktop -@screen-lg : 992px; -@screen-lg-min : @screen-lg; +@screen-lg: 992px; +@screen-lg-min: @screen-lg; // Extra large screen / full hd -@screen-xl : 1200px; -@screen-xl-min : @screen-xl; +@screen-xl: 1200px; +@screen-xl-min: @screen-xl; // Extra extra large screen / large descktop -@screen-xxl : 1600px; -@screen-xxl-min : @screen-xxl; +@screen-xxl: 1600px; +@screen-xxl-min: @screen-xxl; // provide a maximum -@screen-xs-max : (@screen-sm-min - 1px); -@screen-sm-max : (@screen-md-min - 1px); -@screen-md-max : (@screen-lg-min - 1px); -@screen-lg-max : (@screen-xl-min - 1px); -@screen-xl-max : (@screen-xxl-min - 1px); +@screen-xs-max: (@screen-sm-min - 1px); +@screen-sm-max: (@screen-md-min - 1px); +@screen-md-max: (@screen-lg-min - 1px); +@screen-lg-max: (@screen-xl-min - 1px); +@screen-xl-max: (@screen-xxl-min - 1px); // Grid system -@grid-columns : 24; -@grid-gutter-width : 0; +@grid-columns: 24; +@grid-gutter-width: 0; // Layout -@layout-body-background : #f0f2f5; -@layout-header-background : #001529; -@layout-footer-background : @layout-body-background; -@layout-header-height : 64px; -@layout-header-padding : 0 50px; -@layout-footer-padding : 24px 50px; -@layout-sider-background : @layout-header-background; -@layout-trigger-height : 48px; -@layout-trigger-background : #002140; -@layout-trigger-color : #fff; -@layout-zero-trigger-width : 36px; -@layout-zero-trigger-height : 42px; +@layout-body-background: #f0f2f5; +@layout-header-background: #001529; +@layout-footer-background: @layout-body-background; +@layout-header-height: 64px; +@layout-header-padding: 0 50px; +@layout-footer-padding: 24px 50px; +@layout-sider-background: @layout-header-background; +@layout-trigger-height: 48px; +@layout-trigger-background: #002140; +@layout-trigger-color: #fff; +@layout-zero-trigger-width: 36px; +@layout-zero-trigger-height: 42px; // Layout light theme -@layout-sider-background-light : #fff; +@layout-sider-background-light: #fff; @layout-trigger-background-light: #fff; -@layout-trigger-color-light : @text-color; +@layout-trigger-color-light: @text-color; // z-index list -@zindex-affix : 10; -@zindex-back-top : 10; -@zindex-modal-mask : 1000; -@zindex-modal : 1000; -@zindex-notification : 1010; -@zindex-message : 1010; -@zindex-popover : 1030; -@zindex-picker : 1050; -@zindex-dropdown : 1050; -@zindex-tooltip : 1060; +@zindex-affix: 10; +@zindex-back-top: 10; +@zindex-modal-mask: 1000; +@zindex-modal: 1000; +@zindex-notification: 1010; +@zindex-message: 1010; +@zindex-popover: 1030; +@zindex-picker: 1050; +@zindex-dropdown: 1050; +@zindex-tooltip: 1060; // Animation @animation-duration-slow: .3s; // Modal @@ -1756,33 +1759,33 @@ this.tinycolor = tinycolor; // Form // --- -@label-required-color : @highlight-color; -@label-color : @heading-color; -@form-item-margin-bottom : 24px; -@form-item-trailing-colon : true; -@form-vertical-label-padding : 0 0 8px; -@form-vertical-label-margin : 0; +@label-required-color: @highlight-color; +@label-color: @heading-color; +@form-item-margin-bottom: 24px; +@form-item-trailing-colon: true; +@form-vertical-label-padding: 0 0 8px; +@form-vertical-label-margin: 0; // Input // --- -@input-height-base : 32px; -@input-height-lg : 40px; -@input-height-sm : 24px; -@input-padding-horizontal : @control-padding-horizontal - 1px; +@input-height-base: 32px; +@input-height-lg: 40px; +@input-height-sm: 24px; +@input-padding-horizontal: @control-padding-horizontal - 1px; @input-padding-horizontal-base: @input-padding-horizontal; -@input-padding-horizontal-sm : @control-padding-horizontal-sm - 1px; -@input-padding-horizontal-lg : @input-padding-horizontal; -@input-padding-vertical-base : 4px; -@input-padding-vertical-sm : 1px; -@input-padding-vertical-lg : 6px; -@input-placeholder-color : hsv(0, 0, 75%); -@input-color : @text-color; -@input-border-color : @border-color-base; -@input-bg : #fff; -@input-addon-bg : @background-color-light; -@input-hover-border-color : @primary-color; -@input-disabled-bg : @disabled-bg; -@input-outline-offset : 0 0; +@input-padding-horizontal-sm: @control-padding-horizontal-sm - 1px; +@input-padding-horizontal-lg: @input-padding-horizontal; +@input-padding-vertical-base: 4px; +@input-padding-vertical-sm: 1px; +@input-padding-vertical-lg: 6px; +@input-placeholder-color: hsv(0, 0, 75%); +@input-color: @text-color; +@input-border-color: @border-color-base; +@input-bg: #fff; +@input-addon-bg: @background-color-light; +@input-hover-border-color: @primary-color; +@input-disabled-bg: @disabled-bg; +@input-outline-offset: 0 0; // Tooltip // --- @@ -1960,57 +1963,57 @@ this.tinycolor = tinycolor; // Breadcrumb // --- -@breadcrumb-base-color: @text-color-secondary; -@breadcrumb-last-item-color: @text-color; -@breadcrumb-font-size: @font-size-base; -@breadcrumb-icon-font-size: @font-size-base; -@breadcrumb-link-color: @text-color-secondary; -@breadcrumb-link-color-hover: @primary-5; -@breadcrumb-separator-color: @text-color-secondary; -@breadcrumb-separator-margin: 0 @padding-xs; +@breadcrumb-base-color: @text-color-secondary; +@breadcrumb-last-item-color: @text-color; +@breadcrumb-font-size: @font-size-base; +@breadcrumb-icon-font-size: @font-size-base; +@breadcrumb-link-color: @text-color-secondary; +@breadcrumb-link-color-hover: @primary-5; +@breadcrumb-separator-color: @text-color-secondary; +@breadcrumb-separator-margin: 0 @padding-xs; // Slider // --- -@slider-margin: 14px 6px 10px; -@slider-rail-background-color: @background-color-base; -@slider-rail-background-color-hover: #e1e1e1; -@slider-track-background-color: @primary-3; +@slider-margin: 14px 6px 10px; +@slider-rail-background-color: @background-color-base; +@slider-rail-background-color-hover: #e1e1e1; +@slider-track-background-color: @primary-3; @slider-track-background-color-hover: @primary-4; -@slider-handle-color: @primary-3; -@slider-handle-color-hover: @primary-4; -@slider-handle-color-focus: tint(@primary-color, 20%); -@slider-handle-color-focus-shadow: tint(@primary-color, 50%); -@slider-handle-color-tooltip-open: @primary-color; -@slider-dot-border-color: @border-color-split; -@slider-dot-border-color-active: tint(@primary-color, 50%); -@slider-disabled-color: @disabled-color; -@slider-disabled-background-color: @component-background; +@slider-handle-color: @primary-3; +@slider-handle-color-hover: @primary-4; +@slider-handle-color-focus: tint(@primary-color, 20%); +@slider-handle-color-focus-shadow: tint(@primary-color, 50%); +@slider-handle-color-tooltip-open: @primary-color; +@slider-dot-border-color: @border-color-split; +@slider-dot-border-color-active: tint(@primary-color, 50%); +@slider-disabled-color: @disabled-color; +@slider-disabled-background-color: @component-background; // Tree // --- -@tree-title-height: 24px; -@tree-child-padding: 18px; -@tree-directory-selected-color: #fff; -@tree-directory-selected-bg: @primary-color; +@tree-title-height: 24px; +@tree-child-padding: 18px; +@tree-directory-selected-color: #fff; +@tree-directory-selected-bg: @primary-color; // Collapse // --- -@collapse-header-padding: 12px 0 12px 40px; -@collapse-header-bg: @background-color-light; -@collapse-content-padding: @padding-md; -@collapse-content-bg: @component-background; +@collapse-header-padding: 12px 0 12px 40px; +@collapse-header-bg: @background-color-light; +@collapse-content-padding: @padding-md; +@collapse-content-bg: @component-background; // Skeleton // --- -@skeleton-color: #f2f2f2; +@skeleton-color: #f2f2f2; // Transfer // --- -@transfer-disabled-bg: @disabled-bg; +@transfer-disabled-bg: @disabled-bg; // Message // --- -@message-notice-content-padding: 10px 16px; +@message-notice-content-padding: 10px 16px; // Motion // --- @@ -2033,12 +2036,12 @@ this.tinycolor = tinycolor; // List // --- -@list-empty-text-padding: @padding-md; -@list-item-padding: @padding-sm 0; -@list-item-content-margin: 0 0 @padding-md 0; -@list-item-meta-margin-bottom: @padding-md; -@list-item-meta-avatar-margin-right: @padding-md; -@list-item-meta-title-margin-bottom: @padding-sm; +@list-empty-text-padding: @padding-md; +@list-item-padding: @padding-sm 0; +@list-item-content-margin: 0 0 @padding-md 0; +@list-item-meta-margin-bottom: @padding-md; +@list-item-meta-avatar-margin-right: @padding-md; +@list-item-meta-title-margin-bottom: @padding-sm; // Menu @menu-dark-item-selected-bg: @menu-dark-item-active-bg; @@ -2058,64 +2061,84 @@ this.tinycolor = tinycolor; .listContent .extra { color: rgba(0, 0, 0, 0.45); } + .listContent .extra > em { color: rgba(0, 0, 0, 0.25); } + .avatarItem :global .ant-avatar { border: 1px solid #fff; } + .chartCard .avatar img { border-radius: 100%; } + .chartCard .meta { color: rgba(0, 0, 0, 0.45); } + .chartCard .total { color: rgba(0, 0, 0, 0.85); } + .chartCard .footer { border-top: 1px solid #e8e8e8; } + .field span:last-child { color: rgba(0, 0, 0, 0.85); } + .miniProgress .progressWrap { background-color: #f5f5f5; } + .miniProgress .progress { border-radius: 1px 0 0 1px; background-color: @primary-color; } + .miniProgress .target span { border-radius: 100px; } + .pie .dot { border-radius: 8px; } + .pie .line { background-color: #e8e8e8; } + .pie .legendTitle { color: rgba(0, 0, 0, 0.65); } + .pie .percent { color: rgba(0, 0, 0, 0.45); } + .pie .total > h4 { color: rgba(0, 0, 0, 0.45); } + .pie .total > p { color: rgba(0, 0, 0, 0.85); } + .radar .legend .legendItem { color: rgba(0, 0, 0, 0.45); } + .radar .legend .legendItem h6 { color: rgba(0, 0, 0, 0.85); } + .radar .legend .legendItem:after { background-color: #e8e8e8; } + .radar .legend .dot { border-radius: 6px; } @@ -2123,256 +2146,334 @@ this.tinycolor = tinycolor; .timelineChart { background: #fff; } + .waterWave .text span { color: rgba(0, 0, 0, 0.45); } + .waterWave .text h4 { color: rgba(0, 0, 0, 0.85); } + .descriptionList .title { color: rgba(0, 0, 0, 0.85); } + .descriptionList .term { color: rgba(0, 0, 0, 0.85); } + .descriptionList .detail { color: rgba(0, 0, 0, 0.65); } + .descriptionList.small .title { color: rgba(0, 0, 0, 0.65); } + .linkGroup > a { color: rgba(0, 0, 0, 0.65); } + .linkGroup > a:hover { color: @primary-color; } + .lines .shadow { color: transparent; } + .exception .imgEle { background-repeat: no-repeat; background-position: 50% 50%; background-size: contain; } + .exception .content h1 { color: #434e59; } + .exception .content .desc { color: rgba(0, 0, 0, 0.45); } + .toolbar { box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03); background: #fff; border-top: 1px solid #e8e8e8; } + .globalFooter .links a { color: rgba(0, 0, 0, 0.45); } + .globalFooter .links a:hover { color: rgba(0, 0, 0, 0.65); } + .globalFooter .copyright { color: rgba(0, 0, 0, 0.45); } + .layout .header { background-color: @primary-color !important; } + i.trigger:hover { background: rgba(0, 0, 0, 0.025); } + .right .action > i { color: rgba(0, 0, 0, 0.65); } + .right .action:hover { background: rgba(0, 0, 0, 0.025); } + :global(.right .action.ant-popover-open) { background: rgba(0, 0, 0, 0.025); } + .right .search:hover { background: transparent; } + .right .account .avatar { color: @primary-color; background: rgba(255, 255, 255, 0.85); } + .dark .action { color: rgba(255, 255, 255, 0.85); } + .dark .action > i { color: rgba(255, 255, 255, 0.85); } + .dark .action:hover, .dark .action:global(.ant-popover-open) { background: @primary-color; } + .dark .action :global(.ant-badge) { color: rgba(255, 255, 255, 0.85); } + .headerSearch .input { background: transparent; border-radius: 0; } + .headerSearch .input :global(.ant-select-selection) { background: transparent; } + .headerSearch .input input { border: 0; box-shadow: none !important; } + .headerSearch .input, .headerSearch .input:hover, .headerSearch .input:focus { border-bottom: 1px solid #d9d9d9; } + .login :global .ant-tabs .ant-tabs-bar { border-bottom: 0; } + .login .icon { color: rgba(0, 0, 0, 0.2); } + .login .icon:hover { color: @primary-color; } + .login .prefixIcon { color: rgba(0, 0, 0, 0.25); } + .list .item .avatar { background: #fff; } + .list .item:last-child { border-bottom: 0; } + .list .item:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .list .item .extra { color: rgba(0, 0, 0, 0.45); } + .notFound { color: rgba(0, 0, 0, 0.45); } + .clear { color: rgba(0, 0, 0, 0.65); border-radius: 0 0 4px 4px; border-top: 1px solid #e8e8e8; } + .clear:hover { color: rgba(0, 0, 0, 0.85); } + .numberInfo .suffix { color: rgba(0, 0, 0, 0.65); } + .numberInfo .numberInfoTitle { color: rgba(0, 0, 0, 0.65); } + .numberInfo .numberInfoSubTitle { color: rgba(0, 0, 0, 0.45); } + .numberInfo .numberInfoValue > span { color: rgba(0, 0, 0, 0.85); } + .numberInfo .numberInfoValue .subTotal { color: rgba(0, 0, 0, 0.45); } + .numberInfo .numberInfoValue .subTotal :global .anticon-caret-up { color: #f5222d; } + .numberInfo .numberInfoValue .subTotal :global .anticon-caret-down { color: #52c41a; } + .numberInfolight .numberInfoValue > span { color: rgba(0, 0, 0, 0.65); } + .pageHeader { background: #fff; border-bottom: 1px solid #e8e8e8; } + .pageHeader .tabs :global .ant-tabs-bar { border-bottom: 1px solid #e8e8e8; } + .pageHeader .logo > img { border-radius: 4px; } + .pageHeader .title { color: rgba(0, 0, 0, 0.85); } + .result .icon > .success { color: #52c41a; } + .result .icon > .error { color: #f5222d; } + .result .title { color: rgba(0, 0, 0, 0.85); } + .result .description { color: rgba(0, 0, 0, 0.45); } + .result .extra { background: #fafafa; border-radius: 2px; } + .blockChecbox .item { border-radius: 4px; } + .blockChecbox .selectIcon { color: @primary-color; } + .color_block { border-radius: 4px; } + .title { color: rgba(0, 0, 0, 0.85); } + .handle { background: @primary-color; border-radius: 4px 0 0 4px; } + .setting-drawer-index-handle { /* 暂时不知道放哪解决 */ background: @primary-color !important; } + .themeColor .title { color: rgba(0, 0, 0, 0.65); } + .themeColor .colorBlock { border-radius: 2px; color: #fff; } + .logo h1 { color: white; } + .sider { box-shadow: 2px 116px 6px rgba(0, 21, 41, 0.35); } + .sider.light { box-shadow: 2px 116px 8px 0 rgba(29, 35, 41, 0.05); background-color: white; } + .sider.light .logo { background-color: @primary-color !important; box-shadow: 1px 1px 0 0 #e8e8e8; } + .sider.light .logo h1 { color: white; } + .sider.light :global(.ant-menu-light) { border-right-color: transparent; } + :global .drawer .drawer-content { background: #001529; } + .standardFormRow { border-bottom: 1px dashed #e8e8e8; } + .standardFormRow :global .ant-form-item-label label { color: rgba(0, 0, 0, 0.65); } + .standardFormRow .label { color: rgba(0, 0, 0, 0.85); } + .standardFormRowLast { border: none; } @@ -2380,165 +2481,212 @@ i.trigger:hover { .head { box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); } + .head.light { background-color: #fff; } + .logo h1 { color: #fff; } + .light h1 { color: #002140; } + .trendItem .up { color: #f5222d; } + .trendItem .down { color: #52c41a; } + .trendItem.trendItemGrey .up, .trendItem.trendItemGrey .down { color: rgba(0, 0, 0, 0.65); } + .trendItem.reverseColor .up { color: #52c41a; } + .trendItem.reverseColor .down { color: #f5222d; } + .container { background: #f0f2f5; } + .title { color: rgba(0, 0, 0, 0.85); } + .desc { color: rgba(0, 0, 0, 0.45); } + a.listItemMetaTitle { color: rgba(0, 0, 0, 0.85); } + .baseView .right .avatar_title { color: rgba(0, 0, 0, 0.85); } + .main { //update-begin---author:liusq Date:20210108 for:[JT-409]编译主题色,然后退出登录后的首页是这样子------------ //background-color: #fff; //update-end---author:liusq Date:20210108 for:[JT-409]编译主题色,然后退出登录后的首页是这样子------------ } + .main .leftmenu { border-right: 1px solid #e8e8e8; } + .main .leftmenu :global .ant-menu-inline { border: none; } + .main .right .title { color: rgba(0, 0, 0, 0.85); } + .main :global .ant-list-split .ant-list-item:last-child { border-bottom: 1px solid #e8e8e8; } + :global .ant-list-item-meta .taobao { color: #ff4000; border-radius: 4px; } + :global .ant-list-item-meta .dingding { background-color: #2eabff; color: #fff; border-radius: 4px; } + :global .ant-list-item-meta .alipay { color: #2eabff; border-radius: 4px; } + :global font.strong { color: #52c41a; } + :global font.medium { color: #faad14; } + :global font.weak { color: #f5222d; } - - .trigger { background: 'red'; } + .desc { color: rgba(0, 0, 0, 0.45); } + .desc h3 { color: rgba(0, 0, 0, 0.45); } + .desc h4 { color: rgba(0, 0, 0, 0.45); } + .information .label { color: rgba(0, 0, 0, 0.85); } + .errorIcon { color: #f5222d; } + .errorListItem { border-bottom: 1px solid #e8e8e8; } + .errorListItem:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .errorListItem:last-child { border: 0; } + .errorListItem .errorIcon { color: #f5222d; } + .errorListItem .errorField { color: rgba(0, 0, 0, 0.45); } + .optional { color: rgba(0, 0, 0, 0.45); } + a.listItemMetaTitle { color: rgba(0, 0, 0, 0.85); } + .noData { color: rgba(0, 0, 0, 0.25); } + .heading { color: rgba(0, 0, 0, 0.85); } + .textSecondary { color: rgba(0, 0, 0, 0.45); } + .title { color: rgba(0, 0, 0, 0.85); } + .main .icon { color: rgba(0, 0, 0, 0.2); } + .main .icon:hover { color: @primary-color; } + .success { color: #52c41a; } + .warning { color: #faad14; } + .error { color: #f5222d; } + .progress-pass > .progress :global .ant-progress-bg { background-color: #faad14; } + html { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + body { color: rgba(0, 0, 0, 0.65); background-color: #fff; } + h1, h2, h3, @@ -2547,32 +2695,41 @@ h5, h6 { color: rgba(0, 0, 0, 0.85); } + abbr[title], abbr[data-original-title] { border-bottom: 0; } + a { color: @primary-color; background-color: transparent; } + a:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + a:active { color: color(~`colorPalette("@{primary-color}", 7)`); } + a[disabled] { color: rgba(0, 0, 0, 0.25); } + img { border-style: none; } + table { border-collapse: collapse; } + caption { color: rgba(0, 0, 0, 0.45); } + input, button, select, @@ -2580,207 +2737,264 @@ optgroup, textarea { color: inherit; } + button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; } + fieldset { border: 0; } + legend { color: inherit; } + mark { background-color: #feffe6; } + ::selection { background: @primary-color; color: #fff; } + [ant-click-animating-without-extra-node]:after, .ant-click-animating-node { border-radius: inherit; border: 0 solid @primary-color; } + .ant-alert { color: rgba(0, 0, 0, 0.65); border-radius: 4px; } + .ant-alert-success { border: 1px solid #b7eb8f; background-color: #f6ffed; } + .ant-alert-success .ant-alert-icon { color: #52c41a; } + .ant-alert-info { border: 1px solid color(~`colorPalette("@{primary-color}", 3)`); background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-alert-info .ant-alert-icon { color: @primary-color; } + .ant-alert-warning { border: 1px solid #ffe58f; background-color: #fffbe6; } + .ant-alert-warning .ant-alert-icon { color: #faad14; } + .ant-alert-error { border: 1px solid #ffa39e; background-color: #fff1f0; } + .ant-alert-error .ant-alert-icon { color: #f5222d; } + .ant-alert-close-icon .anticon-close { color: rgba(0, 0, 0, 0.45); } + .ant-alert-close-icon .anticon-close:hover { color: #404040; } + .ant-alert-with-description { border-radius: 4px; color: rgba(0, 0, 0, 0.65); } + .ant-alert-with-description .ant-alert-message { color: rgba(0, 0, 0, 0.85); } + .ant-alert-banner { border-radius: 0; border: 0; } + .ant-anchor { color: rgba(0, 0, 0, 0.65); } + .ant-anchor-wrapper { background-color: #fff; } + .ant-anchor-ink:before { background-color: #e8e8e8; } + .ant-anchor-ink-ball { border-radius: 8px; border: 2px solid @primary-color; background-color: #fff; } + .ant-anchor-link-title { color: rgba(0, 0, 0, 0.65); } + .ant-anchor-link-active > .ant-anchor-link-title { color: @primary-color; } + .ant-select-auto-complete { color: rgba(0, 0, 0, 0.65); } + .ant-select-auto-complete.ant-select .ant-select-selection { border: 0; box-shadow: none; } + .ant-select-auto-complete.ant-select .ant-input { background: transparent; border-width: 1px; } + .ant-select-auto-complete.ant-select .ant-input:focus, .ant-select-auto-complete.ant-select .ant-input:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-avatar { color: rgba(0, 0, 0, 0.65); background: #ccc; color: #fff; border-radius: 50%; } + .ant-avatar-image { background: transparent; } + .ant-avatar-lg { border-radius: 50%; } + .ant-avatar-sm { border-radius: 50%; } + .ant-avatar-square { border-radius: 4px; } + .ant-back-top { color: rgba(0, 0, 0, 0.65); } + .ant-back-top-content { border-radius: 20px; background-color: rgba(0, 0, 0, 0.45); color: #fff; } + .ant-back-top-content:hover { background-color: rgba(0, 0, 0, 0.65); } + .ant-back-top-icon { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAYAAACWwljjAAAABGdBTUEAALGPC/xhBQAAAbtJREFUWAntmMtKw0AUhhMvS5cuxILgQlRUpIggIoKIIoigG1eC+AA+jo+i6FIXBfeuXIgoeKVeitVWJX5HWhhDksnUpp3FDPyZk3Nm5nycmZKkXhAEOXSA3lG7muTeRzmfy6HneUvIhnYkQK+Q9NhAA0Opg0vBEhjBKHiyb8iGMyQMOYuK41BcBSypAL+MYXSKjtFAW7EAGEO3qN4uMQbbAkXiSfRQJ1H6a+yhlkKRcAoVFYiweYNjtCVQJJpBz2GCiPt7fBOZQpFgDpUikse5HgnkM4Fi4QX0Fpc5wf9EbLqpUCy4jMoJSXWhFwbMNgWKhVbRhy5jirhs9fy/oFhgHVVTJEs7RLZ8sSEoJm6iz7SZDMbJ+/OKERQTttCXQRLToRUmrKWCYuA2+jbN0MB4OQobYShfdTCgn/sL1K36M7TLrN3n+758aPy2rrpR6+/od5E8tf/A1uLS9aId5T7J3CNYihkQ4D9PiMdMC7mp4rjB9kjFjZp8BlnVHJBuO1yFXIV0FdDF3RlyFdJVQBdv5AxVdIsq8apiZ2PyYO1EVykesGfZEESsCkweyR8MUW+V8uJ1gkYipmpdP1pm2aJVPEGzAAAAAElFTkSuQmCC) 100%/100% no-repeat; } + .ant-badge { color: rgba(0, 0, 0, 0.65); color: unset; } + .ant-badge-count { border-radius: 10px; background: #f5222d; color: #fff; box-shadow: 0 0 0 1px #fff; } + .ant-badge-count a, .ant-badge-count a:hover { color: #fff; } + .ant-badge-dot { border-radius: 100%; background: #f5222d; box-shadow: 0 0 0 1px #fff; } + .ant-badge-status-dot { border-radius: 50%; } + .ant-badge-status-success { background-color: #52c41a; } + .ant-badge-status-processing { background-color: @primary-color; } + .ant-badge-status-processing:after { border-radius: 50%; border: 1px solid @primary-color; } + .ant-badge-status-default { background-color: #d9d9d9; } + .ant-badge-status-error { background-color: #f5222d; } + .ant-badge-status-warning { background-color: #faad14; } + .ant-badge-status-text { color: rgba(0, 0, 0, 0.65); } + .ant-breadcrumb { color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.45); } + .ant-breadcrumb a { color: rgba(0, 0, 0, 0.45); } + .ant-breadcrumb a:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-breadcrumb > span:last-child { color: rgba(0, 0, 0, 0.65); } + .ant-breadcrumb-separator { color: rgba(0, 0, 0, 0.45); } + .ant-btn { background-image: none; border: 1px solid transparent; @@ -2790,49 +3004,61 @@ mark { background-color: #fff; border-color: #d9d9d9; } + .ant-btn:not([disabled]):active { box-shadow: none; } + .ant-btn-lg { border-radius: 4px; } + .ant-btn-sm { border-radius: 4px; } + .ant-btn > a:only-child { color: currentColor; } + .ant-btn > a:only-child:after { background: transparent; } + .ant-btn:hover, .ant-btn:focus { color: color(~`colorPalette("@{primary-color}", 5)`); background-color: #fff; border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn:hover > a:only-child, .ant-btn:focus > a:only-child { color: currentColor; } + .ant-btn:hover > a:only-child:after, .ant-btn:focus > a:only-child:after { background: transparent; } + .ant-btn:active, .ant-btn.active { color: color(~`colorPalette("@{primary-color}", 7)`); background-color: #fff; border-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-btn:active > a:only-child, .ant-btn.active > a:only-child { color: currentColor; } + .ant-btn:active > a:only-child:after, .ant-btn.active > a:only-child:after { background: transparent; } + .ant-btn.disabled, .ant-btn[disabled], .ant-btn.disabled:hover, @@ -2848,6 +3074,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn.disabled > a:only-child, .ant-btn[disabled] > a:only-child, .ant-btn.disabled:hover > a:only-child, @@ -2860,6 +3087,7 @@ mark { .ant-btn[disabled].active > a:only-child { color: currentColor; } + .ant-btn.disabled > a:only-child:after, .ant-btn[disabled] > a:only-child:after, .ant-btn.disabled:hover > a:only-child:after, @@ -2872,52 +3100,63 @@ mark { .ant-btn[disabled].active > a:only-child:after { background: transparent; } + .ant-btn:hover, .ant-btn:focus, .ant-btn:active, .ant-btn.active { background: #fff; } + .ant-btn-primary { color: #fff; background-color: @primary-color; border-color: @primary-color; box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035); } + .ant-btn-primary > a:only-child { color: currentColor; } + .ant-btn-primary > a:only-child:after { background: transparent; } + .ant-btn-primary:hover, .ant-btn-primary:focus { color: #fff; background-color: color(~`colorPalette("@{primary-color}", 5)`); border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-primary:hover > a:only-child, .ant-btn-primary:focus > a:only-child { color: currentColor; } + .ant-btn-primary:hover > a:only-child:after, .ant-btn-primary:focus > a:only-child:after { background: transparent; } + .ant-btn-primary:active, .ant-btn-primary.active { color: #fff; background-color: color(~`colorPalette("@{primary-color}", 7)`); border-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-btn-primary:active > a:only-child, .ant-btn-primary.active > a:only-child { color: currentColor; } + .ant-btn-primary:active > a:only-child:after, .ant-btn-primary.active > a:only-child:after { background: transparent; } + .ant-btn-primary.disabled, .ant-btn-primary[disabled], .ant-btn-primary.disabled:hover, @@ -2933,6 +3172,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn-primary.disabled > a:only-child, .ant-btn-primary[disabled] > a:only-child, .ant-btn-primary.disabled:hover > a:only-child, @@ -2945,6 +3185,7 @@ mark { .ant-btn-primary[disabled].active > a:only-child { color: currentColor; } + .ant-btn-primary.disabled > a:only-child:after, .ant-btn-primary[disabled] > a:only-child:after, .ant-btn-primary.disabled:hover > a:only-child:after, @@ -2957,66 +3198,82 @@ mark { .ant-btn-primary[disabled].active > a:only-child:after { background: transparent; } + .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) { border-right-color: color(~`colorPalette("@{primary-color}", 5)`); border-left-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled { border-color: #d9d9d9; } + .ant-btn-group .ant-btn-primary:first-child:not(:last-child) { border-right-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] { border-right-color: #d9d9d9; } + .ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-primary { border-left-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] { border-left-color: #d9d9d9; } + .ant-btn-ghost { color: rgba(0, 0, 0, 0.65); background-color: transparent; border-color: #d9d9d9; } + .ant-btn-ghost > a:only-child { color: currentColor; } + .ant-btn-ghost > a:only-child:after { background: transparent; } + .ant-btn-ghost:hover, .ant-btn-ghost:focus { color: color(~`colorPalette("@{primary-color}", 5)`); background-color: transparent; border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-ghost:hover > a:only-child, .ant-btn-ghost:focus > a:only-child { color: currentColor; } + .ant-btn-ghost:hover > a:only-child:after, .ant-btn-ghost:focus > a:only-child:after { background: transparent; } + .ant-btn-ghost:active, .ant-btn-ghost.active { color: color(~`colorPalette("@{primary-color}", 7)`); background-color: transparent; border-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-btn-ghost:active > a:only-child, .ant-btn-ghost.active > a:only-child { color: currentColor; } + .ant-btn-ghost:active > a:only-child:after, .ant-btn-ghost.active > a:only-child:after { background: transparent; } + .ant-btn-ghost.disabled, .ant-btn-ghost[disabled], .ant-btn-ghost.disabled:hover, @@ -3032,6 +3289,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn-ghost.disabled > a:only-child, .ant-btn-ghost[disabled] > a:only-child, .ant-btn-ghost.disabled:hover > a:only-child, @@ -3044,6 +3302,7 @@ mark { .ant-btn-ghost[disabled].active > a:only-child { color: currentColor; } + .ant-btn-ghost.disabled > a:only-child:after, .ant-btn-ghost[disabled] > a:only-child:after, .ant-btn-ghost.disabled:hover > a:only-child:after, @@ -3056,46 +3315,56 @@ mark { .ant-btn-ghost[disabled].active > a:only-child:after { background: transparent; } + .ant-btn-dashed { color: rgba(0, 0, 0, 0.65); background-color: #fff; border-color: #d9d9d9; border-style: dashed; } + .ant-btn-dashed > a:only-child { color: currentColor; } + .ant-btn-dashed > a:only-child:after { background: transparent; } + .ant-btn-dashed:hover, .ant-btn-dashed:focus { color: color(~`colorPalette("@{primary-color}", 5)`); background-color: #fff; border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-dashed:hover > a:only-child, .ant-btn-dashed:focus > a:only-child { color: currentColor; } + .ant-btn-dashed:hover > a:only-child:after, .ant-btn-dashed:focus > a:only-child:after { background: transparent; } + .ant-btn-dashed:active, .ant-btn-dashed.active { color: color(~`colorPalette("@{primary-color}", 7)`); background-color: #fff; border-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-btn-dashed:active > a:only-child, .ant-btn-dashed.active > a:only-child { color: currentColor; } + .ant-btn-dashed:active > a:only-child:after, .ant-btn-dashed.active > a:only-child:after { background: transparent; } + .ant-btn-dashed.disabled, .ant-btn-dashed[disabled], .ant-btn-dashed.disabled:hover, @@ -3111,6 +3380,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn-dashed.disabled > a:only-child, .ant-btn-dashed[disabled] > a:only-child, .ant-btn-dashed.disabled:hover > a:only-child, @@ -3123,6 +3393,7 @@ mark { .ant-btn-dashed[disabled].active > a:only-child { color: currentColor; } + .ant-btn-dashed.disabled > a:only-child:after, .ant-btn-dashed[disabled] > a:only-child:after, .ant-btn-dashed.disabled:hover > a:only-child:after, @@ -3135,53 +3406,66 @@ mark { .ant-btn-dashed[disabled].active > a:only-child:after { background: transparent; } + .ant-btn-danger { color: #f5222d; background-color: #f5f5f5; border-color: #d9d9d9; } + .ant-btn-danger > a:only-child { color: currentColor; } + .ant-btn-danger > a:only-child:after { background: transparent; } + .ant-btn-danger:hover { color: #fff; background-color: #ff4d4f; border-color: #ff4d4f; } + .ant-btn-danger:hover > a:only-child { color: currentColor; } + .ant-btn-danger:hover > a:only-child:after { background: transparent; } + .ant-btn-danger:focus { color: #ff4d4f; background-color: #fff; border-color: #ff4d4f; } + .ant-btn-danger:focus > a:only-child { color: currentColor; } + .ant-btn-danger:focus > a:only-child:after { background: transparent; } + .ant-btn-danger:active, .ant-btn-danger.active { color: #fff; background-color: #cf1322; border-color: #cf1322; } + .ant-btn-danger:active > a:only-child, .ant-btn-danger.active > a:only-child { color: currentColor; } + .ant-btn-danger:active > a:only-child:after, .ant-btn-danger.active > a:only-child:after { background: transparent; } + .ant-btn-danger.disabled, .ant-btn-danger[disabled], .ant-btn-danger.disabled:hover, @@ -3197,6 +3481,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn-danger.disabled > a:only-child, .ant-btn-danger[disabled] > a:only-child, .ant-btn-danger.disabled:hover > a:only-child, @@ -3209,6 +3494,7 @@ mark { .ant-btn-danger[disabled].active > a:only-child { color: currentColor; } + .ant-btn-danger.disabled > a:only-child:after, .ant-btn-danger[disabled] > a:only-child:after, .ant-btn-danger.disabled:hover > a:only-child:after, @@ -3221,123 +3507,153 @@ mark { .ant-btn-danger[disabled].active > a:only-child:after { background: transparent; } + .ant-btn-circle, .ant-btn-circle-outline { border-radius: 50%; } + .ant-btn-circle.ant-btn-lg, .ant-btn-circle-outline.ant-btn-lg { border-radius: 50%; } + .ant-btn-circle.ant-btn-sm, .ant-btn-circle-outline.ant-btn-sm { border-radius: 50%; } + .ant-btn:before { background: #fff; border-radius: inherit; } + .ant-btn-group-lg > .ant-btn, .ant-btn-group-lg > span > .ant-btn { border-radius: 0; } + .ant-btn-group-sm > .ant-btn, .ant-btn-group-sm > span > .ant-btn { border-radius: 0; } + .ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) { border-left-color: transparent; } + .ant-btn-group .ant-btn { border-radius: 0; } + .ant-btn-group > .ant-btn:only-child { border-radius: 4px; } + .ant-btn-group > span:only-child > .ant-btn { border-radius: 4px; } + .ant-btn-group > .ant-btn:first-child:not(:last-child), .ant-btn-group > span:first-child:not(:last-child) > .ant-btn { border-bottom-left-radius: 4px; border-top-left-radius: 4px; } + .ant-btn-group > .ant-btn:last-child:not(:first-child), .ant-btn-group > span:last-child:not(:first-child) > .ant-btn { border-bottom-right-radius: 4px; border-top-right-radius: 4px; } + .ant-btn-group-sm > .ant-btn:only-child { border-radius: 4px; } + .ant-btn-group-sm > span:only-child > .ant-btn { border-radius: 4px; } + .ant-btn-group-sm > .ant-btn:first-child:not(:last-child), .ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn { border-bottom-left-radius: 4px; border-top-left-radius: 4px; } + .ant-btn-group-sm > .ant-btn:last-child:not(:first-child), .ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn { border-bottom-right-radius: 4px; border-top-right-radius: 4px; } + .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn { border-radius: 0; } + .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child { border-bottom-right-radius: 0; border-top-right-radius: 0; } + .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } + .ant-btn-background-ghost { background: transparent !important; border-color: #fff; color: #fff; } + .ant-btn-background-ghost.ant-btn-primary { color: @primary-color; background-color: transparent; border-color: @primary-color; } + .ant-btn-background-ghost.ant-btn-primary > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-primary > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-primary:hover, .ant-btn-background-ghost.ant-btn-primary:focus { color: color(~`colorPalette("@{primary-color}", 5)`); background-color: transparent; border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child, .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child:after, .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-primary:active, .ant-btn-background-ghost.ant-btn-primary.active { color: color(~`colorPalette("@{primary-color}", 7)`); background-color: transparent; border-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-btn-background-ghost.ant-btn-primary:active > a:only-child, .ant-btn-background-ghost.ant-btn-primary.active > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-primary:active > a:only-child:after, .ant-btn-background-ghost.ant-btn-primary.active > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-primary.disabled, .ant-btn-background-ghost.ant-btn-primary[disabled], .ant-btn-background-ghost.ant-btn-primary.disabled:hover, @@ -3353,6 +3669,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child, .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child, @@ -3365,6 +3682,7 @@ mark { .ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child:after, .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child:after, .ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child:after, @@ -3377,45 +3695,55 @@ mark { .ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-danger { color: #f5222d; background-color: transparent; border-color: #f5222d; } + .ant-btn-background-ghost.ant-btn-danger > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-danger > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-danger:hover, .ant-btn-background-ghost.ant-btn-danger:focus { color: #ff4d4f; background-color: transparent; border-color: #ff4d4f; } + .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child, .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child:after, .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-danger:active, .ant-btn-background-ghost.ant-btn-danger.active { color: #cf1322; background-color: transparent; border-color: #cf1322; } + .ant-btn-background-ghost.ant-btn-danger:active > a:only-child, .ant-btn-background-ghost.ant-btn-danger.active > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-danger:active > a:only-child:after, .ant-btn-background-ghost.ant-btn-danger.active > a:only-child:after { background: transparent; } + .ant-btn-background-ghost.ant-btn-danger.disabled, .ant-btn-background-ghost.ant-btn-danger[disabled], .ant-btn-background-ghost.ant-btn-danger.disabled:hover, @@ -3431,6 +3759,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child, .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child, @@ -3443,6 +3772,7 @@ mark { .ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child { color: currentColor; } + .ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child:after, .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child:after, .ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child:after, @@ -3455,205 +3785,259 @@ mark { .ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child:after { background: transparent; } + .christmas.ant-btn-primary:before { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAXCAYAAABOHMIhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABiZJREFUeNrsWMtPlFcUvzPMwIDysLyRR4uATDHWCiVgSmRlios2DeiiXUFs0nRBd6arxqQhJDapkYXhP4BqDKTQhZaFNQSCaBEVJjwdHsNr5DUMDDPDzPT3u7nTDEgRKrKgc5KT+z3uufec33de99P4fD4RpL2RNgjB3kn35MkTeRERESFiYmLkGBoaKnQ6nWSNRvPPZFxr+vv7k6KioiIdDsfa8vLyQkFBgcP3Bnel3MDAQArWI0eFhISE87nb7bZ7PJ4VvLYuLi5O5+fnu9+kMNfq6+tLjIyMzMY6KeBEbK/XarXReI3lPDZMWcc4v7GxYV1dXR3Jy8ub2E5HPvJ6vRSSDH0ku1wuAfsEZOV1IEFHoeNFdHS0yMrK2knR0Lm5uR+hxLdQMjbwHTZbB41h8RGwCdc9MzMzneHh4bGJiYlf4SN8ijkfwqiIncCAAR7Iz2GPSShudjqdfeCeqampvwBQfFxc3JdYqwTv8gB8/F48A8BgKecE14V+L7ju2tpae05OzkuCCZvkPOj8mizmC6vVKtmPu+bx48cC3qI1mUyFUOyywWD4SHlELBaLJmCHNcwAghuAOujtuF4FqHO4nsX4EsAS3I4TJ04ME1h8PDE9PS09TYZoY2Pj1729vd6lpSVfkDYTPG0UkfNDRUWFgQ5Gb2Mh0N29e9eG/GQfHh4W8/PzwUy/ObQ/gMfVVlZW1iAiZdQxp3nv3LljRoL/5erVq1UIxzSiiVD9X4EDYATynCwAzGO858hCQRoaGmJFZNJz8YIcBc4BF966dau6sLAwBxVSJCUlCSThQwuU3W6XkYUok1Vzm5znQx5bbm9v77p+/frPeNSNRzZ/ISBwrG4ZR48eLamtrf2+uLjYSEG9Xi/wTISFhQlWGXohyzO/CJlVl23KQRLbABoaHx+/Z1lUZ/Hq1SsJFj3JT3hmHx8fnydPTEzMj46OziHPW2w22wxeD4Kfgadh/4YEzU8Az4DhffAn5eXlX1y6dKkEoCTspAQ9Mjs7+0BBo8Fms1lkZGTsOo0QLLRNkvnR+fEJzIMHD0xtbW39CL8JTFtSbAOvBIyLHIGVm9VzE2gKuDAMSSpcT6KXyT137lx2cnLyMXhcGDb3wq3XuWF3d/fCzZs3P0c4v5eSknJQbYLo7Ox0gC2lpaVZ3Be67Th/dnZWoAJKsJC3XA8fPhxoamp6hMb+BaaMgWcUMGtszZjiFDNmvcDI91pzG0iY4ARwkwrxkcHBwUdgNrRMbnrqoRbkVzDcvn3bl5qaWsmcgFH4G8XdEGUWFhak51AuISFBnkoCTyFbyWKxCJwIxlC0fq2rq7tcVFRkRKskjh8/Lr0+kBjCCDV/knfdv3//WX19/R8IRRNemxlu4AXwKqM+EJwdj1HbPYSwh3sCPAJDABm2LLchCjS+5/kirKGhwWk0GrMuXrxYQuX9hm/XXTMXMY+srKwI5ApZrbYmZh7deEJhAUKjLe/pLTzSsCuHrK+1tbUJVe3P6upq87Vr174rKysrYHVj/uW+OH3IfEuw4F3ee/fuPQfAvwOs5yyE4CnlFOu7BWrTCWlreO6FACpBZGwUw4BvkANLobReHb3kGZYGsGzTq/zlO8AT1ru6uoZbWlqeA6gINJAfnz59OlVLoX8Jtebm5raampqfcMvQYgTknz9//sKVK1c+y83NTdIEuCnaKMuNGzd+6+np6cCtSTkAw9D9X8Dyh+dbgaaAC1XAnUlPTy+qqqq6cPbs2UzkmWjNljiDJzpwHFnCkW2yo6NjCKW8H54wjlezKvRT09LSTsJrz5w6dSoN+Yp51ADAPUj8VoDbDq9pxrwuJcNIYQllJTIi/xopBw/VA7DJp0+f9hA78CgL5F5C8J2CpoCj8sfA6WCe/FPRhsRlZmbGIs8Y4FFO5CJgtrSsvrRVGW1V93b1myoGnKAKEcHgnwsWpg1lNI0fphwrmdqbckeU18WrnlOjqp5/j7W3BWvfQVPKa5SBkcrYCNVB65TRTlWZ1lXiXVU5xbtlDb2SPaLWYwrgHIcqPg6Vc7fbX69Yoyqfa7/AeiegbWOEVhmsVcWDwPn224iDJgla8Hd38Hd3ELQgaIeI/hZgAIPEp0vmQJdoAAAAAElFTkSuQmCC) no-repeat 50% 0; background-size: 64px; } + .christmas.ant-btn-primary.ant-btn-lg:before { background-size: 72px; } + .christmas.ant-btn-primary.ant-btn-sm:before { background-size: 56px; } + .ant-fullcalendar { color: rgba(0, 0, 0, 0.65); border-top: 1px solid #d9d9d9; } + .ant-fullcalendar table { border-collapse: collapse; background-color: transparent; } + .ant-fullcalendar table, .ant-fullcalendar th, .ant-fullcalendar td { border: 0; } + .ant-fullcalendar-calendar-table { border-spacing: 0; } + .ant-fullcalendar-value { color: rgba(0, 0, 0, 0.65); border-radius: 2px; background: transparent; } + .ant-fullcalendar-value:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-fullcalendar-value:active { background: @primary-color; color: #fff; } + .ant-fullcalendar-today .ant-fullcalendar-value, .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value { box-shadow: 0 0 0 1px @primary-color inset; } + .ant-fullcalendar-selected-day .ant-fullcalendar-value, .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value { background: @primary-color; color: #fff; } + .ant-fullcalendar-disabled-cell-first-of-row .ant-fullcalendar-value { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } + .ant-fullcalendar-disabled-cell-last-of-row .ant-fullcalendar-value { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } + .ant-fullcalendar-last-month-cell .ant-fullcalendar-value, .ant-fullcalendar-next-month-btn-day .ant-fullcalendar-value { color: rgba(0, 0, 0, 0.25); } + .ant-fullcalendar-month-panel-table { border-collapse: separate; } + .ant-fullcalendar-fullscreen { border-top: 0; } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month, .ant-fullcalendar-fullscreen .ant-fullcalendar-date { color: rgba(0, 0, 0, 0.65); border-top: 2px solid #e8e8e8; } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month:hover, .ant-fullcalendar-fullscreen .ant-fullcalendar-date:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month:active, .ant-fullcalendar-fullscreen .ant-fullcalendar-date:active { background: color(~`colorPalette("@{primary-color}", 2)`); } + .ant-fullcalendar-fullscreen .ant-fullcalendar-value { background: transparent; } + .ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value { color: rgba(0, 0, 0, 0.65); } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-month, .ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-date { border-top-color: @primary-color; background: transparent; } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value, .ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value { box-shadow: none; } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-month, .ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-date { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value, .ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-value { color: @primary-color; } + .ant-fullcalendar-fullscreen .ant-fullcalendar-last-month-cell .ant-fullcalendar-date, .ant-fullcalendar-fullscreen .ant-fullcalendar-next-month-btn-day .ant-fullcalendar-date { color: rgba(0, 0, 0, 0.25); } + .ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date, .ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date:hover { background: transparent; } + .ant-fullcalendar-disabled-cell .ant-fullcalendar-value { color: rgba(0, 0, 0, 0.25); border-radius: 0; } + .ant-card { color: rgba(0, 0, 0, 0.65); //background: #fff; border-radius: 2px; } + .ant-card-hoverable:hover { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09); border-color: rgba(0, 0, 0, 0.09); } + .ant-card-bordered { border: 1px solid #e8e8e8; } + .ant-card-head { background: transparent; border-bottom: 1px solid #e8e8e8; border-radius: 2px 2px 0 0; color: rgba(0, 0, 0, 0.85); } + .ant-card-head .ant-tabs { color: rgba(0, 0, 0, 0.65); } + .ant-card-head .ant-tabs-bar { border-bottom: 1px solid #e8e8e8; } + .ant-card-extra { color: rgba(0, 0, 0, 0.65); } + .ant-card-grid { border-radius: 0; border: 0; box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset; } + .ant-card-grid:hover { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-card-cover img { border-radius: 2px 2px 0 0; } + .ant-card-actions { border-top: 1px solid #e8e8e8; background: #fafafa; } + .ant-card-actions > li { color: rgba(0, 0, 0, 0.45); } + .ant-card-actions > li > span:hover { color: @primary-color; } + .ant-card-actions > li > span a { color: rgba(0, 0, 0, 0.45); } + .ant-card-actions > li > span a:hover { color: @primary-color; } + .ant-card-actions > li:not(:last-child) { border-right: 1px solid #e8e8e8; } + .ant-card-type-inner .ant-card-head { background: #fafafa; } + .ant-card-meta-title { color: rgba(0, 0, 0, 0.85); } + .ant-card-meta-description { color: rgba(0, 0, 0, 0.45); } + .ant-card-loading-block { border-radius: 2px; background: linear-gradient(90deg, rgba(207, 216, 220, 0.2), rgba(207, 216, 220, 0.4), rgba(207, 216, 220, 0.2)); background-size: 600% 600%; } + .ant-carousel { color: rgba(0, 0, 0, 0.65); } + .ant-carousel .slick-slider { -webkit-tap-highlight-color: transparent; } + .ant-carousel .slick-vertical .slick-slide { border: 1px solid transparent; } + .ant-carousel .slick-prev, .ant-carousel .slick-next { background: transparent; color: transparent; border: 0; } + .ant-carousel .slick-prev:hover, .ant-carousel .slick-next:hover, .ant-carousel .slick-prev:focus, @@ -3661,146 +4045,185 @@ mark { background: transparent; color: transparent; } + .ant-carousel .slick-dots li button { border: 0; background: #fff; border-radius: 1px; color: transparent; } + .ant-carousel .slick-dots li.slick-active button { background: #fff; } + .ant-cascader { color: rgba(0, 0, 0, 0.65); } + .ant-cascader-input.ant-input { background-color: transparent !important; } + .ant-cascader-picker { color: rgba(0, 0, 0, 0.65); background-color: #fff; border-radius: 4px; } + .ant-cascader-picker-with-value .ant-cascader-picker-label { color: transparent; } + .ant-cascader-picker-disabled { background: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-cascader-picker:focus .ant-cascader-input { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-cascader-picker-show-search.ant-cascader-picker-focused { color: rgba(0, 0, 0, 0.25); } + .ant-cascader-picker-clear { background: #fff; color: rgba(0, 0, 0, 0.25); } + .ant-cascader-picker-clear:hover { color: rgba(0, 0, 0, 0.45); } + .ant-cascader-picker-arrow { color: rgba(0, 0, 0, 0.25); } + .ant-cascader-menus { background: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-cascader-menu { border-right: 1px solid #e8e8e8; } + .ant-cascader-menu:first-child { border-radius: 4px 0 0 4px; } + .ant-cascader-menu:last-child { border-right-color: transparent; border-radius: 0 4px 4px 0; } + .ant-cascader-menu:only-child { border-radius: 4px; } + .ant-cascader-menu-item:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-cascader-menu-item-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-cascader-menu-item-disabled:hover { background: transparent; } + .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled), .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover { background: #f5f5f5; } + .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, .ant-cascader-menu-item-expand .ant-cascader-menu-item-loading-icon { color: rgba(0, 0, 0, 0.45); } + .ant-cascader-menu-item .ant-cascader-menu-item-keyword { color: #f5222d; } + .ant-checkbox { color: rgba(0, 0, 0, 0.65); } + .ant-checkbox-wrapper:hover .ant-checkbox-inner, .ant-checkbox:hover .ant-checkbox-inner, .ant-checkbox-input:focus + .ant-checkbox-inner { border-color: @primary-color; } + .ant-checkbox-checked:after { border-radius: 2px; border: 1px solid @primary-color; } + .ant-checkbox-inner { border: 1px solid #d9d9d9; border-radius: 2px; background-color: #fff; } + .ant-checkbox-inner:after { border: 2px solid #fff; border-top: 0; border-left: 0; } + .ant-checkbox-indeterminate .ant-checkbox-inner:after { border: 0; background-color: @primary-color; } + .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after { border-color: rgba(0, 0, 0, 0.25); } + .ant-checkbox-checked .ant-checkbox-inner:after { border: 2px solid #fff; border-top: 0; border-left: 0; } + .ant-checkbox-checked .ant-checkbox-inner { background-color: @primary-color; border-color: @primary-color; } + .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after { border-color: rgba(0, 0, 0, 0.25); } + .ant-checkbox-disabled .ant-checkbox-inner { border-color: #d9d9d9 !important; background-color: #f5f5f5; } + .ant-checkbox-disabled .ant-checkbox-inner:after { border-color: #f5f5f5; } + .ant-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); } + .ant-checkbox-wrapper { color: rgba(0, 0, 0, 0.65); } + .ant-checkbox-group { color: rgba(0, 0, 0, 0.65); } + .ant-collapse { color: rgba(0, 0, 0, 0.65); background-color: #fafafa; @@ -3808,67 +4231,85 @@ mark { border: 1px solid #d9d9d9; border-bottom: 0; } + .ant-collapse > .ant-collapse-item { border-bottom: 1px solid #d9d9d9; } + .ant-collapse > .ant-collapse-item:last-child, .ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header { border-radius: 0 0 4px 4px; } + .ant-collapse > .ant-collapse-item > .ant-collapse-header { color: rgba(0, 0, 0, 0.85); } + .ant-collapse-content { color: rgba(0, 0, 0, 0.65); background-color: #fff; border-top: 1px solid #d9d9d9; } + .ant-collapse-item:last-child > .ant-collapse-content { border-radius: 0 0 4px 4px; } + .ant-collapse-borderless { background-color: #fff; border: 0; } + .ant-collapse-borderless > .ant-collapse-item { border-bottom: 1px solid #d9d9d9; } + .ant-collapse-borderless > .ant-collapse-item:last-child, .ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header { border-radius: 0; } + .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content { background-color: transparent; border-top: 0; } + .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header, .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow { color: rgba(0, 0, 0, 0.25); } + .ant-calendar-picker-container { color: rgba(0, 0, 0, 0.65); } + .ant-calendar-picker { color: rgba(0, 0, 0, 0.65); } + .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) { border-color: @primary-color; } + .ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-calendar-picker-clear { color: rgba(0, 0, 0, 0.25); background: #fff; } + .ant-calendar-picker-clear:hover { color: rgba(0, 0, 0, 0.45); } + .ant-calendar-picker-icon { color: rgba(0, 0, 0, 0.25); } + .ant-calendar { border: 1px solid #fff; background-color: #fff; @@ -3876,35 +4317,44 @@ mark { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); background-clip: padding-box; } + .ant-calendar-input-wrap { border-bottom: 1px solid #e8e8e8; } + .ant-calendar-input { border: 0; color: rgba(0, 0, 0, 0.65); background: #fff; } + .ant-calendar-input::-moz-placeholder { color: #bfbfbf; } + .ant-calendar-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-calendar-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-calendar-header { border-bottom: 1px solid #e8e8e8; } + .ant-calendar-header a:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-calendar-header .ant-calendar-century-select, .ant-calendar-header .ant-calendar-decade-select, .ant-calendar-header .ant-calendar-year-select, .ant-calendar-header .ant-calendar-month-select { color: rgba(0, 0, 0, 0.85); } + .ant-calendar-header .ant-calendar-prev-century-btn, .ant-calendar-header .ant-calendar-next-century-btn, .ant-calendar-header .ant-calendar-prev-decade-btn, @@ -3915,42 +4365,52 @@ mark { .ant-calendar-header .ant-calendar-next-year-btn { color: rgba(0, 0, 0, 0.45); } + .ant-calendar table { border-collapse: collapse; background-color: transparent; } + .ant-calendar table, .ant-calendar th, .ant-calendar td { border: 0; } + .ant-calendar-calendar-table { border-spacing: 0; } + .ant-calendar-date { color: rgba(0, 0, 0, 0.65); border-radius: 2px; border: 1px solid transparent; background: transparent; } + .ant-calendar-date:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-calendar-date:active { color: #fff; background: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-calendar-today .ant-calendar-date { border-color: @primary-color; color: @primary-color; } + .ant-calendar-last-month-cell .ant-calendar-date, .ant-calendar-next-month-btn-day .ant-calendar-date { color: rgba(0, 0, 0, 0.25); } + .ant-calendar-selected-day .ant-calendar-date { background: #d1e9ff; } + .ant-calendar-selected-date .ant-calendar-date, .ant-calendar-selected-start-date .ant-calendar-date, .ant-calendar-selected-end-date .ant-calendar-date { @@ -3958,48 +4418,60 @@ mark { color: #fff; border: 1px solid transparent; } + .ant-calendar-selected-date .ant-calendar-date:hover, .ant-calendar-selected-start-date .ant-calendar-date:hover, .ant-calendar-selected-end-date .ant-calendar-date:hover { background: @primary-color; } + .ant-calendar-disabled-cell .ant-calendar-date { color: #bcbcbc; background: #f5f5f5; border-radius: 0; border: 1px solid transparent; } + .ant-calendar-disabled-cell .ant-calendar-date:hover { background: #f5f5f5; } + .ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date:before { border: 1px solid #bcbcbc; border-radius: 2px; } + .ant-calendar-disabled-cell-first-of-row .ant-calendar-date { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } + .ant-calendar-disabled-cell-last-of-row .ant-calendar-date { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } + .ant-calendar-footer { border-top: 1px solid #e8e8e8; } + .ant-calendar-footer:empty { border-top: 0; } + .ant-calendar .ant-calendar-today-btn-disabled, .ant-calendar .ant-calendar-clear-btn-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-calendar .ant-calendar-clear-btn:after { color: rgba(0, 0, 0, 0.25); } + .ant-calendar .ant-calendar-clear-btn:hover:after { color: rgba(0, 0, 0, 0.45); } + .ant-calendar .ant-calendar-ok-btn { background-image: none; border: 1px solid transparent; @@ -4010,49 +4482,61 @@ mark { box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035); border-radius: 4px; } + .ant-calendar .ant-calendar-ok-btn:not([disabled]):active { box-shadow: none; } + .ant-calendar .ant-calendar-ok-btn-lg { border-radius: 4px; } + .ant-calendar .ant-calendar-ok-btn-sm { border-radius: 4px; } + .ant-calendar .ant-calendar-ok-btn > a:only-child { color: currentColor; } + .ant-calendar .ant-calendar-ok-btn > a:only-child:after { background: transparent; } + .ant-calendar .ant-calendar-ok-btn:hover, .ant-calendar .ant-calendar-ok-btn:focus { color: #fff; background-color: color(~`colorPalette("@{primary-color}", 5)`); border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-calendar .ant-calendar-ok-btn:hover > a:only-child, .ant-calendar .ant-calendar-ok-btn:focus > a:only-child { color: currentColor; } + .ant-calendar .ant-calendar-ok-btn:hover > a:only-child:after, .ant-calendar .ant-calendar-ok-btn:focus > a:only-child:after { background: transparent; } + .ant-calendar .ant-calendar-ok-btn:active, .ant-calendar .ant-calendar-ok-btn.active { color: #fff; background-color: color(~`colorPalette("@{primary-color}", 7)`); border-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-calendar .ant-calendar-ok-btn:active > a:only-child, .ant-calendar .ant-calendar-ok-btn.active > a:only-child { color: currentColor; } + .ant-calendar .ant-calendar-ok-btn:active > a:only-child:after, .ant-calendar .ant-calendar-ok-btn.active > a:only-child:after { background: transparent; } + .ant-calendar .ant-calendar-ok-btn.disabled, .ant-calendar .ant-calendar-ok-btn[disabled], .ant-calendar .ant-calendar-ok-btn.disabled:hover, @@ -4068,6 +4552,7 @@ mark { border-color: #d9d9d9; box-shadow: none; } + .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child, .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child, .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child, @@ -4080,6 +4565,7 @@ mark { .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child { color: currentColor; } + .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child:after, .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child:after, .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child:after, @@ -4092,53 +4578,68 @@ mark { .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child:after { background: transparent; } + .ant-calendar .ant-calendar-ok-btn-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; } + .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child { color: currentColor; } + .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child:after { background: transparent; } + .ant-calendar .ant-calendar-ok-btn-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; } + .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child { color: currentColor; } + .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child:after { background: transparent; } + .ant-calendar-range-picker-input { background-color: transparent; border: 0; } + .ant-calendar-range-picker-input::-moz-placeholder { color: #bfbfbf; } + .ant-calendar-range-picker-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-calendar-range-picker-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-calendar-range-picker-separator { color: rgba(0, 0, 0, 0.45); } + .ant-calendar-range-left .ant-calendar-time-picker-inner { border-right: 1px solid #e8e8e8; } + .ant-calendar-range-right .ant-calendar-time-picker-inner { border-left: 1px solid #e8e8e8; } + .ant-calendar-range-middle { color: rgba(0, 0, 0, 0.45); } + .ant-calendar-range .ant-calendar-input, .ant-calendar-range .ant-calendar-time-picker-input { color: rgba(0, 0, 0, 0.65); @@ -4149,121 +4650,152 @@ mark { border: 0; box-shadow: none; } + .ant-calendar-range .ant-calendar-input::-moz-placeholder, .ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder { color: #bfbfbf; } + .ant-calendar-range .ant-calendar-input:-ms-input-placeholder, .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-calendar-range .ant-calendar-input::-webkit-input-placeholder, .ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-calendar-range .ant-calendar-input:hover, .ant-calendar-range .ant-calendar-time-picker-input:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-calendar-range .ant-calendar-input:focus, .ant-calendar-range .ant-calendar-time-picker-input:focus { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-calendar-range .ant-calendar-input-disabled, .ant-calendar-range .ant-calendar-time-picker-input-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-calendar-range .ant-calendar-input-disabled:hover, .ant-calendar-range .ant-calendar-time-picker-input-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-calendar-range .ant-calendar-input:focus, .ant-calendar-range .ant-calendar-time-picker-input:focus { box-shadow: none; } + .ant-calendar-range .ant-calendar-in-range-cell { border-radius: 0; } + .ant-calendar-range .ant-calendar-in-range-cell:before { background: color(~`colorPalette("@{primary-color}", 1)`); border-radius: 0; border: 0; } + .ant-calendar-range .ant-calendar-header, .ant-calendar-range .ant-calendar-month-panel-header, .ant-calendar-range .ant-calendar-year-panel-header { border-bottom: 0; } + .ant-calendar-range .ant-calendar-body, .ant-calendar-range .ant-calendar-month-panel-body, .ant-calendar-range .ant-calendar-year-panel-body { border-top: 1px solid #e8e8e8; } + .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner { background: none; } + .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox { background-color: #fff; border-top: 1px solid #e8e8e8; } + .ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body { border-top-color: transparent; } + .ant-calendar-time-picker { background-color: #fff; } + .ant-calendar-time-picker-inner { background-color: #fff; background-clip: padding-box; } + .ant-calendar-time-picker-select { border-right: 1px solid #e8e8e8; } + .ant-calendar-time-picker-select:first-child { border-left: 0; } + .ant-calendar-time-picker-select:last-child { border-right: 0; } + .ant-calendar-time-picker-select li:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + li.ant-calendar-time-picker-select-option-selected { background: #f5f5f5; } + li.ant-calendar-time-picker-select-option-disabled { color: rgba(0, 0, 0, 0.25); } + li.ant-calendar-time-picker-select-option-disabled:hover { background: transparent; } + .ant-calendar-time .ant-calendar-day-select { color: rgba(0, 0, 0, 0.85); } + .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-calendar-month-panel { border-radius: 4px; background: #fff; } + .ant-calendar-month-panel-header { border-bottom: 1px solid #e8e8e8; } + .ant-calendar-month-panel-header a:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select, .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select, .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select, .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select { color: rgba(0, 0, 0, 0.85); } + .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn, .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn, .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn, @@ -4274,46 +4806,57 @@ li.ant-calendar-time-picker-select-option-disabled:hover { .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn { color: rgba(0, 0, 0, 0.45); } + .ant-calendar-month-panel-table { border-collapse: separate; } + .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month { background: @primary-color; color: #fff; } + .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover { background: @primary-color; color: #fff; } + .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month, .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover { color: #bcbcbc; background: #f5f5f5; } + .ant-calendar-month-panel-month { color: rgba(0, 0, 0, 0.65); background: transparent; border-radius: 2px; } + .ant-calendar-month-panel-month:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-calendar-year-panel { border-radius: 4px; background: #fff; } + .ant-calendar-year-panel-header { border-bottom: 1px solid #e8e8e8; } + .ant-calendar-year-panel-header a:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select, .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select, .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select, .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select { color: rgba(0, 0, 0, 0.85); } + .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn, .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn, .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn, @@ -4324,45 +4867,56 @@ li.ant-calendar-time-picker-select-option-disabled:hover { .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn { color: rgba(0, 0, 0, 0.45); } + .ant-calendar-year-panel-table { border-collapse: separate; } + .ant-calendar-year-panel-year { color: rgba(0, 0, 0, 0.65); background: transparent; border-radius: 2px; } + .ant-calendar-year-panel-year:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year { background: @primary-color; color: #fff; } + .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover { background: @primary-color; color: #fff; } + .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year, .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year { color: rgba(0, 0, 0, 0.25); } + .ant-calendar-decade-panel { background: #fff; border-radius: 4px; } + .ant-calendar-decade-panel-header { border-bottom: 1px solid #e8e8e8; } + .ant-calendar-decade-panel-header a:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select, .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select, .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select, .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select { color: rgba(0, 0, 0, 0.85); } + .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn, .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn, .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn, @@ -4373,50 +4927,62 @@ li.ant-calendar-time-picker-select-option-disabled:hover { .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn { color: rgba(0, 0, 0, 0.45); } + .ant-calendar-decade-panel-table { border-collapse: separate; } + .ant-calendar-decade-panel-decade { color: rgba(0, 0, 0, 0.65); background: transparent; border-radius: 2px; } + .ant-calendar-decade-panel-decade:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade { background: @primary-color; color: #fff; } + .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover { background: @primary-color; color: #fff; } + .ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade, .ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade { color: rgba(0, 0, 0, 0.25); } + .ant-calendar-week-number .ant-calendar-body tr:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week { background: color(~`colorPalette("@{primary-color}", 2)`); } + .ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date, .ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date { background: transparent; color: rgba(0, 0, 0, 0.65); } + .ant-divider { color: rgba(0, 0, 0, 0.65); background: #e8e8e8; } + .ant-divider-horizontal.ant-divider-with-text, .ant-divider-horizontal.ant-divider-with-text-left, .ant-divider-horizontal.ant-divider-with-text-right { background: transparent; color: rgba(0, 0, 0, 0.85); } + .ant-divider-horizontal.ant-divider-with-text:before, .ant-divider-horizontal.ant-divider-with-text-left:before, .ant-divider-horizontal.ant-divider-with-text-right:before, @@ -4425,15 +4991,18 @@ li.ant-calendar-time-picker-select-option-disabled:hover { .ant-divider-horizontal.ant-divider-with-text-right:after { border-top: 1px solid #e8e8e8; } + .ant-divider-dashed { background: none; border-top: 1px dashed #e8e8e8; } + .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed, .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed, .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed { border-top: 0; } + .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:before, .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed:before, .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed:before, @@ -4442,67 +5011,84 @@ li.ant-calendar-time-picker-select-option-disabled:hover { .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed:after { border-style: dashed none none; } + .ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15); } + .ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15); } + .ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15); } + .ant-drawer-title { color: rgba(0, 0, 0, 0.85); } + .ant-drawer-content { background-color: #fff; border: 0; background-clip: padding-box; } + .ant-drawer-close { border: 0; background: transparent; color: rgba(0, 0, 0, 0.45); } + .ant-drawer-close:focus, .ant-drawer-close:hover { color: #444; } + .ant-drawer-header { border-radius: 4px 4px 0 0; background: #fff; color: rgba(0, 0, 0, 0.65); border-bottom: 1px solid #e8e8e8; } + .ant-drawer-mask { background-color: rgba(0, 0, 0, 0.65); } + .ant-drawer-open-content { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } + .ant-dropdown { color: rgba(0, 0, 0, 0.65); } + .ant-dropdown-menu { background-color: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); background-clip: padding-box; } + .ant-dropdown-menu-item-group-title { color: rgba(0, 0, 0, 0.45); } + .ant-dropdown-menu-item, .ant-dropdown-menu-submenu-title { color: rgba(0, 0, 0, 0.65); } + .ant-dropdown-menu-item > a, .ant-dropdown-menu-submenu-title > a { color: rgba(0, 0, 0, 0.65); } + .ant-dropdown-menu-item-selected, .ant-dropdown-menu-submenu-title-selected, .ant-dropdown-menu-item-selected > a, @@ -4510,145 +5096,181 @@ li.ant-calendar-time-picker-select-option-disabled:hover { color: @primary-color; background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-dropdown-menu-item:hover, .ant-dropdown-menu-submenu-title:hover { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-dropdown-menu-item-disabled, .ant-dropdown-menu-submenu-title-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-dropdown-menu-item-disabled:hover, .ant-dropdown-menu-submenu-title-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #fff; } + .ant-dropdown-menu-item-divider, .ant-dropdown-menu-submenu-title-divider { background-color: #e8e8e8; } + .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon, .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon { color: rgba(0, 0, 0, 0.45); } + .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title, .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon { color: rgba(0, 0, 0, 0.25); } + .ant-dropdown-menu-dark, .ant-dropdown-menu-dark .ant-dropdown-menu { background: #001529; } + .ant-dropdown-menu-dark .ant-dropdown-menu-item, .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title, .ant-dropdown-menu-dark .ant-dropdown-menu-item > a { color: rgba(255, 255, 255, 0.65); } + .ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow:after, .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after, .ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow:after { color: rgba(255, 255, 255, 0.65); } + .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover { color: #fff; background: transparent; } + .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected, .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a { background: @primary-color; color: #fff; } + .ant-form { color: rgba(0, 0, 0, 0.65); } + .ant-form legend { color: rgba(0, 0, 0, 0.45); border: 0; border-bottom: 1px solid #d9d9d9; } + .ant-form output { color: rgba(0, 0, 0, 0.65); } + .ant-form-item-required:before { color: #f5222d; } + .ant-form-item { color: rgba(0, 0, 0, 0.65); } + .ant-form-item-label label { color: rgba(0, 0, 0, 0.85); } + .ant-form-explain, .ant-form-extra { color: rgba(0, 0, 0, 0.45); } + form .ant-upload { background: transparent; } + .ant-input-group-wrap .ant-select-selection { border-bottom-left-radius: 0; border-top-left-radius: 0; } + .ant-input-group-wrap .ant-select-selection:hover { border-color: #d9d9d9; } + .ant-input-group-wrap .ant-select-selection--single { background-color: #eee; } + .ant-input-group-wrap .ant-select-open .ant-select-selection { border-color: #d9d9d9; box-shadow: none; } + .has-success.has-feedback .ant-form-item-children-icon { color: #52c41a; } + .has-warning .ant-form-explain, .has-warning .ant-form-split { color: #faad14; } + .has-warning .ant-input, .has-warning .ant-input:hover { border-color: #faad14; } + .has-warning .ant-input:focus { border-color: #ffc53d; box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); border-right-width: 1px !important; } + .has-warning .ant-input:not([disabled]):hover { border-color: #faad14; } + .has-warning .ant-calendar-picker-open .ant-calendar-picker-input { border-color: #ffc53d; box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); border-right-width: 1px !important; } + .has-warning .ant-input-prefix { color: #faad14; } + .has-warning .ant-input-group-addon { color: #faad14; border-color: #faad14; background-color: #fff; } + .has-warning .has-feedback { color: #faad14; } + .has-warning.has-feedback .ant-form-item-children-icon { color: #faad14; } + .has-warning .ant-select-selection { border-color: #faad14; } + .has-warning .ant-select-open .ant-select-selection, .has-warning .ant-select-focused .ant-select-selection { border-color: #ffc53d; box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); border-right-width: 1px !important; } + .has-warning .ant-calendar-picker-icon:after, .has-warning .ant-time-picker-icon:after, .has-warning .ant-picker-icon:after, @@ -4656,10 +5278,12 @@ form .ant-upload { .has-warning .ant-cascader-picker-arrow { color: #faad14; } + .has-warning .ant-input-number, .has-warning .ant-time-picker-input { border-color: #faad14; } + .has-warning .ant-input-number-focused, .has-warning .ant-time-picker-input-focused, .has-warning .ant-input-number:focus, @@ -4668,66 +5292,82 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); border-right-width: 1px !important; } + .has-warning .ant-input-number:not([disabled]):hover, .has-warning .ant-time-picker-input:not([disabled]):hover { border-color: #faad14; } + .has-warning .ant-cascader-picker:focus .ant-cascader-input { border-color: #ffc53d; box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); border-right-width: 1px !important; } + .has-error .ant-form-explain, .has-error .ant-form-split { color: #f5222d; } + .has-error .ant-input, .has-error .ant-input:hover { border-color: #f5222d; } + .has-error .ant-input:focus { border-color: #ff4d4f; box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); border-right-width: 1px !important; } + .has-error .ant-input:not([disabled]):hover { border-color: #f5222d; } + .has-error .ant-calendar-picker-open .ant-calendar-picker-input { border-color: #ff4d4f; box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); border-right-width: 1px !important; } + .has-error .ant-input-prefix { color: #f5222d; } + .has-error .ant-input-group-addon { color: #f5222d; border-color: #f5222d; background-color: #fff; } + .has-error .has-feedback { color: #f5222d; } + .has-error.has-feedback .ant-form-item-children-icon { color: #f5222d; } + .has-error .ant-select-selection { border-color: #f5222d; } + .has-error .ant-select-open .ant-select-selection, .has-error .ant-select-focused .ant-select-selection { border-color: #ff4d4f; box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); border-right-width: 1px !important; } + .has-error .ant-select.ant-select-auto-complete .ant-input:focus { border-color: #f5222d; } + .has-error .ant-input-group-addon .ant-select-selection { border-color: transparent; box-shadow: none; } + .has-error .ant-calendar-picker-icon:after, .has-error .ant-time-picker-icon:after, .has-error .ant-picker-icon:after, @@ -4735,10 +5375,12 @@ form .ant-upload { .has-error .ant-cascader-picker-arrow { color: #f5222d; } + .has-error .ant-input-number, .has-error .ant-time-picker-input { border-color: #f5222d; } + .has-error .ant-input-number-focused, .has-error .ant-time-picker-input-focused, .has-error .ant-input-number:focus, @@ -4747,28 +5389,34 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); border-right-width: 1px !important; } + .has-error .ant-input-number:not([disabled]):hover, .has-error .ant-time-picker-input:not([disabled]):hover { border-color: #f5222d; } + .has-error .ant-mention-wrapper .ant-mention-editor, .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover { border-color: #f5222d; } + .has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor, .has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus { border-color: #ff4d4f; box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); border-right-width: 1px !important; } + .has-error .ant-cascader-picker:focus .ant-cascader-input { border-color: #ff4d4f; box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); border-right-width: 1px !important; } + .is-validating.has-feedback .ant-form-item-children-icon { color: @primary-color; } + .ant-input-number { color: rgba(0, 0, 0, 0.65); background-color: #fff; @@ -4776,89 +5424,112 @@ form .ant-upload { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-input-number::-moz-placeholder { color: #bfbfbf; } + .ant-input-number:-ms-input-placeholder { color: #bfbfbf; } + .ant-input-number::-webkit-input-placeholder { color: #bfbfbf; } + .ant-input-number:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input-number:focus { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-number-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-input-number-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-input-number-handler { color: rgba(0, 0, 0, 0.45); } + .ant-input-number-handler:active { background: #f4f4f4; } + .ant-input-number-handler:hover .ant-input-number-handler-up-inner, .ant-input-number-handler:hover .ant-input-number-handler-down-inner { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-input-number-handler-up-inner, .ant-input-number-handler-down-inner { color: rgba(0, 0, 0, 0.45); } + .ant-input-number:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input-number-focused { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-number-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-input-number-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-input-number-input { background-color: transparent; border: 0; border-radius: 4px; } + .ant-input-number-input::-moz-placeholder { color: #bfbfbf; } + .ant-input-number-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-input-number-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-input-number-handler-wrap { border-left: 1px solid #d9d9d9; background: #fff; border-radius: 0 4px 4px 0; } + .ant-input-number-handler-down { border-top: 1px solid #d9d9d9; } + .ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner, .ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner { color: rgba(0, 0, 0, 0.25); } + .ant-input { color: rgba(0, 0, 0, 0.65); background-color: #fff; @@ -4866,109 +5537,134 @@ form .ant-upload { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-input::-moz-placeholder { color: #bfbfbf; } + .ant-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-input:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input:focus { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-input-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-input-group { color: rgba(0, 0, 0, 0.65); border-collapse: separate; border-spacing: 0; } + .ant-input-group-addon:not(:first-child):not(:last-child), .ant-input-group-wrap:not(:first-child):not(:last-child), .ant-input-group > .ant-input:not(:first-child):not(:last-child) { border-radius: 0; } + .ant-input-group .ant-input:focus { border-right-width: 1px; } + .ant-input-group .ant-input:hover { border-right-width: 1px; } + .ant-input-group-addon { color: rgba(0, 0, 0, 0.65); background-color: #fafafa; border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-input-group-addon .ant-select .ant-select-selection { background-color: inherit; border: 1px solid transparent; box-shadow: none; } + .ant-input-group-addon .ant-select-open .ant-select-selection, .ant-input-group-addon .ant-select-focused .ant-select-selection { color: @primary-color; } + .ant-input-group > .ant-input:first-child, .ant-input-group-addon:first-child { border-bottom-right-radius: 0; border-top-right-radius: 0; } + .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection, .ant-input-group-addon:first-child .ant-select .ant-select-selection { border-bottom-right-radius: 0; border-top-right-radius: 0; } + .ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input { border-bottom-left-radius: 0; border-top-left-radius: 0; } + .ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input { border-bottom-right-radius: 0; border-top-right-radius: 0; } + .ant-input-group-addon:first-child { border-right: 0; } + .ant-input-group-addon:last-child { border-left: 0; } + .ant-input-group > .ant-input:last-child, .ant-input-group-addon:last-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } + .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection, .ant-input-group-addon:last-child .ant-select .ant-select-selection { border-bottom-left-radius: 0; border-top-left-radius: 0; } + .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child), .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child), .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) { border-right-width: 1px; border-right-color: transparent; } + .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover, .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover, .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus, .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus, .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus { @@ -4976,13 +5672,16 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-group.ant-input-group-compact > * { border-radius: 0; border-right-width: 0; } + .ant-input-group.ant-input-group-compact > span:not(:last-child) > .ant-input { border-right-width: 0; } + .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection, .ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input, @@ -4993,6 +5692,7 @@ form .ant-upload { border-right-width: 1px; border-right-color: transparent; } + .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:hover, .ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:hover, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover, @@ -5002,6 +5702,7 @@ form .ant-upload { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:focus, .ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:focus, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus, @@ -5012,6 +5713,7 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-group.ant-input-group-compact > *:first-child, .ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection, .ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, @@ -5022,6 +5724,7 @@ form .ant-upload { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } + .ant-input-group.ant-input-group-compact > *:last-child, .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection, .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, @@ -5035,6 +5738,7 @@ form .ant-upload { border-right-width: 1px; border-right-color: #d9d9d9; } + .ant-input-group.ant-input-group-compact > *:last-child:hover, .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection:hover, .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input:hover, @@ -5046,6 +5750,7 @@ form .ant-upload { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input-group.ant-input-group-compact > *:last-child:focus, .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection:focus, .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input:focus, @@ -5058,6 +5763,7 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-group.ant-input-group-compact > *:last-child:focus .ant-cascader-input, .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection:focus .ant-cascader-input, .ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input:focus .ant-cascader-input, @@ -5070,121 +5776,157 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-input-affix-wrapper { color: rgba(0, 0, 0, 0.65); } + .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-input-affix-wrapper .ant-input-prefix, .ant-input-affix-wrapper .ant-input-suffix { color: rgba(0, 0, 0, 0.65); } + .ant-input-search-icon { color: rgba(0, 0, 0, 0.45); } + .ant-input-search-icon:hover { color: #333; } + .ant-input-search > .ant-input-suffix > .ant-input-search-button { border-top-left-radius: 0; border-bottom-left-radius: 0; } + .ant-layout { //background: #f0f2f5; } + .ant-layout-header { background: #001529; } + .ant-layout-footer { background: #f0f2f5; color: rgba(0, 0, 0, 0.65); } + .ant-layout-sider { background: #001529; } + .ant-layout-sider-trigger { color: #fff; background: #002140; } + .ant-layout-sider-zero-width-trigger { background: #001529; color: #fff; border-radius: 0 4px 4px 0; } + .ant-layout-sider-zero-width-trigger:hover { background: #192c3e; } + .ant-layout-sider-light { background: #fff; } + .ant-layout-sider-light .ant-layout-sider-trigger { color: rgba(0, 0, 0, 0.65); background: #fff; } + .ant-layout-sider-light .ant-layout-sider-zero-width-trigger { color: rgba(0, 0, 0, 0.65); background: #fff; } + .ant-list { color: rgba(0, 0, 0, 0.65); } + .ant-list-empty-text { color: rgba(0, 0, 0, 0.45); } + .ant-list-item-meta-title { color: rgba(0, 0, 0, 0.65); } + .ant-list-item-meta-title > a { color: rgba(0, 0, 0, 0.65); } + .ant-list-item-meta-title > a:hover { color: @primary-color; } + .ant-list-item-meta-description { color: rgba(0, 0, 0, 0.45); } + .ant-list-item-action > li { color: rgba(0, 0, 0, 0.45); } + .ant-list-item-action-split { background-color: #e8e8e8; } + .ant-list-empty { color: rgba(0, 0, 0, 0.45); } + .ant-list-split .ant-list-item { border-bottom: 1px solid #e8e8e8; } + .ant-list-split .ant-list-item:last-child { border-bottom: none; } + .ant-list-split .ant-list-header { border-bottom: 1px solid #e8e8e8; } + .ant-list-something-after-last-item .ant-spin-container > .ant-list-item:last-child { border-bottom: 1px solid #e8e8e8; } + .ant-list-vertical .ant-list-item-meta-title { color: rgba(0, 0, 0, 0.85); } + .ant-list-vertical .ant-list-item-content { color: rgba(0, 0, 0, 0.65); } + .ant-list-grid .ant-list-item { border-bottom: none; } + .ant-list-bordered { border-radius: 4px; border: 1px solid #d9d9d9; } + .ant-list-bordered .ant-list-item { border-bottom: 1px solid #e8e8e8; } + .ant-mention-wrapper { color: rgba(0, 0, 0, 0.65); } + .ant-mention-wrapper .ant-mention-editor { color: rgba(0, 0, 0, 0.65); background-color: #fff; @@ -5192,109 +5934,138 @@ form .ant-upload { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-mention-wrapper .ant-mention-editor::-moz-placeholder { color: #bfbfbf; } + .ant-mention-wrapper .ant-mention-editor:-ms-input-placeholder { color: #bfbfbf; } + .ant-mention-wrapper .ant-mention-editor::-webkit-input-placeholder { color: #bfbfbf; } + .ant-mention-wrapper .ant-mention-editor:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-mention-wrapper .ant-mention-editor:focus { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-mention-wrapper .ant-mention-editor-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-mention-wrapper .ant-mention-editor-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-mention-wrapper.ant-mention-active:not(.disabled) .ant-mention-editor { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-mention-wrapper.disabled .ant-mention-editor { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-mention-wrapper.disabled .ant-mention-editor:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-mention-wrapper .public-DraftEditorPlaceholder-root .public-DraftEditorPlaceholder-inner { color: #bfbfbf; } + .ant-mention-dropdown { color: rgba(0, 0, 0, 0.65); background-color: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); border-radius: 4px; } + .ant-mention-dropdown-notfound.ant-mention-dropdown-item { color: rgba(0, 0, 0, 0.25); } + .ant-mention-dropdown-notfound.ant-mention-dropdown-item .anticon-loading { color: @primary-color; } + .ant-mention-dropdown-item { color: rgba(0, 0, 0, 0.65); } + .ant-mention-dropdown-item:hover { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-mention-dropdown-item.focus, .ant-mention-dropdown-item-active { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-mention-dropdown-item-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-mention-dropdown-item-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #fff; } + .ant-mention-dropdown-item-selected, .ant-mention-dropdown-item-selected:hover { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.65); } + .ant-mention-dropdown-item-divider { background-color: #e8e8e8; } + .ant-menu { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); color: rgba(0, 0, 0, 0.65); background: #fff; } + .ant-menu-item-group-title { color: rgba(0, 0, 0, 0.45); } + .ant-menu-item:active, .ant-menu-submenu-title:active { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-menu-item > a { color: rgba(0, 0, 0, 0.65); } + .ant-menu-item > a:hover { color: @primary-color; } + .ant-menu-item > a:before { background-color: transparent; } + .ant-menu-item-divider { background-color: #e8e8e8; } + .ant-menu-item:hover, .ant-menu-item-active, .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open, @@ -5302,54 +6073,67 @@ form .ant-upload { .ant-menu-submenu-title:hover { color: @primary-color; } + .ant-menu-horizontal > .ant-menu-item:hover, .ant-menu-horizontal > .ant-menu-item-active, .ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover { background-color: transparent; } + .ant-menu-item-selected { color: @primary-color; } + .ant-menu-item-selected > a, .ant-menu-item-selected > a:hover { color: @primary-color; } + .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-menu-inline, .ant-menu-vertical, .ant-menu-vertical-left { border-right: 1px solid #e8e8e8; } + .ant-menu-vertical-right { border-left: 1px solid #e8e8e8; } + .ant-menu-vertical.ant-menu-sub, .ant-menu-vertical-left.ant-menu-sub, .ant-menu-vertical-right.ant-menu-sub { border-right: 0; } + .ant-menu-vertical.ant-menu-sub .ant-menu-item, .ant-menu-vertical-left.ant-menu-sub .ant-menu-item, .ant-menu-vertical-right.ant-menu-sub .ant-menu-item { border-right: 0; } + .ant-menu-vertical.ant-menu-sub .ant-menu-item:after, .ant-menu-vertical-left.ant-menu-sub .ant-menu-item:after, .ant-menu-vertical-right.ant-menu-sub .ant-menu-item:after { border-right: 0; } + .ant-menu > .ant-menu-item-divider { background-color: #e8e8e8; } + .ant-menu-submenu-popup { border-radius: 4px; } + .ant-menu-submenu > .ant-menu { background-color: #fff; border-radius: 4px; } + .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow:before, .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow:before, .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow:before, @@ -5362,6 +6146,7 @@ form .ant-upload { background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)); border-radius: 2px; } + .ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after, .ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after, .ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after, @@ -5372,25 +6157,30 @@ form .ant-upload { .ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before { background: linear-gradient(to right, @primary-color, @primary-color); } + .ant-menu-vertical .ant-menu-submenu-selected, .ant-menu-vertical-left .ant-menu-submenu-selected, .ant-menu-vertical-right .ant-menu-submenu-selected { color: @primary-color; } + .ant-menu-vertical .ant-menu-submenu-selected > a, .ant-menu-vertical-left .ant-menu-submenu-selected > a, .ant-menu-vertical-right .ant-menu-submenu-selected > a { color: @primary-color; } + .ant-menu-horizontal { border: 0; border-bottom: 1px solid #e8e8e8; box-shadow: none; } + .ant-menu-horizontal > .ant-menu-item, .ant-menu-horizontal > .ant-menu-submenu { border-bottom: 2px solid transparent; } + .ant-menu-horizontal > .ant-menu-item:hover, .ant-menu-horizontal > .ant-menu-submenu:hover, .ant-menu-horizontal > .ant-menu-item-active, @@ -5402,104 +6192,126 @@ form .ant-upload { border-bottom: 2px solid @primary-color; color: @primary-color; } + .ant-menu-horizontal > .ant-menu-item > a { color: rgba(0, 0, 0, 0.65); } + .ant-menu-horizontal > .ant-menu-item > a:hover { color: @primary-color; } + .ant-menu-horizontal > .ant-menu-item-selected > a { color: @primary-color; } + .ant-menu-vertical .ant-menu-item:after, .ant-menu-vertical-left .ant-menu-item:after, .ant-menu-vertical-right .ant-menu-item:after, .ant-menu-inline .ant-menu-item:after { border-right: 3px solid @primary-color; } + .ant-menu-inline-collapsed-tooltip a { color: rgba(255, 255, 255, 0.85); } + .ant-menu-root.ant-menu-vertical, .ant-menu-root.ant-menu-vertical-left, .ant-menu-root.ant-menu-vertical-right, .ant-menu-root.ant-menu-inline { box-shadow: none; } + .ant-menu-sub.ant-menu-inline { border: 0; box-shadow: none; border-radius: 0; } + .ant-menu-item-disabled, .ant-menu-submenu-disabled { color: rgba(0, 0, 0, 0.25) !important; background: none; border-color: transparent !important; } + .ant-menu-item-disabled > a, .ant-menu-submenu-disabled > a { color: rgba(0, 0, 0, 0.25) !important; } + .ant-menu-item-disabled > .ant-menu-submenu-title, .ant-menu-submenu-disabled > .ant-menu-submenu-title { color: rgba(0, 0, 0, 0.25) !important; } + .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before, .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before, .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after, .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after { background: rgba(0, 0, 0, 0.25) !important; } + .ant-menu-dark, .ant-menu-dark .ant-menu-sub { color: rgba(255, 255, 255, 0.65); background: #001529; } + .ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:after, .ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after, .ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:before, .ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before { background: #fff; } + .ant-menu-dark.ant-menu-submenu-popup { background: transparent; } + .ant-menu-dark .ant-menu-inline.ant-menu-sub { background: #000c17; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset; } + .ant-menu-dark.ant-menu-horizontal { border-bottom: 0; } + .ant-menu-dark.ant-menu-horizontal > .ant-menu-item, .ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu { border-color: #001529; border-bottom: 0; } + .ant-menu-dark .ant-menu-item, .ant-menu-dark .ant-menu-item-group-title, .ant-menu-dark .ant-menu-item > a { color: rgba(255, 255, 255, 0.65); } + .ant-menu-dark.ant-menu-inline, .ant-menu-dark.ant-menu-vertical, .ant-menu-dark.ant-menu-vertical-left, .ant-menu-dark.ant-menu-vertical-right { border-right: 0; } + .ant-menu-dark.ant-menu-inline .ant-menu-item, .ant-menu-dark.ant-menu-vertical .ant-menu-item, .ant-menu-dark.ant-menu-vertical-left .ant-menu-item, .ant-menu-dark.ant-menu-vertical-right .ant-menu-item { border-right: 0; } + .ant-menu-dark.ant-menu-inline .ant-menu-item:after, .ant-menu-dark.ant-menu-vertical .ant-menu-item:after, .ant-menu-dark.ant-menu-vertical-left .ant-menu-item:after, .ant-menu-dark.ant-menu-vertical-right .ant-menu-item:after { border-right: 0; } + .ant-menu-dark .ant-menu-item:hover, .ant-menu-dark .ant-menu-item-active, .ant-menu-dark .ant-menu-submenu-active, @@ -5509,6 +6321,7 @@ form .ant-upload { background-color: transparent; color: #fff; } + .ant-menu-dark .ant-menu-item:hover > a, .ant-menu-dark .ant-menu-item-active > a, .ant-menu-dark .ant-menu-submenu-active > a, @@ -5517,6 +6330,7 @@ form .ant-upload { .ant-menu-dark .ant-menu-submenu-title:hover > a { color: #fff; } + .ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after, .ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after, .ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after, @@ -5543,64 +6357,80 @@ form .ant-upload { .ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before { background: #fff; } + .ant-menu-dark .ant-menu-item-selected { border-right: 0; color: #fff; } + .ant-menu-dark .ant-menu-item-selected:after { border-right: 0; } + .ant-menu-dark .ant-menu-item-selected > a, .ant-menu-dark .ant-menu-item-selected > a:hover { color: #fff; } + .ant-menu.ant-menu-dark .ant-menu-item-selected, .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected { background-color: @primary-color; } + .ant-menu-dark .ant-menu-item-disabled, .ant-menu-dark .ant-menu-submenu-disabled, .ant-menu-dark .ant-menu-item-disabled > a, .ant-menu-dark .ant-menu-submenu-disabled > a { color: rgba(255, 255, 255, 0.35) !important; } + .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title, .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title { color: rgba(255, 255, 255, 0.35) !important; } + .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before, .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before, .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after, .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after { background: rgba(255, 255, 255, 0.35) !important; } + .ant-message { color: rgba(0, 0, 0, 0.65); } + .ant-message-notice-content { border-radius: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); background: #fff; } + .ant-message-success .anticon { color: #52c41a; } + .ant-message-error .anticon { color: #f5222d; } + .ant-message-warning .anticon { color: #faad14; } + .ant-message-info .anticon, .ant-message-loading .anticon { color: @primary-color; } + .ant-modal { color: rgba(0, 0, 0, 0.65); } + .ant-modal-title { color: rgba(0, 0, 0, 0.85); } + .ant-modal-content { background-color: #fff; border: 0; @@ -5608,120 +6438,153 @@ form .ant-upload { background-clip: padding-box; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } + .ant-modal-close { border: 0; background: transparent; color: rgba(0, 0, 0, 0.45); } + .ant-modal-close:focus, .ant-modal-close:hover { color: #444; } + .ant-modal-header { border-radius: 4px 4px 0 0; background: #fff; color: rgba(0, 0, 0, 0.65); border-bottom: 1px solid #e8e8e8; } + .ant-modal-footer { border-top: 1px solid #e8e8e8; border-radius: 0 0 4px 4px; } + .ant-modal-mask { background-color: rgba(0, 0, 0, 0.65); } + .ant-confirm-body .ant-confirm-title { color: rgba(0, 0, 0, 0.85); } + .ant-confirm-body .ant-confirm-content { color: rgba(0, 0, 0, 0.65); } + .ant-confirm-error .ant-confirm-body > .anticon { color: #f5222d; } + .ant-confirm-warning .ant-confirm-body > .anticon, .ant-confirm-confirm .ant-confirm-body > .anticon { color: #faad14; } + .ant-confirm-info .ant-confirm-body > .anticon { color: @primary-color; } + .ant-confirm-success .ant-confirm-body > .anticon { color: #52c41a; } + .ant-notification { color: rgba(0, 0, 0, 0.65); } + .ant-notification-notice { border-radius: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); background: #fff; } + .ant-notification-notice-message { color: rgba(0, 0, 0, 0.85); } + .ant-notification-notice-message-single-line-auto-margin { background-color: transparent; } + .ant-notification-notice-icon-success { color: #52c41a; } + .ant-notification-notice-icon-info { color: @primary-color; } + .ant-notification-notice-icon-warning { color: #faad14; } + .ant-notification-notice-icon-error { color: #f5222d; } + .ant-notification-notice-close { color: rgba(0, 0, 0, 0.45); } + .ant-notification-notice-close:hover { color: rgba(0, 0, 0, 0.67); } + .ant-pagination { color: rgba(0, 0, 0, 0.65); } + .ant-pagination-item { border-radius: 4px; border: 1px solid #d9d9d9; background-color: #fff; } + .ant-pagination-item a { color: rgba(0, 0, 0, 0.65); } + .ant-pagination-item:focus, .ant-pagination-item:hover { border-color: @primary-color; } + .ant-pagination-item:focus a, .ant-pagination-item:hover a { color: @primary-color; } + .ant-pagination-item-active { border-color: @primary-color; } + .ant-pagination-item-active a { color: @primary-color; } + .ant-pagination-item-active:focus, .ant-pagination-item-active:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-pagination-item-active:focus a, .ant-pagination-item-active:hover a { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon, .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon { color: @primary-color; } + .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis, .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis { color: rgba(0, 0, 0, 0.25); } + .ant-pagination-prev, .ant-pagination-next, .ant-pagination-jump-prev, @@ -5729,20 +6592,24 @@ form .ant-upload { color: rgba(0, 0, 0, 0.65); border-radius: 4px; } + .ant-pagination-prev a, .ant-pagination-next a { color: rgba(0, 0, 0, 0.65); } + .ant-pagination-prev:hover a, .ant-pagination-next:hover a { border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-pagination-prev .ant-pagination-item-link, .ant-pagination-next .ant-pagination-item-link { border: 1px solid #d9d9d9; background-color: #fff; border-radius: 4px; } + .ant-pagination-prev:focus .ant-pagination-item-link, .ant-pagination-next:focus .ant-pagination-item-link, .ant-pagination-prev:hover .ant-pagination-item-link, @@ -5750,6 +6617,7 @@ form .ant-upload { border-color: @primary-color; color: @primary-color; } + .ant-pagination-disabled a, .ant-pagination-disabled:hover a, .ant-pagination-disabled:focus a, @@ -5759,6 +6627,7 @@ form .ant-upload { border-color: #d9d9d9; color: rgba(0, 0, 0, 0.25); } + .ant-pagination-options-quick-jumper input { color: rgba(0, 0, 0, 0.65); background-color: #fff; @@ -5766,166 +6635,210 @@ form .ant-upload { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-pagination-options-quick-jumper input::-moz-placeholder { color: #bfbfbf; } + .ant-pagination-options-quick-jumper input:-ms-input-placeholder { color: #bfbfbf; } + .ant-pagination-options-quick-jumper input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-pagination-options-quick-jumper input:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-pagination-options-quick-jumper input:focus { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-pagination-options-quick-jumper input-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-pagination-options-quick-jumper input-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link, .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link { border: 0; } + .ant-pagination-simple .ant-pagination-simple-pager input { background-color: #fff; border-radius: 4px; border: 1px solid #d9d9d9; } + .ant-pagination-simple .ant-pagination-simple-pager input:hover { border-color: @primary-color; } + .ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) { background: transparent; border-color: transparent; } + .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link, .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link { border-color: transparent; background: transparent; } + .ant-popover { color: rgba(0, 0, 0, 0.65); } + .ant-popover:after { background: rgba(255, 255, 255, 0.01); } + .ant-popover-inner { background-color: #fff; background-clip: padding-box; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-popover-title { border-bottom: 1px solid #e8e8e8; color: rgba(0, 0, 0, 0.85); } + .ant-popover-inner-content { color: rgba(0, 0, 0, 0.65); } + .ant-popover-message { color: rgba(0, 0, 0, 0.65); } + .ant-popover-message > .anticon { color: #faad14; } + .ant-popover-arrow { background: #fff; border-color: transparent; border-style: solid; } + .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow { box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); } + .ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow { box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07); } + .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow { box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06); } + .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow { box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07); } + .ant-progress { color: rgba(0, 0, 0, 0.65); } + .ant-progress-inner { background-color: #f5f5f5; border-radius: 100px; } + .ant-progress-success-bg, .ant-progress-bg { background-color: @primary-color; } + .ant-progress-success-bg { background-color: #52c41a; } + .ant-progress-text { color: rgba(0, 0, 0, 0.45); } + .ant-progress-status-active .ant-progress-bg:before { background: #fff; border-radius: 10px; } + .ant-progress-status-exception .ant-progress-bg { background-color: #f5222d; } + .ant-progress-status-exception .ant-progress-text { color: #f5222d; } + .ant-progress-status-success .ant-progress-bg { background-color: #52c41a; } + .ant-progress-status-success .ant-progress-text { color: #52c41a; } + .ant-progress-circle .ant-progress-inner { background-color: transparent; } + .ant-progress-circle .ant-progress-text { color: rgba(0, 0, 0, 0.65); } + .ant-progress-circle.ant-progress-status-exception .ant-progress-text { color: #f5222d; } + .ant-progress-circle.ant-progress-status-success .ant-progress-text { color: #52c41a; } + .ant-radio-group { color: rgba(0, 0, 0, 0.65); } + .ant-radio-wrapper { color: rgba(0, 0, 0, 0.65); } + .ant-radio { color: rgba(0, 0, 0, 0.65); } + .ant-radio-wrapper:hover .ant-radio .ant-radio-inner, .ant-radio:hover .ant-radio-inner, .ant-radio-focused .ant-radio-inner { border-color: @primary-color; } + .ant-radio-checked:after { border-radius: 50%; border: 1px solid @primary-color; } + .ant-radio-inner { border-width: 1px; border-style: solid; @@ -5933,25 +6846,31 @@ form .ant-upload { border-color: #d9d9d9; background-color: #fff; } + .ant-radio-inner:after { border-radius: 8px; border-top: 0; border-left: 0; background-color: @primary-color; } + .ant-radio-checked .ant-radio-inner { border-color: @primary-color; } + .ant-radio-disabled .ant-radio-inner { border-color: #d9d9d9 !important; background-color: #f5f5f5; } + .ant-radio-disabled .ant-radio-inner:after { background-color: #ccc; } + .ant-radio-disabled + span { color: rgba(0, 0, 0, 0.25); } + .ant-radio-button-wrapper { color: rgba(0, 0, 0, 0.65); border: 1px solid #d9d9d9; @@ -5959,118 +6878,146 @@ form .ant-upload { border-top-width: 1.02px; background: #fff; } + .ant-radio-button-wrapper a { color: rgba(0, 0, 0, 0.65); } + .ant-radio-button-wrapper:not(:first-child)::before { background-color: #d9d9d9; } + .ant-radio-button-wrapper:first-child { border-radius: 4px 0 0 4px; border-left: 1px solid #d9d9d9; } + .ant-radio-button-wrapper:last-child { border-radius: 0 4px 4px 0; } + .ant-radio-button-wrapper:first-child:last-child { border-radius: 4px; } + .ant-radio-button-wrapper:hover, .ant-radio-button-wrapper-focused { color: @primary-color; } + .ant-radio-button-wrapper-checked { background: #fff; border-color: @primary-color; color: @primary-color; box-shadow: -1px 0 0 0 @primary-color; } + .ant-radio-button-wrapper-checked::before { background-color: @primary-color !important; } + .ant-radio-button-wrapper-checked:first-child { border-color: @primary-color; box-shadow: none !important; } + .ant-radio-button-wrapper-checked:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: -1px 0 0 0 color(~`colorPalette("@{primary-color}", 5)`); color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-radio-button-wrapper-checked:active { border-color: color(~`colorPalette("@{primary-color}", 7)`); box-shadow: -1px 0 0 0 color(~`colorPalette("@{primary-color}", 7)`); color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { background: @primary-color; border-color: @primary-color; color: #fff; } + .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); background: color(~`colorPalette("@{primary-color}", 5)`); color: #fff; } + .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { border-color: color(~`colorPalette("@{primary-color}", 7)`); background: color(~`colorPalette("@{primary-color}", 7)`); color: #fff; } + .ant-radio-button-wrapper-disabled { border-color: #d9d9d9; background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-radio-button-wrapper-disabled:first-child, .ant-radio-button-wrapper-disabled:hover { border-color: #d9d9d9; background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-radio-button-wrapper-disabled:first-child { border-left-color: #d9d9d9; } + .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked { color: #fff; background-color: #e6e6e6; border-color: #d9d9d9; box-shadow: none; } + .ant-rate { color: rgba(0, 0, 0, 0.65); color: #fadb14; } + .ant-rate-star { color: inherit; } + .ant-rate-star-first, .ant-rate-star-second { color: #e8e8e8; } + .ant-rate-star-half .ant-rate-star-first, .ant-rate-star-full .ant-rate-star-second { color: inherit; } + .ant-select { color: rgba(0, 0, 0, 0.65); } + .ant-select > ul > li > a { background-color: #fff; } + .ant-select-arrow { color: rgba(0, 0, 0, 0.25); } + .ant-select-selection { background-color: #fff; border-radius: 4px; border: 1px solid #d9d9d9; border-top-width: 1.02px; } + .ant-select-selection:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-select-focused .ant-select-selection, .ant-select-selection:focus, .ant-select-selection:active { @@ -6078,524 +7025,674 @@ form .ant-upload { box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-select-selection__clear { background: #fff; color: rgba(0, 0, 0, 0.25); } + .ant-select-selection__clear:hover { color: rgba(0, 0, 0, 0.45); } + .ant-select-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-select-disabled .ant-select-selection { background: #f5f5f5; } + .ant-select-disabled .ant-select-selection:hover, .ant-select-disabled .ant-select-selection:focus, .ant-select-disabled .ant-select-selection:active { border-color: #d9d9d9; box-shadow: none; } + .ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice { background: #f5f5f5; color: #aaa; } + .ant-select-disabled .ant-select-selection__choice__remove { color: rgba(0, 0, 0, 0.25); } + .ant-select-disabled .ant-select-selection__choice__remove:hover { color: rgba(0, 0, 0, 0.25); } + .ant-select-selection__placeholder, .ant-select-search__field__placeholder { color: #bfbfbf; } + .ant-select-search--inline .ant-select-search__field { border-width: 0; background: transparent; border-radius: 4px; } + .ant-select-selection--multiple .ant-select-selection__choice { color: rgba(0, 0, 0, 0.65); background-color: #fafafa; border: 1px solid #e8e8e8; border-radius: 2px; } + .ant-select-selection--multiple .ant-select-selection__choice__remove { color: rgba(0, 0, 0, 0.45); } + .ant-select-selection--multiple .ant-select-selection__choice__remove:hover { color: #404040; } + .ant-select-open .ant-select-selection { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-select-combobox .ant-select-search__field { box-shadow: none; } + .ant-select-dropdown { color: rgba(0, 0, 0, 0.65); background-color: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); border-radius: 4px; } + .ant-select-dropdown-menu-item-group-title { color: rgba(0, 0, 0, 0.45); } + .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:first-child:not(:last-child), .ant-select-dropdown-menu-item-group:not(:last-child) .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:last-child { border-radius: 0; } + .ant-select-dropdown-menu-item { color: rgba(0, 0, 0, 0.65); } + .ant-select-dropdown-menu-item:hover { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-select-dropdown-menu-item:first-child { border-radius: 4px 4px 0 0; } + .ant-select-dropdown-menu-item:last-child { border-radius: 0 0 4px 4px; } + .ant-select-dropdown-menu-item-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-select-dropdown-menu-item-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #fff; } + .ant-select-dropdown-menu-item-selected, .ant-select-dropdown-menu-item-selected:hover { background-color: #fafafa; color: rgba(0, 0, 0, 0.65); } + .ant-select-dropdown-menu-item-active { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-select-dropdown-menu-item-divider { background-color: #e8e8e8; } + .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item .ant-select-selected-icon { color: transparent; } + .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover .ant-select-selected-icon { color: #ddd; } + .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected .ant-select-selected-icon, .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon { color: @primary-color; } + .ant-skeleton-header .ant-skeleton-avatar { background: #f2f2f2; } + .ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle { border-radius: 50%; } + .ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle { border-radius: 50%; } + .ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle { border-radius: 50%; } + .ant-skeleton-content .ant-skeleton-title { background: #f2f2f2; } + .ant-skeleton-content .ant-skeleton-paragraph > li { background: #f2f2f2; } + .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li { background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%); background-size: 400% 100%; } + .ant-skeleton.ant-skeleton-active .ant-skeleton-avatar { background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%); background-size: 400% 100%; } + .ant-slider { color: rgba(0, 0, 0, 0.65); } + .ant-slider-rail { border-radius: 2px; background-color: #f5f5f5; } + .ant-slider-track { border-radius: 4px; background-color: color(~`colorPalette("@{primary-color}", 3)`); } + .ant-slider-handle { border-radius: 50%; border: solid 2px color(~`colorPalette("@{primary-color}", 3)`); background-color: #fff; } + .ant-slider-handle:focus { border-color: #46a6ff; box-shadow: 0 0 0 5px #8cc8ff; } + .ant-slider-handle.ant-tooltip-open { border-color: @primary-color; } + .ant-slider:hover .ant-slider-rail { background-color: #e1e1e1; } + .ant-slider:hover .ant-slider-track { background-color: color(~`colorPalette("@{primary-color}", 4)`); } + .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) { border-color: color(~`colorPalette("@{primary-color}", 4)`); } + .ant-slider-mark-text { color: rgba(0, 0, 0, 0.45); } + .ant-slider-mark-text-active { color: rgba(0, 0, 0, 0.65); } + .ant-slider-step { background: transparent; } + .ant-slider-dot { border: 2px solid #e8e8e8; background-color: #fff; border-radius: 50%; } + .ant-slider-dot-active { border-color: #8cc8ff; } + .ant-slider-disabled .ant-slider-track { background-color: rgba(0, 0, 0, 0.25) !important; } + .ant-slider-disabled .ant-slider-handle, .ant-slider-disabled .ant-slider-dot { border-color: rgba(0, 0, 0, 0.25) !important; background-color: #fff; box-shadow: none; } + .ant-spin { color: rgba(0, 0, 0, 0.65); color: @primary-color; } + .ant-spin-blur:after { background: #fff; } + .ant-spin-tip { color: rgba(0, 0, 0, 0.45); } + .ant-spin-dot i { border-radius: 100%; background-color: @primary-color; } + .ant-steps { color: rgba(0, 0, 0, 0.65); } + .ant-steps-item-icon { border: 1px solid rgba(0, 0, 0, 0.25); border-radius: 32px; } + .ant-steps-item-icon > .ant-steps-icon { color: @primary-color; } + .ant-steps-item-tail:after { background: #e8e8e8; border-radius: 1px; } + .ant-steps-item-title { color: rgba(0, 0, 0, 0.65); } + .ant-steps-item-title:after { background: #e8e8e8; } + .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); } + .ant-steps-item-wait .ant-steps-item-icon { border-color: rgba(0, 0, 0, 0.25); background-color: #fff; } + .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon { color: rgba(0, 0, 0, 0.25); } + .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: rgba(0, 0, 0, 0.25); } + .ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-title { color: rgba(0, 0, 0, 0.45); } + .ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-title:after { background-color: #e8e8e8; } + .ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); } + .ant-steps-item-wait > .ant-steps-item-tail:after { background-color: #e8e8e8; } + .ant-steps-item-process .ant-steps-item-icon { border-color: @primary-color; background-color: #fff; } + .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { color: @primary-color; } + .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: @primary-color; } + .ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title { color: rgba(0, 0, 0, 0.85); } + .ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title:after { background-color: #e8e8e8; } + .ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-description { color: rgba(0, 0, 0, 0.65); } + .ant-steps-item-process > .ant-steps-item-tail:after { background-color: #e8e8e8; } + .ant-steps-item-process .ant-steps-item-icon { background: @primary-color; } + .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { color: #fff; } + .ant-steps-item-finish .ant-steps-item-icon { border-color: @primary-color; background-color: #fff; } + .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon { color: @primary-color; } + .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: @primary-color; } + .ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title { color: rgba(0, 0, 0, 0.65); } + .ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title:after { background-color: @primary-color; } + .ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); } + .ant-steps-item-finish > .ant-steps-item-tail:after { background-color: @primary-color; } + .ant-steps-item-error .ant-steps-item-icon { border-color: #f5222d; background-color: #fff; } + .ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon { color: #f5222d; } + .ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: #f5222d; } + .ant-steps-item-error > .ant-steps-item-content > .ant-steps-item-title { color: #f5222d; } + .ant-steps-item-error > .ant-steps-item-content > .ant-steps-item-title:after { background-color: #e8e8e8; } + .ant-steps-item-error > .ant-steps-item-content > .ant-steps-item-description { color: #f5222d; } + .ant-steps-item-error > .ant-steps-item-tail:after { background-color: #e8e8e8; } + .ant-steps-item.ant-steps-next-error .ant-steps-item-title:after { background: #f5222d; } + .ant-steps-item-custom .ant-steps-item-icon { background: none; border: 0; } + .ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { color: @primary-color; } + .ant-steps-small .ant-steps-item-icon { border-radius: 24px; } + .ant-steps-small .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); } + .ant-steps-small .ant-steps-item-custom .ant-steps-item-icon { border-radius: 0; border: 0; background: none; } + .ant-steps-dot .ant-steps-item-icon { border: 0; background: transparent; } + .ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot { border-radius: 100px; } + .ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot:after { background: rgba(0, 0, 0, 0.001); } + .ant-switch { color: rgba(0, 0, 0, 0.65); border-radius: 100px; border: 1px solid transparent; background-color: rgba(0, 0, 0, 0.25); } + .ant-switch-inner { color: #fff; } + .ant-switch-loading-icon, .ant-switch:after { border-radius: 18px; background-color: #fff; } + .ant-switch:after { box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2); } + .ant-switch-loading-icon { background: transparent; } + .ant-switch-loading .ant-switch-loading-icon { color: rgba(0, 0, 0, 0.65); } + .ant-switch-checked.ant-switch-loading .ant-switch-loading-icon { color: @primary-color; } + .ant-switch:focus { box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); } + .ant-switch:focus:hover { box-shadow: none; } + .ant-switch-checked { background-color: @primary-color; } + .ant-table { color: rgba(0, 0, 0, 0.65); } + .ant-table table { border-collapse: collapse; border-radius: 4px 4px 0 0; } + .ant-table-thead > tr > th { background: #fafafa; color: rgba(0, 0, 0, 0.85); border-bottom: 1px solid #e8e8e8; } + .ant-table-thead > tr > th .anticon-filter, .ant-table-thead > tr > th .ant-table-filter-icon { color: #bfbfbf; } + .ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter { color: @primary-color; } + .ant-table-thead > tr > th .ant-table-column-sorter { color: #bfbfbf; } + .ant-table-thead > tr > th .ant-table-column-sorter-up.on, .ant-table-thead > tr > th .ant-table-column-sorter-down.on { color: @primary-color; } + .ant-table-thead > tr > th.ant-table-column-has-actions:hover { background: #f5f5f5; } + .ant-table-thead > tr > th.ant-table-column-has-actions:hover .anticon-filter, .ant-table-thead > tr > th.ant-table-column-has-actions:hover .ant-table-filter-icon { background: #f5f5f5; } + .ant-table-thead > tr > th.ant-table-column-has-actions:hover .anticon-filter:hover, .ant-table-thead > tr > th.ant-table-column-has-actions:hover .ant-table-filter-icon:hover { color: rgba(0, 0, 0, 0.45); background: #ebebeb; } + .ant-table-thead > tr > th.ant-table-column-has-actions:hover .anticon-filter:active, .ant-table-thead > tr > th.ant-table-column-has-actions:hover .ant-table-filter-icon:active { color: rgba(0, 0, 0, 0.65); } + .ant-table-thead > tr > th.ant-table-column-has-actions .anticon-filter.ant-table-filter-open, .ant-table-thead > tr > th.ant-table-column-has-actions .ant-table-filter-icon.ant-table-filter-open { color: rgba(0, 0, 0, 0.45); background: #ebebeb; } + .ant-table-thead > tr > th.ant-table-column-has-actions:active .ant-table-column-sorter-up:not(.on), .ant-table-thead > tr > th.ant-table-column-has-actions:active .ant-table-column-sorter-down:not(.on) { color: rgba(0, 0, 0, 0.45); } + .ant-table-thead > tr > th .ant-table-column-sorters:before { background: transparent; } + .ant-table-thead > tr > th .ant-table-column-sorters:hover:before { background: rgba(0, 0, 0, 0.04); } + .ant-table-thead > tr:first-child > th:first-child { border-top-left-radius: 4px; } + .ant-table-thead > tr:first-child > th:last-child { border-top-right-radius: 4px; } + .ant-table-thead > tr:not(:last-child) > th[colspan] { border-bottom: 0; } + .ant-table-tbody > tr > td { border-bottom: 1px solid #e8e8e8; } + .ant-table-thead > tr.ant-table-row-hover > td, .ant-table-tbody > tr.ant-table-row-hover > td, .ant-table-thead > tr:hover > td, .ant-table-tbody > tr:hover > td { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-table-thead > tr:hover { background: none; } + .ant-table-footer { background: #fafafa; border-radius: 0 0 4px 4px; border-top: 1px solid #e8e8e8; } + .ant-table-footer:before { background: #fafafa; } + .ant-table.ant-table-bordered .ant-table-footer { border: 1px solid #e8e8e8; } + .ant-table-title { border-radius: 4px 4px 0 0; } + .ant-table.ant-table-bordered .ant-table-title { border: 1px solid #e8e8e8; } + .ant-table-title + .ant-table-content { border-radius: 4px 4px 0 0; } + .ant-table-bordered .ant-table-title + .ant-table-content, .ant-table-bordered .ant-table-title + .ant-table-content table, .ant-table-bordered .ant-table-title + .ant-table-content .ant-table-thead > tr:first-child > th { border-radius: 0; } + .ant-table-without-column-header .ant-table-title + .ant-table-content, .ant-table-without-column-header table { border-radius: 0; } + .ant-table-tbody > tr.ant-table-row-selected td { background: #fafafa; } + .ant-table-thead > tr > th.ant-table-column-sort { background: #f5f5f5; } + .ant-table-tbody > tr > td.ant-table-column-sort { background: rgba(0, 0, 0, 0.01); } + .ant-table-header { background: #fafafa; } + .ant-table-header table { border-radius: 4px 4px 0 0; } + .ant-table-loading .ant-table-body { background: #fff; } + .ant-table-bordered .ant-table-header > table, .ant-table-bordered .ant-table-body > table, .ant-table-bordered .ant-table-fixed-left table, @@ -6604,142 +7701,181 @@ form .ant-upload { border-right: 0; border-bottom: 0; } + .ant-table-bordered.ant-table-empty .ant-table-placeholder { border-left: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; } + .ant-table-bordered.ant-table-fixed-header .ant-table-header > table { border-bottom: 0; } + .ant-table-bordered.ant-table-fixed-header .ant-table-body > table { border-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } + .ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table { border-top: 0; } + .ant-table-bordered.ant-table-fixed-header .ant-table-placeholder { border: 0; } + .ant-table-bordered .ant-table-thead > tr:not(:last-child) > th { border-bottom: 1px solid #e8e8e8; } + .ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td { border-right: 1px solid #e8e8e8; } + .ant-table-placeholder { background: #fff; border-bottom: 1px solid #e8e8e8; color: rgba(0, 0, 0, 0.45); } + .ant-table-filter-dropdown { background: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-table-filter-dropdown .ant-dropdown-menu { border: 0; box-shadow: none; border-radius: 4px 4px 0 0; } + .ant-table-filter-dropdown .ant-dropdown-menu-sub { border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title:after { color: @primary-color; } + .ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child, .ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title { border-radius: 0; } + .ant-table-filter-dropdown-btns { border-top: 1px solid #e8e8e8; } + .ant-table-filter-dropdown-link { color: @primary-color; } + .ant-table-filter-dropdown-link:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-table-filter-dropdown-link:active { color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-table-selection .anticon-down { color: #bfbfbf; } + .ant-table-selection-menu { background: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-table-selection-menu .ant-action-down { color: #bfbfbf; } + .ant-table-selection-down:hover .anticon-down { color: #666; } + .ant-table-row-expand-icon { border: 1px solid #e8e8e8; background: #fff; } + tr.ant-table-expanded-row, tr.ant-table-expanded-row:hover { background: #fbfbfb; } + .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body { background: #fff; } + .ant-table-fixed-left, .ant-table-fixed-right { border-radius: 0; } + .ant-table-fixed-left table, .ant-table-fixed-right table { background: #fff; } + .ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed, .ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed { border-radius: 0; } + .ant-table-fixed-left { box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15); } + .ant-table-fixed-left, .ant-table-fixed-left table { border-radius: 4px 0 0 0; } + .ant-table-fixed-left .ant-table-thead > tr > th:last-child { border-top-right-radius: 0; } + .ant-table-fixed-right { box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15); } + .ant-table-fixed-right, .ant-table-fixed-right table { border-radius: 0 4px 0 0; } + .ant-table-fixed-right .ant-table-expanded-row { color: transparent; } + .ant-table-fixed-right .ant-table-thead > tr > th:first-child { border-top-left-radius: 0; } + .ant-table.ant-table-scroll-position-left .ant-table-fixed-left { box-shadow: none; } + .ant-table.ant-table-scroll-position-right .ant-table-fixed-right { box-shadow: none; } + .ant-table-small { border: 1px solid #e8e8e8; border-radius: 4px; } + .ant-table-small > .ant-table-title { border-bottom: 1px solid #e8e8e8; } + .ant-table-small > .ant-table-content > .ant-table-header > table, .ant-table-small > .ant-table-content > .ant-table-body > table, .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table, @@ -6750,6 +7886,7 @@ tr.ant-table-expanded-row:hover { .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table { border: 0; } + .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th, .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th, .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th, @@ -6761,163 +7898,206 @@ tr.ant-table-expanded-row:hover { background: #fff; border-bottom: 1px solid #e8e8e8; } + .ant-table-small > .ant-table-content .ant-table-header { background: #fff; } + .ant-table-small > .ant-table-content .ant-table-placeholder, .ant-table-small > .ant-table-content .ant-table-row:last-child td { border-bottom: 0; } + .ant-table-small.ant-table-bordered { border-right: 0; } + .ant-table-small.ant-table-bordered .ant-table-title { border: 0; border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; } + .ant-table-small.ant-table-bordered .ant-table-content { border-right: 1px solid #e8e8e8; } + .ant-table-small.ant-table-bordered .ant-table-footer { border: 0; border-top: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; } + .ant-table-small.ant-table-bordered .ant-table-placeholder { border-left: 0; border-bottom: 0; } + .ant-table-small.ant-table-bordered .ant-table-thead > tr > th:last-child, .ant-table-small.ant-table-bordered .ant-table-tbody > tr > td:last-child { border-right: none; } + .ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child, .ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child { border-right: 1px solid #e8e8e8; } + .ant-table-small.ant-table-bordered .ant-table-fixed-right { border-right: 1px solid #e8e8e8; } + .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab { border: 1px solid #e8e8e8; border-bottom: 0; border-radius: 4px 4px 0 0; background: #fafafa; } + .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active { background: #fff; border-color: @primary-color !important; color: @primary-color; } + .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .ant-tabs-close-x { color: rgba(0, 0, 0, 0.45); } + .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .ant-tabs-close-x:hover { color: rgba(0, 0, 0, 0.85); } + .ant-tabs-extra-content .ant-tabs-new-tab { border-radius: 2px; border: 1px solid #e8e8e8; color: rgba(0, 0, 0, 0.65); } + .ant-tabs-extra-content .ant-tabs-new-tab:hover { color: @primary-color; border-color: @primary-color; } + .ant-tabs-vertical.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab { border-bottom: 1px solid #e8e8e8; } + .ant-tabs-vertical.ant-tabs-card.ant-tabs-left > .ant-tabs-bar .ant-tabs-tab { border-right: 0; border-radius: 4px 0 0 4px; } + .ant-tabs-vertical.ant-tabs-card.ant-tabs-right > .ant-tabs-bar .ant-tabs-tab { border-left: 0; border-radius: 0 4px 4px 0; } + .ant-tabs.ant-tabs-card.ant-tabs-bottom > .ant-tabs-bar .ant-tabs-tab { border-bottom: 1px solid #e8e8e8; border-top: 0; border-radius: 0 0 4px 4px; } + .ant-tabs.ant-tabs-card.ant-tabs-bottom > .ant-tabs-bar .ant-tabs-tab-active { color: @primary-color; } + .ant-tabs { color: rgba(0, 0, 0, 0.65); } + .ant-tabs-ink-bar { background-color: @primary-color; } + .ant-tabs-bar { border-bottom: 1px solid #e8e8e8; } + .ant-tabs-bottom .ant-tabs-bar { border-bottom: none; border-top: 1px solid #e8e8e8; } + .ant-tabs-tab-prev, .ant-tabs-tab-next { border: 0; background-color: transparent; color: rgba(0, 0, 0, 0.45); } + .ant-tabs-tab-prev:hover, .ant-tabs-tab-next:hover { color: rgba(0, 0, 0, 0.65); } + .ant-tabs-tab-btn-disabled, .ant-tabs-tab-btn-disabled:hover { color: rgba(0, 0, 0, 0.25); } + .ant-tabs-nav .ant-tabs-tab-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-tabs-nav .ant-tabs-tab:hover { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-tabs-nav .ant-tabs-tab:active { color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-tabs-nav .ant-tabs-tab-active { color: @primary-color; } + .ant-tabs-vertical > .ant-tabs-bar { border-bottom: 0; } + .ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar { border-right: 1px solid #e8e8e8; } + .ant-tabs-vertical.ant-tabs-left > .ant-tabs-content { border-left: 1px solid #e8e8e8; } + .ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar { border-left: 1px solid #e8e8e8; } + .ant-tabs-vertical.ant-tabs-right > .ant-tabs-content { border-right: 1px solid #e8e8e8; } + .ant-tag { color: rgba(0, 0, 0, 0.65); border-radius: 4px; border: 1px solid #d9d9d9; background: #fafafa; } + .ant-tag, .ant-tag a, .ant-tag a:hover { color: rgba(0, 0, 0, 0.65); } + .ant-tag .anticon-close { color: rgba(0, 0, 0, 0.45); } + .ant-tag .anticon-close:hover { color: rgba(0, 0, 0, 0.85); } + .ant-tag-has-color { border-color: transparent; } + .ant-tag-has-color, .ant-tag-has-color a, .ant-tag-has-color a:hover, @@ -6925,216 +8105,268 @@ tr.ant-table-expanded-row:hover { .ant-tag-has-color .anticon-close:hover { color: #fff; } + .ant-tag-checkable { background-color: transparent; border-color: transparent; } + .ant-tag-checkable:not(.ant-tag-checkable-checked):hover { color: @primary-color; } + .ant-tag-checkable:active, .ant-tag-checkable-checked { color: #fff; } + .ant-tag-checkable-checked { background-color: @primary-color; } + .ant-tag-checkable:active { background-color: color(~`colorPalette("@{primary-color}", 7)`); } + .ant-tag-pink { color: #eb2f96; background: #fff0f6; border-color: #ffadd2; } + .ant-tag-pink-inverse { background: #eb2f96; border-color: #eb2f96; color: #fff; } + .ant-tag-magenta { color: #eb2f96; background: #fff0f6; border-color: #ffadd2; } + .ant-tag-magenta-inverse { background: #eb2f96; border-color: #eb2f96; color: #fff; } + .ant-tag-red { color: #f5222d; background: #fff1f0; border-color: #ffa39e; } + .ant-tag-red-inverse { background: #f5222d; border-color: #f5222d; color: #fff; } + .ant-tag-volcano { color: #fa541c; background: #fff2e8; border-color: #ffbb96; } + .ant-tag-volcano-inverse { background: #fa541c; border-color: #fa541c; color: #fff; } + .ant-tag-orange { color: #fa8c16; background: #fff7e6; border-color: #ffd591; } + .ant-tag-orange-inverse { background: #fa8c16; border-color: #fa8c16; color: #fff; } + .ant-tag-yellow { color: #fadb14; background: #feffe6; border-color: #fffb8f; } + .ant-tag-yellow-inverse { background: #fadb14; border-color: #fadb14; color: #fff; } + .ant-tag-gold { color: #faad14; background: #fffbe6; border-color: #ffe58f; } + .ant-tag-gold-inverse { background: #faad14; border-color: #faad14; color: #fff; } + .ant-tag-cyan { color: #13c2c2; background: #e6fffb; border-color: #87e8de; } + .ant-tag-cyan-inverse { background: #13c2c2; border-color: #13c2c2; color: #fff; } + .ant-tag-lime { color: #a0d911; background: #fcffe6; border-color: #eaff8f; } + .ant-tag-lime-inverse { background: #a0d911; border-color: #a0d911; color: #fff; } + .ant-tag-green { color: #52c41a; background: #f6ffed; border-color: #b7eb8f; } + .ant-tag-green-inverse { background: #52c41a; border-color: #52c41a; color: #fff; } + .ant-tag-blue { color: @primary-color; background: color(~`colorPalette("@{primary-color}", 1)`); border-color: color(~`colorPalette("@{primary-color}", 3)`); } + .ant-tag-blue-inverse { background: @primary-color; border-color: @primary-color; color: #fff; } + .ant-tag-geekblue { color: #2f54eb; background: #f0f5ff; border-color: #adc6ff; } + .ant-tag-geekblue-inverse { background: #2f54eb; border-color: #2f54eb; color: #fff; } + .ant-tag-purple { color: #722ed1; background: #f9f0ff; border-color: #d3adf7; } + .ant-tag-purple-inverse { background: #722ed1; border-color: #722ed1; color: #fff; } + .ant-time-picker-panel { color: rgba(0, 0, 0, 0.65); } + .ant-time-picker-panel-inner { background-color: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); background-clip: padding-box; } + .ant-time-picker-panel-input { border: 0; } + .ant-time-picker-panel-input::-moz-placeholder { color: #bfbfbf; } + .ant-time-picker-panel-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-time-picker-panel-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-time-picker-panel-input-wrap { border-bottom: 1px solid #e8e8e8; } + .ant-time-picker-panel-input-invalid { border-color: red; } + .ant-time-picker-panel-clear-btn-icon svg { color: rgba(0, 0, 0, 0.25); } + .ant-time-picker-panel-clear-btn-icon svg:hover { color: rgba(0, 0, 0, 0.45); } + .ant-time-picker-panel-select { border-left: 1px solid #e8e8e8; } + .ant-time-picker-panel-select:first-child { border-left: 0; } + .ant-time-picker-panel-select:last-child { border-right: 0; } + .ant-time-picker-panel-select li:hover { background: color(~`colorPalette("@{primary-color}", 1)`); } + li.ant-time-picker-panel-select-option-selected { background: #f5f5f5; } + li.ant-time-picker-panel-select-option-selected:hover { background: #f5f5f5; } + li.ant-time-picker-panel-select-option-disabled { color: rgba(0, 0, 0, 0.25); } + li.ant-time-picker-panel-select-option-disabled:hover { background: transparent; } + .ant-time-picker-panel-addon { border-top: 1px solid #e8e8e8; } + .ant-time-picker { color: rgba(0, 0, 0, 0.65); } + .ant-time-picker-input { color: rgba(0, 0, 0, 0.65); background-color: #fff; @@ -7142,515 +8374,652 @@ li.ant-time-picker-panel-select-option-disabled:hover { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-time-picker-input::-moz-placeholder { color: #bfbfbf; } + .ant-time-picker-input:-ms-input-placeholder { color: #bfbfbf; } + .ant-time-picker-input::-webkit-input-placeholder { color: #bfbfbf; } + .ant-time-picker-input:hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); border-right-width: 1px !important; } + .ant-time-picker-input:focus { border-color: color(~`colorPalette("@{primary-color}", 5)`); box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); border-right-width: 1px !important; } + .ant-time-picker-input-disabled { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-time-picker-input-disabled:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-time-picker-input[disabled] { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.25); } + .ant-time-picker-input[disabled]:hover { border-color: #e6d8d8; border-right-width: 1px !important; } + .ant-time-picker-icon { color: rgba(0, 0, 0, 0.25); } + .ant-time-picker-icon .ant-time-picker-clock-icon { color: rgba(0, 0, 0, 0.25); } + .ant-timeline { color: rgba(0, 0, 0, 0.65); } + .ant-timeline-item-tail { border-left: 2px solid #e8e8e8; } + .ant-timeline-item-head { background-color: #fff; border-radius: 100px; border: 2px solid transparent; } + .ant-timeline-item-head-blue { border-color: @primary-color; color: @primary-color; } + .ant-timeline-item-head-red { border-color: #f5222d; color: #f5222d; } + .ant-timeline-item-head-green { border-color: #52c41a; color: #52c41a; } + .ant-timeline-item-head-custom { border: 0; border-radius: 0; } + .ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail { border-left: 2px dotted #e8e8e8; } + .ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail { border-left: 2px dotted #e8e8e8; } + .ant-tooltip { color: rgba(0, 0, 0, 0.65); } + .ant-tooltip-inner { color: #fff; background-color: rgba(0, 0, 0, 0.75); border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); } + .ant-tooltip-arrow { border-color: transparent; border-style: solid; } + .ant-tooltip-placement-top .ant-tooltip-arrow, .ant-tooltip-placement-topLeft .ant-tooltip-arrow, .ant-tooltip-placement-topRight .ant-tooltip-arrow { border-width: 5px 5px 0; border-top-color: rgba(0, 0, 0, 0.75); } + .ant-tooltip-placement-right .ant-tooltip-arrow, .ant-tooltip-placement-rightTop .ant-tooltip-arrow, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow { border-width: 5px 5px 5px 0; border-right-color: rgba(0, 0, 0, 0.75); } + .ant-tooltip-placement-left .ant-tooltip-arrow, .ant-tooltip-placement-leftTop .ant-tooltip-arrow, .ant-tooltip-placement-leftBottom .ant-tooltip-arrow { border-width: 5px 0 5px 5px; border-left-color: rgba(0, 0, 0, 0.75); } + .ant-tooltip-placement-bottom .ant-tooltip-arrow, .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow, .ant-tooltip-placement-bottomRight .ant-tooltip-arrow { border-width: 0 5px 5px; border-bottom-color: rgba(0, 0, 0, 0.75); } + .ant-transfer { color: rgba(0, 0, 0, 0.65); } + .ant-transfer-disabled .ant-transfer-list { background: #f5f5f5; } + .ant-transfer-list { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-transfer-list-search-action { color: rgba(0, 0, 0, 0.25); } + .ant-transfer-list-search-action .anticon { color: rgba(0, 0, 0, 0.25); } + .ant-transfer-list-search-action .anticon:hover { color: rgba(0, 0, 0, 0.45); } + .ant-transfer-list-header { border-radius: 4px 4px 0 0; background: #fff; color: rgba(0, 0, 0, 0.65); border-bottom: 1px solid #e8e8e8; } + .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-transfer-list-content-item-disabled { color: rgba(0, 0, 0, 0.25); } + .ant-transfer-list-body-not-found { color: rgba(0, 0, 0, 0.25); } + .ant-transfer-list-footer { border-top: 1px solid #e8e8e8; border-radius: 0 0 4px 4px; } + .ant-select-tree-checkbox { color: rgba(0, 0, 0, 0.65); } + .ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner, .ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner, .ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner { border-color: @primary-color; } + .ant-select-tree-checkbox-checked:after { border-radius: 2px; border: 1px solid @primary-color; } + .ant-select-tree-checkbox-inner { border: 1px solid #d9d9d9; border-radius: 2px; background-color: #fff; } + .ant-select-tree-checkbox-inner:after { border: 2px solid #fff; border-top: 0; border-left: 0; } + .ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner:after { border: 0; background-color: @primary-color; } + .ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after { border-color: rgba(0, 0, 0, 0.25); } + .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after { border: 2px solid #fff; border-top: 0; border-left: 0; } + .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner { background-color: @primary-color; border-color: @primary-color; } + .ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after { border-color: rgba(0, 0, 0, 0.25); } + .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner { border-color: #d9d9d9 !important; background-color: #f5f5f5; } + .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after { border-color: #f5f5f5; } + .ant-select-tree-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); } + .ant-select-tree-checkbox-wrapper { color: rgba(0, 0, 0, 0.65); } + .ant-select-tree-checkbox-group { color: rgba(0, 0, 0, 0.65); } + .ant-select-tree { color: rgba(0, 0, 0, 0.65); } + .ant-select-tree li .ant-select-tree-node-content-wrapper { border-radius: 2px; color: rgba(0, 0, 0, 0.65); } + .ant-select-tree li .ant-select-tree-node-content-wrapper:hover { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected { background-color: color(~`colorPalette("@{primary-color}", 2)`); } + .ant-select-tree li span.ant-select-tree-switcher, .ant-select-tree li span.ant-select-tree-iconEle { border: 0 none; } + .ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon { color: @primary-color; } + .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon, .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon { color: @primary-color; } + li.ant-select-tree-treenode-disabled > span:not(.ant-select-tree-switcher), li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper, li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper span { color: rgba(0, 0, 0, 0.25); } + li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper:hover { background: transparent; } + .ant-select-tree-dropdown { color: rgba(0, 0, 0, 0.65); } + .ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field { border: 1px solid #d9d9d9; border-radius: 4px; } + .ant-select-tree-dropdown .ant-select-not-found { color: rgba(0, 0, 0, 0.25); } + .ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper, .ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper { border-radius: 0; } + .ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover, .ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover { background: transparent; } + .ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover:before, .ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover:before { background: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper.ant-tree-node-selected, .ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper.ant-tree-node-selected { color: #fff; background: transparent; } + .ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-switcher, .ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-switcher { color: #fff; } + .ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner, .ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner { border-color: @primary-color; } + .ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked:after, .ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked:after { border-color: #fff; } + .ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner, .ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner { background: #fff; } + .ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after, .ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after { border-color: @primary-color; } + .ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper:before, .ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper:before { background: @primary-color; } + .ant-tree-checkbox { color: rgba(0, 0, 0, 0.65); } + .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner, .ant-tree-checkbox:hover .ant-tree-checkbox-inner, .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner { border-color: @primary-color; } + .ant-tree-checkbox-checked:after { border-radius: 2px; border: 1px solid @primary-color; } + .ant-tree-checkbox-inner { border: 1px solid #d9d9d9; border-radius: 2px; background-color: #fff; } + .ant-tree-checkbox-inner:after { border: 2px solid #fff; border-top: 0; border-left: 0; } + .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner:after { border: 0; background-color: @primary-color; } + .ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after { border-color: rgba(0, 0, 0, 0.25); } + .ant-tree-checkbox-checked .ant-tree-checkbox-inner:after { border: 2px solid #fff; border-top: 0; border-left: 0; } + .ant-tree-checkbox-checked .ant-tree-checkbox-inner { background-color: @primary-color; border-color: @primary-color; } + .ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after { border-color: rgba(0, 0, 0, 0.25); } + .ant-tree-checkbox-disabled .ant-tree-checkbox-inner { border-color: #d9d9d9 !important; background-color: #f5f5f5; } + .ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after { border-color: #f5f5f5; } + .ant-tree-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); } + .ant-tree-checkbox-wrapper { color: rgba(0, 0, 0, 0.65); } + .ant-tree-checkbox-group { color: rgba(0, 0, 0, 0.65); } + .ant-tree { color: rgba(0, 0, 0, 0.65); } + .ant-tree li span[draggable], .ant-tree li span[draggable="true"] { border-top: 2px transparent solid; border-bottom: 2px transparent solid; } + .ant-tree li.drag-over > span[draggable] { background-color: @primary-color; color: white; } + .ant-tree li.drag-over-gap-top > span[draggable] { border-top-color: @primary-color; } + .ant-tree li.drag-over-gap-bottom > span[draggable] { border-bottom-color: @primary-color; } + .ant-tree li.filter-node > span { color: #f5222d !important; } + .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon, .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon { color: @primary-color; } + .ant-tree li .ant-tree-node-content-wrapper { border-radius: 2px; color: rgba(0, 0, 0, 0.65); } + .ant-tree li .ant-tree-node-content-wrapper:hover { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected { background-color: color(~`colorPalette("@{primary-color}", 2)`); } + .ant-tree li span.ant-tree-switcher, .ant-tree li span.ant-tree-iconEle { border: 0 none; } + li.ant-tree-treenode-disabled > span:not(.ant-tree-switcher), li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper, li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper span { color: rgba(0, 0, 0, 0.25); } + li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover { background: transparent; } + .ant-tree.ant-tree-show-line li span.ant-tree-switcher { background: #fff; color: rgba(0, 0, 0, 0.45); } + .ant-tree.ant-tree-show-line li:not(:last-child):before { border-left: 1px solid #d9d9d9; } + .ant-upload { color: rgba(0, 0, 0, 0.65); } + .ant-upload.ant-upload-select-picture-card { border: 1px dashed #d9d9d9; border-radius: 4px; background-color: #fafafa; } + .ant-upload.ant-upload-select-picture-card:hover { border-color: @primary-color; } + .ant-upload.ant-upload-drag { border: 1px dashed #d9d9d9; border-radius: 4px; background: #fafafa; } + .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) { border: 2px dashed color(~`colorPalette("@{primary-color}", 5)`); } + .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover { border-color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon { color: color(~`colorPalette("@{primary-color}", 5)`); } + .ant-upload.ant-upload-drag p.ant-upload-text { color: rgba(0, 0, 0, 0.85); } + .ant-upload.ant-upload-drag p.ant-upload-hint { color: rgba(0, 0, 0, 0.45); } + .ant-upload.ant-upload-drag .anticon-plus { color: rgba(0, 0, 0, 0.25); } + .ant-upload.ant-upload-drag .anticon-plus:hover { color: rgba(0, 0, 0, 0.45); } + .ant-upload.ant-upload-drag:hover .anticon-plus { color: rgba(0, 0, 0, 0.45); } + .ant-upload-list { color: rgba(0, 0, 0, 0.65); } + .ant-upload-list-item-info .anticon-loading, .ant-upload-list-item-info .anticon-paper-clip { color: rgba(0, 0, 0, 0.45); } + .ant-upload-list-item .anticon-close { color: rgba(0, 0, 0, 0.45); } + .ant-upload-list-item .anticon-close:hover { color: rgba(0, 0, 0, 0.65); } + .ant-upload-list-item:hover .ant-upload-list-item-info { background-color: color(~`colorPalette("@{primary-color}", 1)`); } + .ant-upload-list-item-error, .ant-upload-list-item-error .anticon-paper-clip, .ant-upload-list-item-error .ant-upload-list-item-name { color: #f5222d; } + .ant-upload-list-item-error .anticon-close { color: #f5222d !important; } + .ant-upload-list-picture .ant-upload-list-item, .ant-upload-list-picture-card .ant-upload-list-item { border-radius: 4px; border: 1px solid #d9d9d9; } + .ant-upload-list-picture .ant-upload-list-item:hover, .ant-upload-list-picture-card .ant-upload-list-item:hover { background: transparent; } + .ant-upload-list-picture .ant-upload-list-item-error, .ant-upload-list-picture-card .ant-upload-list-item-error { border-color: #f5222d; } + .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info, .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info { background: transparent; } + .ant-upload-list-picture .ant-upload-list-item-uploading, .ant-upload-list-picture-card .ant-upload-list-item-uploading { border-style: dashed; } + .ant-upload-list-picture .ant-upload-list-item-icon, .ant-upload-list-picture-card .ant-upload-list-item-icon { color: rgba(0, 0, 0, 0.25); } + .ant-upload-list-picture .ant-upload-list-item-thumbnail.anticon:before, .ant-upload-list-picture-card .ant-upload-list-item-thumbnail.anticon:before { color: rgba(0, 0, 0, 0.45); } + .ant-upload-list-picture-card .ant-upload-list-item-info:before { background-color: rgba(0, 0, 0, 0.5); } + .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete { color: rgba(255, 255, 255, 0.85); } + .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o:hover, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover { color: #fff; } + .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item { background-color: #fafafa; } + .ant-upload-list-picture-card .ant-upload-list-item-uploading-text { color: rgba(0, 0, 0, 0.45); } + .ant-upload-list .ant-upload-success-icon { color: #52c41a; } @@ -7663,21 +9032,26 @@ li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover { color: #ff4000; border-radius: 4px; } + .ant-list-item-meta .dingding { background-color: #2eabff; color: #fff; border-radius: 4px; } + .ant-list-item-meta .alipay { color: #2eabff; border-radius: 4px; } + font.strong { color: #52c41a; } + font.medium { color: #faad14; } + font.weak { color: #f5222d; } @@ -7707,6 +9081,7 @@ font.weak { .area-select:active { box-shadow: 0 0 0 2px color(~`colorPalette("@{primary-color}", 1)`); } + // end -------- JAreaLinkage 三级联动样式 -------------- // TESTA-521 diff --git a/jero-web/src/App.vue b/jero-web/src/App.vue index d98c88647..09a999237 100644 --- a/jero-web/src/App.vue +++ b/jero-web/src/App.vue @@ -104,7 +104,17 @@ .ant-layout { background: transparent !important; } - .ant-table-tbody > tr.ant-table-row-selected td{ - background:transparent!important; + + .ant-table-tbody > tr.ant-table-row-selected td { + background: transparent !important; } + + .ant-pagination-disabled .anticon-right { + cursor: not-allowed !important; + } + + .ant-pagination-disabled .anticon-left { + cursor: not-allowed !important; + } + \ No newline at end of file From f4b834726dda1eed64ff70e925d5556cde55c7e7 Mon Sep 17 00:00:00 2001 From: xiejunyu Date: Wed, 9 Mar 2022 09:55:42 +0800 Subject: [PATCH 05/26] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jero/modules/system/service/ISysDictService.java | 4 ++-- .../modules/system/service/impl/SysDictServiceImpl.java | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/ISysDictService.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/ISysDictService.java index f39bf94b2..305990b6a 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/ISysDictService.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/ISysDictService.java @@ -1,8 +1,6 @@ package com.jero.modules.system.service; -import com.baomidou.mybatisplus.core.conditions.Wrapper; import com.baomidou.mybatisplus.core.metadata.IPage; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; import com.jero.common.system.vo.DictModel; import com.jero.common.system.vo.DictQuery; @@ -164,5 +162,7 @@ public interface ISysDictService extends IService { //List> selectPageInfo(Page page, Wrapper queryWrapper); + Integer queryExitDictName(SysDict sysDict); + IPage queryPageList(Map params); } diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/SysDictServiceImpl.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/SysDictServiceImpl.java index 35ac2e7eb..81b7156b7 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/SysDictServiceImpl.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/SysDictServiceImpl.java @@ -382,6 +382,15 @@ public class SysDictServiceImpl extends ServiceImpl impl Integer count = sysDictMapper.selectCount(queryWrapper); return count; } + @Override + public Integer queryExitDictName(SysDict sysDict) { + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + if (StringUtils.isNotBlank(sysDict.getDictName())) { + queryWrapper.eq(SysDict::getDictName, sysDict.getDictName()); + } + Integer count = sysDictMapper.selectCount(queryWrapper); + return count; + } /*@Override public List> selectPageInfo(Page page, Wrapper queryWrapper) { From 100a7f496202ee25afd6135abfdf40ab0e524004 Mon Sep 17 00:00:00 2001 From: caoyang Date: Wed, 9 Mar 2022 10:26:48 +0800 Subject: [PATCH 06/26] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/common/lang/en-us.js | 3 +- jero-web/src/common/lang/zh-cn.js | 2 + jero-web/src/components/ocrAddForm/index.vue | 10 +++++ .../src/views/documentManage/ocr/index.vue | 39 +++++++++++++------ .../documentManage/ocr/modules/docTable.vue | 2 +- .../documentManage/tags/tabs/tagContent.vue | 20 +++++----- 6 files changed, 54 insertions(+), 22 deletions(-) diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index 596e3765d..27ee81e7f 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -503,7 +503,8 @@ module.exports = { CannotExceed100characters:'cannot exceed 100 characters', cantExeed:'cannot exceed ', characters:' characters', - Processing:'Processing', See:'See', + labelNameCannotDuplicate:'Label name cannot be duplicate', + } \ No newline at end of file diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index 30ab98321..71cf86c35 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -509,4 +509,6 @@ module.exports = { characters:'字符', Processing:'办理', See:'查看', + labelNameCannotDuplicate:'标签名称不能重复', + } \ No newline at end of file diff --git a/jero-web/src/components/ocrAddForm/index.vue b/jero-web/src/components/ocrAddForm/index.vue index 794bdc370..3f93567a8 100644 --- a/jero-web/src/components/ocrAddForm/index.vue +++ b/jero-web/src/components/ocrAddForm/index.vue @@ -335,6 +335,16 @@ message: res.db_field_txt + '不能为空', trigger: 'blur' }) + if(res.db_field_name=='standNumber'){ + rule.push( + { min:1, max: 200, message: this.$t('cantExeed')+'200'+this.$t('characters'), trigger: 'blur' }, + ) + }else if(res.db_field_name=='standName'){ + rule.push( + { min:1, max: 200, message: this.$t('cantExeed')+'200'+this.$t('characters'), trigger: 'blur' }, + ) + } + } else if (res.field_show_type === 'CHECKBOX' || res.field_show_type === 'list_multi' || res.field_show_type === 'date' || res.field_show_type === 'file') { rule.push({ diff --git a/jero-web/src/views/documentManage/ocr/index.vue b/jero-web/src/views/documentManage/ocr/index.vue index b620dcd95..98e803f26 100644 --- a/jero-web/src/views/documentManage/ocr/index.vue +++ b/jero-web/src/views/documentManage/ocr/index.vue @@ -176,20 +176,33 @@ // this.loadData() }, created() { - const date = new Date(), - year = date.getFullYear(), - month = date.getMonth()+1, - myDate = date.getDate() - this.today = `${year}/${month < 10 ? '0'+month : month}/${myDate < 10 ? '0'+myDate : myDate}` - if(this.timer){ - clearInterval(this.timer) - }else{ - eventBUs.$emit('searchReset') - this.initSetTimeout(this.today)//调用每隔10秒刷新数据 + this.refresh() + }, + watch:{ + drawVisible(val){ + if(val&&this.timer){ + clearInterval(this.timer) + }else{ + clearInterval(this.timer) + this.initSetTimeout(this.today)//调用每隔10秒刷新数据 + } } }, - methods:{ + // 定时刷新页面 + refresh(){ + const date = new Date(), + year = date.getFullYear(), + month = date.getMonth()+1, + myDate = date.getDate() + this.today = `${year}/${month < 10 ? '0'+month : month}/${myDate < 10 ? '0'+myDate : myDate}` + if(this.timer){ + clearInterval(this.timer) + }else{ + eventBUs.$emit('searchReset') + this.initSetTimeout(this.today)//调用每隔10秒刷新数据 + } + }, //上传 handleUpload(){ // if(this.timer){ @@ -200,6 +213,9 @@ //调取已入库文件 handleFileExport(){ this.drawVisible=true + if(this.timer){ + clearInterval(this.timer) + } }, //批量删除 handleDel(){ @@ -336,6 +352,7 @@ }, docVisible(val){ this.drawVisible=val + }, //文件详情跳转 detailClick(val){ diff --git a/jero-web/src/views/documentManage/ocr/modules/docTable.vue b/jero-web/src/views/documentManage/ocr/modules/docTable.vue index 17f488db6..d05713643 100644 --- a/jero-web/src/views/documentManage/ocr/modules/docTable.vue +++ b/jero-web/src/views/documentManage/ocr/modules/docTable.vue @@ -146,7 +146,7 @@ }) }, afterVisibleChange(val) { - console.log('visible', val); + // console.log('visible', val); }, onClose() { this.visible = false; diff --git a/jero-web/src/views/documentManage/tags/tabs/tagContent.vue b/jero-web/src/views/documentManage/tags/tabs/tagContent.vue index 01a70ac37..3e8009a2a 100644 --- a/jero-web/src/views/documentManage/tags/tabs/tagContent.vue +++ b/jero-web/src/views/documentManage/tags/tabs/tagContent.vue @@ -136,8 +136,8 @@ width: 170 } ], - labelCol: { span:4 }, - wrapperCol: { span: 18 }, + labelCol: { span:6 }, + wrapperCol: { span: 16 }, form:{}, rules:{ dictName:[{ required: true, message: this.$t('PleaseEnterLabelName'), trigger: 'change' }, @@ -210,7 +210,13 @@ this.contentVisible=false this.form={} }else{ - this.$message.warning(this.$t('operationFailed')) + if(res.message='标签名称不能重复'){ + this.$message.warning(this.$t('labelNameCannotDuplicate')) + + }else{ + this.$message.warning(this.$t('operationFailed')) + + } } }) @@ -226,14 +232,10 @@ this.form={} }else{ this.$message.warning(this.$t('operationFailed')) - } }) } - - } - }) }, @@ -356,8 +358,8 @@ } .tag-content{ .tag-item{ - .ant-col-4{ - min-width: 100px; + .ant-col-6{ + min-width: 130px; } } } From 36547c3c49890d91e359dc6b0e7997f38029bf7a Mon Sep 17 00:00:00 2001 From: xiejunyu Date: Wed, 9 Mar 2022 10:48:00 +0800 Subject: [PATCH 07/26] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java index 071babbb7..cc06a6e54 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java @@ -80,6 +80,8 @@ public class OnlCgformTagServiceImpl extends ServiceImpl Date: Wed, 9 Mar 2022 11:53:13 +0800 Subject: [PATCH 08/26] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=BA=93--=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=BA=93=E6=B7=BB=E5=8A=A0=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BussDocumentLibraryEOController.java | 69 +++++++------------ 1 file changed, 25 insertions(+), 44 deletions(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java index e8f88c00d..84237fe61 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java @@ -13,6 +13,7 @@ import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; import net.sf.json.JSONObject; +import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; @@ -47,27 +48,6 @@ public class BussDocumentLibraryEOController extends JeroController queryPageList(BussDocumentLibraryEO bussDocumentLibraryEO, - @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, - @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, - HttpServletRequest req) { - QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(bussDocumentLibraryEO, req.getParameterMap()); - Page page = new Page(pageNo, pageSize); - IPage pageList = bussDocumentLibraryEOService.page(page, queryWrapper); - return Result.OK(pageList); - } /** * 分页列表查询 @@ -78,6 +58,7 @@ public class BussDocumentLibraryEOController extends JeroController parameter) { IPage infoPage = bussDocumentLibraryEOService.getInfoPage(parameter); Result ok = Result.OK(infoPage); @@ -94,6 +75,7 @@ public class BussDocumentLibraryEOController extends JeroController replacePageInfo(@RequestBody Map parameter) { IPage infoPage = bussDocumentLibraryEOService.replacePageInfo(parameter); // Result ok = Result.OK(infoPage); @@ -110,6 +92,7 @@ public class BussDocumentLibraryEOController extends JeroController ocrPageInfo(@RequestBody Map parameter) { IPage infoPage = bussDocumentLibraryEOService.ocrPageInfo(parameter); return Result.OK(infoPage); @@ -138,6 +121,7 @@ public class BussDocumentLibraryEOController extends JeroController delete(@RequestParam(name="id",required=true) String id) { bussDocumentLibraryEOService.deleteById(id); return Result.OK("删除成功!"); @@ -152,6 +136,7 @@ public class BussDocumentLibraryEOController extends JeroController deleteBatch(@RequestParam(name="ids",required=true) String ids) { this.bussDocumentLibraryEOService.deleteByIds(Arrays.asList(ids.split(","))); return Result.OK("批量删除成功!"); @@ -166,6 +151,7 @@ public class BussDocumentLibraryEOController extends JeroController queryById(@RequestParam(name="id",required=true) String id) { BussDocumentLibraryEO bussDocumentLibraryEO = bussDocumentLibraryEOService.queryById(id); if(bussDocumentLibraryEO==null) { @@ -174,28 +160,6 @@ public class BussDocumentLibraryEOController extends JeroController importExcel(HttpServletRequest request, HttpServletResponse response) { - return super.importExcel(request, response, BussDocumentLibraryEO.class); - } /** @@ -206,6 +170,7 @@ public class BussDocumentLibraryEOController extends JeroController>> queryCondition(@RequestParam(name="flag",required=true) String flag, @RequestParam(name="cut",required=true) String cut) { List> list = bussDocumentLibraryEOService.queryCondition(flag,cut); @@ -220,6 +185,7 @@ public class BussDocumentLibraryEOController extends JeroController>> getHeader(@RequestParam(name="flag",required=true) String flag, @RequestParam(name="cut",required=true) String cut) { List> list = bussDocumentLibraryEOService.getHeader(flag,cut); @@ -234,6 +200,7 @@ public class BussDocumentLibraryEOController extends JeroController>> getAddForm(@RequestParam(name="flag",required=true) String flag, @RequestParam(name="cut",required=true) String cut, @RequestParam(name="type",required=true) String type) { @@ -249,6 +216,7 @@ public class BussDocumentLibraryEOController extends JeroController>> getHeaderOrConditionForOcr(@RequestParam(name="flag",required=true) String flag, @RequestParam(name="cut",required=true) String cut) { List> list = bussDocumentLibraryEOService.getHeaderOrConditionForOcr(flag,cut); @@ -263,6 +231,7 @@ public class BussDocumentLibraryEOController extends JeroController>> getDocumentInfoById(@RequestParam(name="id",required=true) String id, @RequestParam(name="cut",required=true) String cut) { List> list = bussDocumentLibraryEOService.getDocumentInfoById(id,cut); @@ -276,6 +245,7 @@ public class BussDocumentLibraryEOController extends JeroController>> getInfoById(@RequestParam(name="id",required=true) String id, @RequestParam(name="cut",required=true) String cut) { List> list = bussDocumentLibraryEOService.getInfoById(id,cut); @@ -290,7 +260,8 @@ public class BussDocumentLibraryEOController extends JeroController addInfo(@RequestBody Map map) { + @RequiresPermissions("document:getInfoById") + public Result getInfoById(@RequestBody Map map) { try { bussDocumentLibraryEOService.addInfo(map); } catch (Exception e) { @@ -307,6 +278,7 @@ public class BussDocumentLibraryEOController extends JeroController updateInfo(@RequestBody Map map) { try { bussDocumentLibraryEOService.updateInfo(map); @@ -325,6 +297,7 @@ public class BussDocumentLibraryEOController extends JeroController addCollect(String id) { try { bussDocumentLibraryEOService.addCollect(id); @@ -342,6 +315,7 @@ public class BussDocumentLibraryEOController extends JeroController cancelCollect(String id) { try { bussDocumentLibraryEOService.cancelCollect(id); @@ -359,6 +333,7 @@ public class BussDocumentLibraryEOController extends JeroController addSubscribe(String id) { try { bussDocumentLibraryEOService.addSubscribe(id); @@ -376,6 +351,7 @@ public class BussDocumentLibraryEOController extends JeroController cancelSubscribe(String id) { try { bussDocumentLibraryEOService.cancelSubscribe(id); @@ -388,6 +364,7 @@ public class BussDocumentLibraryEOController extends JeroController map, HttpServletResponse response, HttpServletRequest request){ @@ -396,6 +373,7 @@ public class BussDocumentLibraryEOController extends JeroController map, HttpServletResponse response, HttpServletRequest request) throws Exception { @@ -405,6 +383,7 @@ public class BussDocumentLibraryEOController extends JeroController map, HttpServletResponse response, HttpServletRequest request) throws Exception { bussDocumentLibraryEOService.exportTemplate(map,response,request); } @@ -412,6 +391,7 @@ public class BussDocumentLibraryEOController extends JeroController importZip(@RequestParam(value = "file", required = false) MultipartFile file) throws Exception { String result = bussDocumentLibraryEOService.importZip(file); return Result.OK(result); @@ -419,6 +399,7 @@ public class BussDocumentLibraryEOController extends JeroController pullMessage(String departIds,String userIds,String documentIds) { bussDocumentLibraryEOService.pullMessage(departIds,userIds,documentIds); From 859f7f5c0e9b92d4758ed8b3e65c11741ed0eca5 Mon Sep 17 00:00:00 2001 From: xiejunyu Date: Wed, 9 Mar 2022 13:47:14 +0800 Subject: [PATCH 09/26] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java index cc06a6e54..eceaf9aad 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/tag/service/impl/OnlCgformTagServiceImpl.java @@ -6,12 +6,14 @@ import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.jero.common.constant.CommonConstant; import com.jero.common.constant.enums.CutEnum; import com.jero.generater.modules.online.cgform.service.impl.OnlCgformFieldServiceImpl; import com.jero.modules.tag.entity.OnlCgformArea; import com.jero.modules.tag.entity.OnlCgformTag; import com.jero.modules.tag.mapper.OnlCgformTagMapper; import com.jero.modules.tag.service.IOnlCgformTagService; +import com.jero.modules.utils.HanYuPinYinUtil; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -67,7 +69,6 @@ public class OnlCgformTagServiceImpl extends ServiceImpl Date: Wed, 9 Mar 2022 13:58:48 +0800 Subject: [PATCH 10/26] =?UTF-8?q?ocr=E8=AF=86=E5=88=AB-=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jero/modules/ocr/controller/OcrRecordEOController.java | 4 ++++ .../com/jero/modules/ocr/controller/OcrRestfulController.java | 3 +++ .../jero/modules/ocr/service/impl/OcrRestfulServiceImpl.java | 2 ++ 3 files changed, 9 insertions(+) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRecordEOController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRecordEOController.java index 686997b33..e11a3f4fb 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRecordEOController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRecordEOController.java @@ -19,6 +19,7 @@ import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; +import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.validation.annotation.Validated; @@ -91,6 +92,7 @@ public class OcrRecordEOController extends JeroController syncToDocument(@RequestBody OcrRecordEO ocrRecordEO) { if(StringUtils.isBlank(ocrRecordEO.getConnectId())){ return Result.error("同步失败"); @@ -209,6 +211,7 @@ public class OcrRecordEOController extends JeroController delete(@RequestParam(name="id",required=true) String id) { if (StringUtils.isBlank(id)) { return Result.error("删除数据不能为空"); @@ -226,6 +229,7 @@ public class OcrRecordEOController extends JeroController deleteBatch(@RequestParam(name="ids",required=true) String ids) { if (StringUtils.isBlank(ids)) { return Result.error("删除数据不能为空"); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRestfulController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRestfulController.java index dec4efd75..8379a8849 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRestfulController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/controller/OcrRestfulController.java @@ -16,6 +16,7 @@ import lombok.extern.slf4j.Slf4j; import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringUtils; import org.apache.http.entity.ContentType; +import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.mock.web.MockMultipartFile; @@ -64,6 +65,7 @@ public class OcrRestfulController{ @ApiOperation(value = "下载word文件") @GetMapping("/downFile") + @RequiresPermissions("ocr:ocrRestful:downFile") public void downFile(String fileName, HttpServletResponse response, HttpServletRequest request) throws Exception { InputStream is = null; OutputStream os = null; @@ -151,6 +153,7 @@ public class OcrRestfulController{ */ @ApiOperation(value = "新增OCR内容") @PostMapping("/addOcrRecord") + @RequiresPermissions("ocr:ocrRestful:addOcrRecord") public Result addOcrRecord(@RequestBody OcrRecordEO ocrRecordEO) throws Exception { SimpleDateFormat sdf=new SimpleDateFormat("yyy-MM-dd HH:mm:ss"); log.info("收到文件上传请求,开始处理文件:【"+sdf.format(new Date())+"】"); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/service/impl/OcrRestfulServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/service/impl/OcrRestfulServiceImpl.java index 24388ccae..67f0876e3 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/service/impl/OcrRestfulServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ocr/service/impl/OcrRestfulServiceImpl.java @@ -152,6 +152,7 @@ public class OcrRestfulServiceImpl implements IOcrRestfulService { ocrRecordEO.setStandName(getOcrEO.getStandName()); ocrRecordEO.setFileType(getOcrEO.getFileType()); ocrRecordEO.setConnectId(getOcrEO.getConnectId()); + ocrRecordEO.setAttId(getOcrEO.getAttId()); // LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); // ocrRecordEO.setCreateBy(sysUser.getId()); // ocrRecordEO.setCreateTime(new Date()); @@ -168,6 +169,7 @@ public class OcrRestfulServiceImpl implements IOcrRestfulService { ocrRecordEO.setFileType(getOcrEO.getFileType()); ocrRecordEO.setCreateTime(new Date()); ocrRecordEO.setConnectId(getOcrEO.getConnectId()); + ocrRecordEO.setAttId(getOcrEO.getAttId()); ocrRecordEOService.editById(ocrRecordEO); //TODO ?? return Result.OK( "加入转换成功", taskId); } From 0382f40fe8922fac117da1f28a78085000790526 Mon Sep 17 00:00:00 2001 From: zhn <947514737@qq.com> Date: Wed, 9 Mar 2022 14:02:07 +0800 Subject: [PATCH 11/26] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=BA=93--=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E5=A4=9A=E9=80=89=E6=9F=A5=E8=AF=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../document/controller/BussDocumentLibraryEOController.java | 5 ----- .../service/impl/BussDocumentLibraryEOServiceImpl.java | 4 +++- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java index 84237fe61..0cf6b1327 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/controller/BussDocumentLibraryEOController.java @@ -1,12 +1,9 @@ package com.jero.modules.document.controller; -import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.jero.common.api.vo.Result; import com.jero.common.aspect.annotation.AutoLog; import com.jero.common.system.base.controller.JeroController; -import com.jero.common.system.query.QueryGenerator; import com.jero.modules.document.entity.BussDocumentLibraryEO; import com.jero.modules.document.service.IBussDocumentLibraryEOService; import io.swagger.annotations.Api; @@ -20,12 +17,10 @@ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; -import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java index 1559b4c6a..17646af16 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java @@ -1390,12 +1390,14 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl Date: Wed, 9 Mar 2022 14:11:33 +0800 Subject: [PATCH 12/26] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=BA=93--=E6=8A=80?= =?UTF-8?q?=E6=9C=AF=E9=A2=86=E5=9F=9F=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/BussDocumentLibraryEOServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java index 17646af16..e080cc190 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java @@ -1388,7 +1388,8 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl Date: Wed, 9 Mar 2022 14:16:16 +0800 Subject: [PATCH 13/26] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=E7=BB=86=E8=8A=82=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/App.vue | 8 +- jero-web/src/common/lang/en-us.js | 3 +- jero-web/src/common/lang/zh-cn.js | 2 + .../components/DocumentLibrary.vue | 501 ++++++++++++++ .../searchCenter/components/whole.vue | 181 +++++ .../documentTools/searchCenter/index.vue | 643 ++---------------- 6 files changed, 742 insertions(+), 596 deletions(-) create mode 100644 jero-web/src/views/documentTools/searchCenter/components/DocumentLibrary.vue create mode 100644 jero-web/src/views/documentTools/searchCenter/components/whole.vue diff --git a/jero-web/src/App.vue b/jero-web/src/App.vue index 09a999237..7beca0673 100644 --- a/jero-web/src/App.vue +++ b/jero-web/src/App.vue @@ -11,6 +11,8 @@ import enquireScreen from '@/utils/device' import moment from 'moment' import 'moment/locale/zh-cn' + import Vue from 'vue' + import { mapGetters } from 'vuex' moment.locale('zh-cn') @@ -79,13 +81,15 @@ watch: { $route: function(val) { this.$nextTick(() => { - this.$watermark.set('fanqiangqiang 范强强') + this.$watermark.set(this.userInfo().updateBy + ' ' + this.userInfo().username) }) } }, computed: {}, - methods: {} + methods: { + ...mapGetters(['userInfo']) + } } + \ No newline at end of file diff --git a/jero-web/src/views/documentTools/searchCenter/components/whole.vue b/jero-web/src/views/documentTools/searchCenter/components/whole.vue new file mode 100644 index 000000000..5377d723a --- /dev/null +++ b/jero-web/src/views/documentTools/searchCenter/components/whole.vue @@ -0,0 +1,181 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/documentTools/searchCenter/index.vue b/jero-web/src/views/documentTools/searchCenter/index.vue index 34a0e998f..0e0043cbf 100644 --- a/jero-web/src/views/documentTools/searchCenter/index.vue +++ b/jero-web/src/views/documentTools/searchCenter/index.vue @@ -4,12 +4,7 @@
- - - - - - + 标题 @@ -26,107 +21,29 @@ > - -
- + - - - + + +
-
-
-
-
-
- {{item.value}} - - - {{opt.value}} - - -
-
- 发布日期 - -
-
- 标准实施日期 - -
-
-
-
-
- 检索范围: - 纯电动 -
- - -
-
-
- - - - - - - -
    - -
  • -
    - -
    -
    - {{item.type}} - {{item.number}} - {{item.title}} -
    -
    - {{item.content}} -
    -
    -
    -
  • -
    -
- -
-
-
-
+ +
@@ -134,307 +51,28 @@ diff --git a/jero-web/src/views/documentManage/ocr/index.vue b/jero-web/src/views/documentManage/ocr/index.vue index 98e803f26..c5e2a2b26 100644 --- a/jero-web/src/views/documentManage/ocr/index.vue +++ b/jero-web/src/views/documentManage/ocr/index.vue @@ -133,20 +133,7 @@ checkVisible:false, //校核弹框 file:'', form:{}, //表单数据 - rules:{ - attId:[ - { required: true, message: '请选择文件', trigger: 'change' }, - ], - standNumber:[ - { required: true, message: '请输入编号', trigger: 'blur' }, - ], - standName:[ - { required: true, message: '请输入名称', trigger: 'blur' }, - ], - fileType:[ - { required: true, message: '请选择文本状态', trigger: 'blur' }, - ] - }, + rules:{}, url: { tableHeader: 'ocr/ocrRecord/getHeader', //表格头部字段 seachList: 'ocr/ocrRecord/queryCondition', //搜索字段 @@ -356,7 +343,7 @@ }, //文件详情跳转 detailClick(val){ - window.open('/pdf/web/viewer.html?file=' + encodeURIComponent('/jero-boot/sys/common/pdf/viewFile?id=' + val.id)) + window.open('/pdf/web/viewer.html?file=' + encodeURIComponent('/jero-boot/sys/common/pdf/viewFile?id=' + val.attId)) }, exportVisible(val){ // this.fileVisible=val diff --git a/jero-web/src/views/documentManage/subscribtion/index.vue b/jero-web/src/views/documentManage/subscribtion/index.vue index 37ecdc82c..0ffa0967d 100644 --- a/jero-web/src/views/documentManage/subscribtion/index.vue +++ b/jero-web/src/views/documentManage/subscribtion/index.vue @@ -4,37 +4,6 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -56,26 +25,8 @@ @titleClick="titleClick" @onCancel="onCancel" @onSelectChange="onSelectChange" + @detailClick="detailClick" > - - - - - - - - - - - - - - - - - - -
@@ -272,6 +223,13 @@ }, areaVisible(val){ this.visible=val + }, + detailClick(item) { + let newUrl = this.$router.resolve({ + path: '/docManage/library/detail', + query: item + }) + window.open(newUrl.href, '_blank') } } } diff --git a/jero-web/src/views/documentManage/subscribtion/module/subArea.vue b/jero-web/src/views/documentManage/subscribtion/module/subArea.vue index dfd5e5859..9bac951bd 100644 --- a/jero-web/src/views/documentManage/subscribtion/module/subArea.vue +++ b/jero-web/src/views/documentManage/subscribtion/module/subArea.vue @@ -9,7 +9,7 @@ @ok="handleOk" @cancel="handleCancel" > - + { if(res.success){ - let data=res.result - this.treeData=this.addAttr(data) + this.data=[...res.result] + this.treeData=this.addAttr(this.data) // console.log('treeData',this.treeData) } }) }, + onSearch(){ + this.loadData() + }, //获取用户的订阅 getSubscribtion(){ postAction(`domain/domainUserRel/queryList`,{}).then(res=> { @@ -96,6 +103,9 @@ if((Array.isArray(dataI)) && dataI.length>0){ dataI.forEach((item,index)=>{ this.$set(item,'key',item.id) + // if(item.title.indexOf(this.searchValue)!==-1){ + // console.log('item.title',item.title) + // } let arr = []; this.addAttr(item.children,arr); }); @@ -155,15 +165,17 @@ this.autoExpandParent = false; }, onChange(e) { + // this.loadData() const value = e.target.value; const expandedKeys = this.dataList .map(item => { if (item.title.indexOf(value) > -1) { - return this.getParentKey(item.key, this.gData); + return this.getParentKey(item.key, this.treeData); } return null; }) .filter((item, i, self) => item && self.indexOf(item) === i); + console.log('item',item) Object.assign(this, { expandedKeys, searchValue: value, @@ -171,11 +183,11 @@ }) }, onCheck(checkedKeys) { - console.log('onCheck', checkedKeys); + // console.log('onCheck', checkedKeys); this.checkedKeys = checkedKeys; }, onSelect(selectedKeys, info) { - console.log('onSelect', info); + // console.log('onSelect', info); this.selectedKeys = selectedKeys; }, From 0635bee38e19c94c1a4843c8e4944bbef339e320 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Wed, 9 Mar 2022 16:00:01 +0800 Subject: [PATCH 20/26] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E7=A6=81=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/libraryAddForm/index.vue | 18 +++++++++++------- jero-web/src/components/uploadFile/file.vue | 10 +++++++++- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/jero-web/src/components/libraryAddForm/index.vue b/jero-web/src/components/libraryAddForm/index.vue index 12db366eb..6c54e23c0 100644 --- a/jero-web/src/components/libraryAddForm/index.vue +++ b/jero-web/src/components/libraryAddForm/index.vue @@ -80,6 +80,7 @@ - - - + + +
@@ -292,6 +293,9 @@ }, methods: { + disabledDate(current) { + return current && current < moment().subtract(1,"day"); + }, sumber() { this.$refs.ruleForm.validate(valid => { if (valid) { @@ -327,7 +331,7 @@ onChange(item) { let dateOne = moment(this.formInline[item][0]).format('YYYY-MM-DD') let dateTwo = moment(this.formInline[item][1]).format('YYYY-MM-DD') - this.formInline[item] =dateOne ? [dateOne, dateTwo] : [] + this.formInline[item] = dateOne ? [dateOne, dateTwo] : [] }, clickButtonToUpload(current) { @@ -402,10 +406,10 @@ } if (res.field_show_type === '1' || res.field_show_type === '2' || res.field_show_type === '8' || res.field_show_type === '9' || res.field_show_type === '10' - || res.field_show_type === '11'){ + || res.field_show_type === '11') { rule.push({ max: res.db_length, - message: res.db_field_txt+'不能超出'+res.db_length+'个字符', + message: res.db_field_txt + '不能超出' + res.db_length + '个字符', trigger: 'blur' }) } @@ -458,7 +462,7 @@ }, StandardselectionChange(value, id) { this.formInline[value + '_id'] = id - this.formInline = {...this.formInline} + this.formInline = { ...this.formInline } } } } diff --git a/jero-web/src/components/uploadFile/file.vue b/jero-web/src/components/uploadFile/file.vue index aae9857dd..57f86bb91 100644 --- a/jero-web/src/components/uploadFile/file.vue +++ b/jero-web/src/components/uploadFile/file.vue @@ -10,6 +10,7 @@ :multiple="true" :action='uploadAction' :headers="headers" + @preview="preview" :before-upload="beforeUpload" :remove='remove' @change="handleChange"> @@ -25,6 +26,7 @@