some modify
This commit is contained in:
parent
dfce31ef65
commit
85e3dddf2e
|
@ -1,2 +1,29 @@
|
||||||
// html color
|
// html color
|
||||||
@HC: #fff;
|
@HC: #fff;
|
||||||
|
|
||||||
|
// border box 4 stroke color one
|
||||||
|
@BB4SCOC: red;
|
||||||
|
|
||||||
|
// border box 4 stroke color two
|
||||||
|
@BB4SCTC: fade(blue, 80);
|
||||||
|
|
||||||
|
// capsule chart capsule item box shadow
|
||||||
|
@CCCIBSC: #999;
|
||||||
|
|
||||||
|
// decoration 2 line color
|
||||||
|
@D2LC: #3faacb;
|
||||||
|
|
||||||
|
// decoration 2 tail color
|
||||||
|
@D2TC: #fff;
|
||||||
|
|
||||||
|
// number show item background color
|
||||||
|
@NSIBC: rgba(4, 49, 128, 0.6);
|
||||||
|
|
||||||
|
// number show item number color
|
||||||
|
@NSINC: rgb(8, 229, 255);
|
||||||
|
|
||||||
|
// ring chart label line color
|
||||||
|
@RCLLC: rgba(255, 255, 255, 0.6);
|
||||||
|
|
||||||
|
// border box 5 stroke color
|
||||||
|
@BB5SC: #fff;
|
|
@ -0,0 +1,20 @@
|
||||||
|
// capsule chart label column
|
||||||
|
@CCLCFS: 12px;
|
||||||
|
|
||||||
|
// capsule chart unit label
|
||||||
|
@CCULFS: 12px;
|
||||||
|
|
||||||
|
// number show item
|
||||||
|
@NSIFS: 45px;
|
||||||
|
|
||||||
|
// ring chart percent show number
|
||||||
|
@RCPSNFS: 28px;
|
||||||
|
|
||||||
|
// ring chart percent show after
|
||||||
|
@RCPSAFS: 15px;
|
||||||
|
|
||||||
|
// ring chart current label
|
||||||
|
@RCCLFS: 16px;
|
||||||
|
|
||||||
|
// ring chart lable line
|
||||||
|
@RCLLFS: 12px;
|
|
@ -1,8 +1,6 @@
|
||||||
@import url('./color.less');
|
@import url('./color.less');
|
||||||
@import url('./fontSize.less');
|
@import url('./fontSize.less');
|
||||||
|
|
||||||
@import url('./electroniceFile.less');
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
// header left title
|
||||||
|
@MDHLTC: rgba(1, 134, 187, 0.91);
|
||||||
|
|
||||||
|
// header left
|
||||||
|
@MDHLFS: 20px;
|
||||||
|
|
||||||
|
// header middle
|
||||||
|
@MDHMFS: 33px;
|
||||||
|
|
||||||
|
// header right
|
||||||
|
@MDHRFS: 18px;
|
|
@ -49,6 +49,8 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
@import url('../../assets/style/index.less');
|
||||||
|
|
||||||
.border-box-4 {
|
.border-box-4 {
|
||||||
position: relative;
|
position: relative;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -71,11 +73,11 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.sred {
|
.sred {
|
||||||
stroke: red;
|
stroke: @BB4SCOC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sblue {
|
.sblue {
|
||||||
stroke: fade(blue, 80);
|
stroke: @BB4SCTC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sw1 {
|
.sw1 {
|
||||||
|
|
Loading…
Reference in New Issue