style:1 、按钮及搜索框 border-radius 改为 2px 2、搜索框取消 focus 状态 border

This commit is contained in:
zhangyu
2021-03-02 16:01:10 +08:00
parent 9dd726dc23
commit 52b002cadf
4 changed files with 22 additions and 8 deletions

View File

@@ -158,7 +158,7 @@ li{
min-width: 120px; min-width: 120px;
} }
.nz-btn { .nz-btn {
border-radius: 4px; border-radius: 2px;
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
box-sizing: border-box; box-sizing: border-box;

View File

@@ -67,6 +67,7 @@ const cn = {
exportAll: "总计", exportAll: "总计",
importFile: "请上传文件", importFile: "请上传文件",
importTip: "只允许xlsx/xls格式文件", importTip: "只允许xlsx/xls格式文件",
importTipImg: "只允许jpg/png格式文件",
dragFileTip: "将文件拖到此处", dragFileTip: "将文件拖到此处",
or: "或", or: "或",
clickUpload: "点击上传", clickUpload: "点击上传",
@@ -1071,6 +1072,11 @@ const cn = {
curve:'曲线', curve:'曲线',
polyline:'折线', polyline:'折线',
line:'直线', line:'直线',
placeholderImg:'请输入名称',
unitError:'请选择对应的目录',
imgError:'请上传图片',
folder:'目录',
selMod:'请个所有节点绑定module',
}, },
}, },
date:{ date:{

View File

@@ -70,6 +70,7 @@ const en = {
exportAll:'All', exportAll:'All',
importFile:'Please upload file', importFile:'Please upload file',
importTip:'Only allowed xlsx/xls file', importTip:'Only allowed xlsx/xls file',
importTipImg: "Only allowed jpg/png file",
dragFileTip:'Drag file here', dragFileTip:'Drag file here',
or:'or', or:'or',
clickUpload:'Click to upload', clickUpload:'Click to upload',
@@ -989,10 +990,10 @@ const en = {
module:'Module element', module:'Module element',
add:'Add', add:'Add',
selTwoNode:'Please select two module', selTwoNode:'Please select two module',
save:'save', save:'Save',
cancel:'cancel', cancel:'Cancel',
exit:'exit', exit:'Exit',
preview:'preview', preview:'Preview',
addLine:'Add line', addLine:'Add line',
editLine:'Edit line', editLine:'Edit line',
lineName:'Line Name', lineName:'Line Name',
@@ -1041,7 +1042,7 @@ const en = {
grids:'Grids', grids:'Grids',
gridSize:'Grid Size', gridSize:'Grid Size',
gridColor:'Grid Color', gridColor:'Grid Color',
rule:"Rule", rule:"Ruler",
ruleColor:"Rule Color", ruleColor:"Rule Color",
defaultStartArrow:'Default start arrow', defaultStartArrow:'Default start arrow',
defaultEndArrow:'Default end arrow', defaultEndArrow:'Default end arrow',
@@ -1076,6 +1077,11 @@ const en = {
curve:'curve', curve:'curve',
polyline:'polyline', polyline:'polyline',
line:'line', line:'line',
placeholderImg:'Please enter name',
unitError:'Please select the folder',
imgError:'Please upload pictures',
folder:'Folder',
selMod:'Please bind module for all nodes',
}, },
}, },
date:{ date:{

View File

@@ -1324,13 +1324,13 @@
display: flex; display: flex;
position: relative; position: relative;
line-height: 25px; line-height: 25px;
border-radius: 4px; border-radius: 2px;
border: 1px solid #D8D8D8; border: 1px solid #D8D8D8;
/*box-shadow: inset 0 0 5px 0 rgba(184,184,184,0.80);*/ /*box-shadow: inset 0 0 5px 0 rgba(184,184,184,0.80);*/
} }
.new-search .nz-btn { .new-search .nz-btn {
box-shadow: 0 0 1px 1px #d8d8d8; box-shadow: 0 0 1px 1px #d8d8d8;
border-radius: 0 4px 4px 0; border-radius: 0 2px 2px 0;
} }
.new-search .search-input-all{ .new-search .search-input-all{
width: 231px !important; width: 231px !important;
@@ -1559,10 +1559,12 @@
float: left; float: left;
padding-left: 5px !important; padding-left: 5px !important;
box-sizing: border-box; box-sizing: border-box;
outline: none;
} }
.select_input input:focus { .select_input input:focus {
border:none; border:none;
box-shadow:none; box-shadow:none;
outline: none;
} }
.select_input .select_info_list{ .select_input .select_info_list{
position: fixed; position: fixed;