Vue 3版本初次提交,继续测试中。

This commit is contained in:
vdpAdmin
2021-12-25 19:36:55 +08:00
commit d3c60c5b8a
294 changed files with 22068 additions and 0 deletions

103
src/styles/global.scss Normal file
View File

@ -0,0 +1,103 @@
/* 全局css变量 */
$--color-primary: #409EFF;
.primary-color {
color: $--color-primary;
}
.background-opacity {
background: rgba(64, 158, 255, 0.6);
}
.form-widget-list {
.ghost{
content: '';
font-size: 0;
height: 3px;
box-sizing: border-box;
background: $--color-primary;
border: 2px solid $--color-primary;
outline-width: 0;
padding: 0;
overflow: hidden;
}
}
.el-form-item--medium {
.el-radio {
line-height: 36px !important;
}
.el-rate{
margin-top: 8px;
}
}
.el-form-item--small {
.el-radio {
line-height: 32px !important;
}
.el-rate{
margin-top: 6px;
}
}
.el-form-item--mini {
.el-radio {
line-height: 28px !important;
}
.el-rate{
margin-top: 4px;
}
}
input[type="password"]::-ms-reveal { /* 隐藏IE/Edge原生的密码查看按钮 */
display: none;
}
/* 滚动条样式 begin */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
width: 8px;
background: rgba(#101F1C, 0.1);
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
::-webkit-scrollbar-thumb {
background-color: rgba(#101F1C, 0.35);
background-clip: padding-box;
min-height: 28px;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(#101F1C, 0.85);
}
* {//Firefox浏览器滚动条样式
scrollbar-color: #e5e5e5 #f7f7f9; //滚动条轨道颜色、滚动条滑块的颜色
scrollbar-width: thin; //thin模式下滚动条两端的三角按钮会消失
}
/*
body {//IE浏览器滚动条样式
scrollbar-shadow-color: #e5e5e5;
scrollbar-face-color: #e5e5e5;
scrollbar-base-color: #ffffff;
scrollbar-arrow-color: #444040;
}
*/
/* 滚动条样式 end */

15
src/styles/index.scss Normal file
View File

@ -0,0 +1,15 @@
html {
height: 100%;
box-sizing: border-box;
}
body {
height: 100%;
margin: 0; /* */
background-color: #ffffff;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}