parent
734b8c0c01
commit
18b86274a6
18 changed files with 15118 additions and 2778 deletions
@ -1,478 +0,0 @@ |
||||
/* |
||||
*这里的值严格按照UI设计图标注值来进行设置 |
||||
*/ |
||||
/* |
||||
*颜色 |
||||
*/ |
||||
/* |
||||
*页面的边距 |
||||
*/ |
||||
/* |
||||
*字体 |
||||
*/ |
||||
/* |
||||
*头像 |
||||
*/ |
||||
/* |
||||
* 按钮 |
||||
*/ |
||||
/* |
||||
*对常见的多行样式进行了方法封装,方便调用,加快开发效率 |
||||
*/ |
||||
html, |
||||
body { |
||||
min-height: 600px; |
||||
min-width: 810px; |
||||
width: 100vw; |
||||
height: 100vh; |
||||
background-color: #eee; |
||||
margin: 0; |
||||
font-weight: initial !important; |
||||
font-size: 14px !important; |
||||
color: #333 !important; |
||||
} |
||||
html *, |
||||
body * { |
||||
text-decoration: none !important; |
||||
font-family: Verdana, Arial, Helvetica, sans-serif; |
||||
box-sizing: border-box; |
||||
} |
||||
.ms-ellipsis { |
||||
overflow: hidden; |
||||
text-overflow: ellipsis; |
||||
white-space: nowrap; |
||||
display: block; |
||||
} |
||||
.ms-align-center { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
input::-webkit-input-placeholder, |
||||
textarea::-webkit-input-placeholder { |
||||
font-weight: initial; |
||||
font-size: 12px; |
||||
color: #999; |
||||
resize: none; |
||||
} |
||||
*::-webkit-scrollbar { |
||||
width: 8px; |
||||
height: 8px; |
||||
} |
||||
/*定义滚动条轨道 内阴影+圆角*/ |
||||
*::-webkit-scrollbar-track { |
||||
border-radius: 10px; |
||||
/*滚动条的背景区域的圆角*/ |
||||
background-color: #eee; |
||||
/*滚动条的背景颜色*/ |
||||
} |
||||
/*定义滑块 内阴影+圆角*/ |
||||
*::-webkit-scrollbar-thumb { |
||||
border-radius: 10px; |
||||
/*滚动条的圆角*/ |
||||
background-color: #e6e6e6; |
||||
/*滚动条的背景颜色*/ |
||||
} |
||||
.ms-container { |
||||
margin: 12px; |
||||
height: calc(100% - 24px); |
||||
padding: 14px; |
||||
background: #fff; |
||||
} |
||||
.ms-header { |
||||
padding: 10px; |
||||
margin: 0; |
||||
border-bottom: 1px solid #ddd; |
||||
background: #fff; |
||||
height: 50px; |
||||
} |
||||
.ms-header button { |
||||
/*height: 30px;*/ |
||||
} |
||||
.ms-pagination { |
||||
padding: 20px 0; |
||||
text-align: right; |
||||
} |
||||
.ms-fr { |
||||
float: right; |
||||
} |
||||
.ms-tr { |
||||
text-align: right; |
||||
} |
||||
.ms-weixin-content { |
||||
width: calc(100% - 140px); |
||||
} |
||||
.ms-weixin-dialog .el-dialog__header { |
||||
height: 55px; |
||||
box-sizing: border-box; |
||||
padding: 10px 10px 25px 10px; |
||||
border-bottom: 1px solid #e6e6e6; |
||||
} |
||||
.ms-weixin-dialog .el-dialog__header .el-dialog__title { |
||||
font-weight: bold; |
||||
font-size: 14px; |
||||
color: #333; |
||||
} |
||||
.ms-weixin-dialog .el-dialog__footer { |
||||
border-top: 1px solid #e6e6e6; |
||||
padding: 15px !important; |
||||
} |
||||
.ms-hover { |
||||
cursor: pointer; |
||||
} |
||||
.ms-hover:hover { |
||||
color: #0099ff; |
||||
background: #fff; |
||||
border-color: #0099ff; |
||||
} |
||||
.ms-header-select { |
||||
font-size: 0; |
||||
} |
||||
.ms-header-select > .el-select:nth-of-type(2) { |
||||
margin: 0 10px; |
||||
} |
||||
.el-card, |
||||
.el-message { |
||||
border-radius: 0 !important; |
||||
} |
||||
.sortable-ghost { |
||||
opacity: .3; |
||||
background: #ccc !important; |
||||
border-color: transparent !important; |
||||
color: transparent !important; |
||||
} |
||||
.sortable-ghost * { |
||||
background: #ccc !important; |
||||
border-color: transparent !important; |
||||
color: transparent !important; |
||||
} |
||||
.index { |
||||
width: 100%; |
||||
display: flex; |
||||
height: 100vh; |
||||
} |
||||
.ms-admin-header { |
||||
display: flex; |
||||
padding: 0; |
||||
background-color: rgba(255,255,255,1); |
||||
height: 50px !important; |
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); |
||||
z-index: 1; |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu { |
||||
border-bottom: none; |
||||
position: relative; |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item > *, |
||||
.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item { |
||||
height: 50px !important; |
||||
line-height: 50px !important; |
||||
border-bottom: none !important; |
||||
font-size: 1em; |
||||
} |
||||
/*.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item > *:hover, |
||||
.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item:hover { |
||||
color: #fff !important; |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item > *.is-active, |
||||
.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item.is-active { |
||||
color: #fff !important; |
||||
}*/ |
||||
.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu { |
||||
padding: 0; |
||||
user-select: none; |
||||
outline: none; |
||||
width: 100%; |
||||
min-width: 500px; |
||||
min-height: 200px; |
||||
background-color: #fff !important; |
||||
height: auto; |
||||
flex-wrap: wrap; |
||||
position: absolute; |
||||
right: 0; |
||||
top: 0; |
||||
z-index: 9; |
||||
background: #ffffff; |
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04); |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu > li { |
||||
margin: 0; |
||||
padding: 0 20px; |
||||
text-align: left; |
||||
display: -webkit-inline-box; |
||||
display: inline-block; |
||||
height: 50px; |
||||
line-height: 50px; |
||||
font-weight: normal; |
||||
font-size: 14px; |
||||
color: #333; |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu > li:hover { |
||||
cursor: pointer; |
||||
color: #0099ff; |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu .ms-admin-shortcut-menu-shrink { |
||||
position: absolute; |
||||
top: 18px; |
||||
right: 19px; |
||||
font-weight: normal; |
||||
font-size: 14px; |
||||
color: #333; |
||||
} |
||||
.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu .ms-admin-shortcut-menu-shrink:hover { |
||||
cursor: pointer; |
||||
} |
||||
.ms-admin-logo { |
||||
display: flex; |
||||
align-items: center; |
||||
overflow: hidden; |
||||
} |
||||
.ms-admin-logo img { |
||||
padding: 14px 0; |
||||
width: 50px; |
||||
} |
||||
.ms-admin-logo > div { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
.ms-admin-logo > div span { |
||||
margin-top: -6px; |
||||
position: absolute; |
||||
margin-left: 10px; |
||||
font-size: 12px; |
||||
|
||||
} |
||||
.ms-admin-logo .iconfont { |
||||
color: #fff; |
||||
margin-left: auto; |
||||
margin-right: 20px; |
||||
cursor: pointer; |
||||
} |
||||
.ms-admin-logo-pack{ |
||||
width: 64px!important; |
||||
} |
||||
.ms-admin-header-right { |
||||
margin-left: auto; |
||||
min-width: 200px; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: flex-end; |
||||
padding: 0; |
||||
line-height: 1; |
||||
} |
||||
.ms-admin-header-right .ms-admin-people-head { |
||||
width: 30px !important; |
||||
height: 30px !important; |
||||
margin-right: 10px; |
||||
border-radius: 50%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
background: #0099ff; |
||||
color: #fff; |
||||
} |
||||
|
||||
.ms-admin-login { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
.ms-admin-login > span { |
||||
width: 130px; |
||||
padding: 0 15px; |
||||
height: 50px; |
||||
display: flex; |
||||
align-items: center; |
||||
cursor: pointer; |
||||
outline: none; |
||||
} |
||||
.ms-admin-login > span img { |
||||
border-radius: 50%; |
||||
width: 20px; |
||||
height: 20px; |
||||
margin-right: 8px; |
||||
} |
||||
.ms-admin-login > span span { |
||||
color: #333333; |
||||
} |
||||
.ms-admin-login .active { |
||||
background: #fff; |
||||
} |
||||
.ms-admin-login .active .ms-admin-people-head { |
||||
background: #0099ff; |
||||
color: #fff; |
||||
} |
||||
.ms-admin-login .active span { |
||||
color: #409EFF; |
||||
} |
||||
.ms-admin-login-down { |
||||
width: 130px; |
||||
padding: 0 15px; |
||||
border: none; |
||||
margin: 0 !important; |
||||
padding: 0 !important; |
||||
border-radius: 0; |
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1); |
||||
} |
||||
.ms-admin-login-down > .popper__arrow { |
||||
display: none; |
||||
} |
||||
.ms-admin-menu-aside { |
||||
width: auto !important; |
||||
height: 100%; |
||||
position: relative; |
||||
overflow: visible; |
||||
} |
||||
.ms-admin-menu-aside .ms-admin-menu { |
||||
width: 200px; |
||||
height: 100%; |
||||
position: relative; |
||||
} |
||||
.ms-admin-menu-aside .ms-admin-menu .el-menu--inline .is-active { |
||||
border-left: 2px solid #0099ff; |
||||
} |
||||
.ms-admin-menu-aside .ms-admin-menu .ms-admin-icon { |
||||
font-weight: initial; |
||||
font-size: 1.5em; |
||||
color: #999; |
||||
} |
||||
.ms-admin-menu-aside .ms-menu-expand { |
||||
transform: rotate(270deg); |
||||
position: absolute; |
||||
right: -34px; |
||||
top: 50%; |
||||
z-index: 999; |
||||
cursor: pointer; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.ms-admin-menu-aside .ms-menu-expand i { |
||||
font-weight: bolder; |
||||
font-size: 14px; |
||||
color: #333; |
||||
position: absolute; |
||||
transform: rotate(90deg); |
||||
right: 40%; |
||||
} |
||||
.ms-admin-menu-aside .ms-menu-expand::before { |
||||
border-color: transparent transparent #eee; |
||||
border-style: none solid solid; |
||||
border-width: 0 30px 22px; |
||||
content: ""; |
||||
display: block; |
||||
height: 0; |
||||
left: -10px; |
||||
width: 30px; |
||||
} |
||||
.ms-admin-menu-aside .ms-menu-expand { |
||||
transition: right .3s; |
||||
} |
||||
.ms-admin-menu-aside .ms-menu-expand-active { |
||||
transform: rotate(90deg); |
||||
right: -56px; |
||||
} |
||||
.ms-admin-menu-aside .ms-admin-menu-active { |
||||
width: 60px; |
||||
height: 100%; |
||||
} |
||||
.ms-admin-menu-aside-active { |
||||
width: 60px !important; |
||||
} |
||||
.ms-admin-container { |
||||
height:auto; |
||||
} |
||||
.ms-admin-container > .ms-admin-main { |
||||
padding: 0; |
||||
background-color: #fff; |
||||
z-index: 0; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs { |
||||
height: calc(100vh - 50px); |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__content { |
||||
height: 100%; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__content .el-tab-pane { |
||||
height: 100%; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__header { |
||||
background: #fafafa; |
||||
margin-bottom: 0; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__header .el-tabs__nav-scroll .el-tabs__nav { |
||||
border-left: none; |
||||
border-radius: 0; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .ms-admin-refresh { |
||||
float: right; |
||||
width: 40px; |
||||
height: 40px; |
||||
text-align: center; |
||||
border-left: 1px solid #e6e6e6; |
||||
cursor: pointer; |
||||
position: relative; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .ms-admin-refresh::before { |
||||
position: absolute; |
||||
left: 34%; |
||||
top: 50%; |
||||
transform: translateY(-50%); |
||||
color: #999; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__nav-next, |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__nav-prev { |
||||
width: 40px; |
||||
height: 40px; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__nav-next { |
||||
border-left: 1px solid #e6e6e6; |
||||
} |
||||
.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__nav-prev { |
||||
border-right: 1px solid #e6e6e6; |
||||
} |
||||
.ms-admin-container > .ms-admin-main iframe { |
||||
width: 100%; |
||||
height: 100%; |
||||
border: none !important; |
||||
} |
||||
@keyframes rubberBand { |
||||
0 { |
||||
-webkit-transform: scale3d(1, 1, 1); |
||||
transform: scale3d(1, 1, 1); |
||||
} |
||||
10% { |
||||
-webkit-transform: scale3d(1.25, 0.75, 1); |
||||
transform: scale3d(1.25, 0.75, 1); |
||||
} |
||||
20% { |
||||
-webkit-transform: scale3d(0.75, 1.25, 1); |
||||
transform: scale3d(0.75, 1.25, 1); |
||||
} |
||||
30% { |
||||
-webkit-transform: scale3d(1.15, 0.85, 1); |
||||
transform: scale3d(1.15, 0.85, 1); |
||||
} |
||||
40% { |
||||
-webkit-transform: scale3d(0.95, 1.05, 1); |
||||
transform: scale3d(0.95, 1.05, 1); |
||||
} |
||||
50% { |
||||
-webkit-transform: scale3d(1.05, 0.95, 1); |
||||
transform: scale3d(1.05, 0.95, 1); |
||||
} |
||||
51% { |
||||
-webkit-transform: scale3d(1, 1, 1); |
||||
transform: scale3d(1, 1, 1); |
||||
} |
||||
} |
||||
|
||||
.el-scrollbar__wrap{overflow-x:hidden;} |
||||
.el-scrollbar { |
||||
position: static; |
||||
} |
||||
[v-cloak] { |
||||
display: none; |
||||
} |
||||
@ -1,211 +0,0 @@ |
||||
/* |
||||
*这里的值严格按照UI设计图标注值来进行设置 |
||||
*/ |
||||
/* |
||||
*颜色 |
||||
*/ |
||||
/* |
||||
*页面的边距 |
||||
*/ |
||||
/* |
||||
*字体 |
||||
*/ |
||||
/* |
||||
*头像 |
||||
*/ |
||||
/* |
||||
* 按钮 |
||||
*/ |
||||
/* |
||||
*对常见的多行样式进行了方法封装,方便调用,加快开发效率 |
||||
*/ |
||||
html, |
||||
body { |
||||
min-height: 100vh; |
||||
width: 100vw; |
||||
background-color: #eee; |
||||
margin: 0; |
||||
display: flex; |
||||
font-weight: initial !important; |
||||
font-size: 14px !important; |
||||
color: #333 !important; |
||||
} |
||||
html *, |
||||
body * { |
||||
text-decoration: none !important; |
||||
font-family: Verdana, Arial, Helvetica, sans-serif; |
||||
box-sizing: border-box; |
||||
} |
||||
.ms-ellipsis { |
||||
overflow: hidden; |
||||
text-overflow: ellipsis; |
||||
white-space: nowrap; |
||||
display: block; |
||||
} |
||||
.ms-align-center { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
input::-webkit-input-placeholder, |
||||
textarea::-webkit-input-placeholder { |
||||
font-weight: initial; |
||||
font-size: 12px; |
||||
color: #aaa; |
||||
resize: none; |
||||
} |
||||
*::-webkit-scrollbar { |
||||
width: 8px; |
||||
height: 8px; |
||||
} |
||||
/*定义滚动条轨道 内阴影+圆角*/ |
||||
*::-webkit-scrollbar-track { |
||||
border-radius: 10px; |
||||
/*滚动条的背景区域的圆角*/ |
||||
background-color: #eee; |
||||
/*滚动条的背景颜色*/ |
||||
} |
||||
/*定义滑块 内阴影+圆角*/ |
||||
*::-webkit-scrollbar-thumb { |
||||
border-radius: 10px; |
||||
/*滚动条的圆角*/ |
||||
background-color: #ddd; |
||||
/*滚动条的背景颜色*/ |
||||
} |
||||
.ms-container { |
||||
margin: 12px; |
||||
height: calc(100% - 24px); |
||||
padding: 14px 14px 0 14px; |
||||
background: #fff; |
||||
} |
||||
.ms-header { |
||||
padding: 10px; |
||||
margin: 0; |
||||
border-bottom: 1px solid #ddd; |
||||
background: #fff; |
||||
height: 50px; |
||||
} |
||||
.ms-pagination { |
||||
padding: 20px 0; |
||||
text-align: right; |
||||
} |
||||
.ms-fr { |
||||
float: right; |
||||
} |
||||
.ms-tr { |
||||
text-align: right; |
||||
} |
||||
.ms-weixin-content { |
||||
width: calc(100% - 140px); |
||||
} |
||||
.ms-weixin-dialog .el-dialog__header { |
||||
height: 55px; |
||||
box-sizing: border-box; |
||||
padding: 10px 10px 25px 10px; |
||||
border-bottom: 1px solid #ddd; |
||||
} |
||||
.ms-weixin-dialog .el-dialog__header .el-dialog__title { |
||||
font-weight: bold; |
||||
font-size: 14px; |
||||
color: #333; |
||||
} |
||||
.ms-weixin-dialog .el-dialog__footer { |
||||
border-top: 1px solid #ddd; |
||||
padding: 15px !important; |
||||
} |
||||
.login { |
||||
width: 100vw; |
||||
height: 100vh; |
||||
} |
||||
.login .ms-admin-login-container { |
||||
height: 100%; |
||||
background: url('../images/login-bg.jpg') center no-repeat; |
||||
background-size: cover; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main { |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp { |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
width: 680px; |
||||
height: 320px; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp > img { |
||||
flex: 1; |
||||
display: inline-block; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form { |
||||
flex: 1; |
||||
height: 320px; |
||||
background: #fff; |
||||
padding: 20px 54px; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form h1 { |
||||
line-height: 1; |
||||
font-weight: initial; |
||||
font-size: 12px; |
||||
color: #999999; |
||||
margin: 0 0 20px 0; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form h1 span { |
||||
font-weight: initial; |
||||
font-size: 16px; |
||||
color: #0099ff; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item { |
||||
margin-bottom: 20px; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item > div { |
||||
margin-left: 0 !important; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item .el-form-item__content, |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item .el-input, |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item input { |
||||
height: 34px !important; |
||||
line-height: 34px !important; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content .el-input__inner, |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content .el-input { |
||||
width: 97px; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content > img { |
||||
width: 66px; |
||||
height: 34px; |
||||
margin: 0 6px; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content p { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
line-height: 17px; |
||||
flex-direction: column; |
||||
margin: 0; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content p span:nth-of-type(1) { |
||||
font-weight: initial; |
||||
font-size: 10px; |
||||
color: #999999; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-code .el-form-item__content p span:nth-of-type(2) { |
||||
font-weight: initial; |
||||
font-size: 10px; |
||||
color: #0099ff; |
||||
cursor: pointer; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-checkout .el-form-item__content, |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-checkout .el-input, |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-form-item-checkout input { |
||||
height: auto !important; |
||||
line-height: 1px !important; |
||||
} |
||||
.login .ms-admin-login-container .ms-admin-login-main .ms-admin-login-warp .ms-admin-login-form .ms-admin-login-btn { |
||||
width: 100%; |
||||
height: 34px; |
||||
line-height: 5px; |
||||
} |
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -0,0 +1,539 @@ |
||||
/* Logo 字体 */ |
||||
@font-face { |
||||
font-family: "iconfont logo"; |
||||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); |
||||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), |
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'), |
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'), |
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg'); |
||||
} |
||||
|
||||
.logo { |
||||
font-family: "iconfont logo"; |
||||
font-size: 160px; |
||||
font-style: normal; |
||||
-webkit-font-smoothing: antialiased; |
||||
-moz-osx-font-smoothing: grayscale; |
||||
} |
||||
|
||||
/* tabs */ |
||||
.nav-tabs { |
||||
position: relative; |
||||
} |
||||
|
||||
.nav-tabs .nav-more { |
||||
position: absolute; |
||||
right: 0; |
||||
bottom: 0; |
||||
height: 42px; |
||||
line-height: 42px; |
||||
color: #666; |
||||
} |
||||
|
||||
#tabs { |
||||
border-bottom: 1px solid #eee; |
||||
} |
||||
|
||||
#tabs li { |
||||
cursor: pointer; |
||||
width: 100px; |
||||
height: 40px; |
||||
line-height: 40px; |
||||
text-align: center; |
||||
font-size: 16px; |
||||
border-bottom: 2px solid transparent; |
||||
position: relative; |
||||
z-index: 1; |
||||
margin-bottom: -1px; |
||||
color: #666; |
||||
} |
||||
|
||||
|
||||
#tabs .active { |
||||
border-bottom-color: #f00; |
||||
color: #222; |
||||
} |
||||
|
||||
.tab-container .content { |
||||
display: none; |
||||
} |
||||
|
||||
/* 页面布局 */ |
||||
.main { |
||||
padding: 30px 100px; |
||||
width: 960px; |
||||
margin: 0 auto; |
||||
} |
||||
|
||||
.main .logo { |
||||
color: #333; |
||||
text-align: left; |
||||
margin-bottom: 30px; |
||||
line-height: 1; |
||||
height: 110px; |
||||
margin-top: -50px; |
||||
overflow: hidden; |
||||
*zoom: 1; |
||||
} |
||||
|
||||
.main .logo a { |
||||
font-size: 160px; |
||||
color: #333; |
||||
} |
||||
|
||||
.helps { |
||||
margin-top: 40px; |
||||
} |
||||
|
||||
.helps pre { |
||||
padding: 20px; |
||||
margin: 10px 0; |
||||
border: solid 1px #e7e1cd; |
||||
background-color: #fffdef; |
||||
overflow: auto; |
||||
} |
||||
|
||||
.icon_lists { |
||||
width: 100% !important; |
||||
overflow: hidden; |
||||
*zoom: 1; |
||||
} |
||||
|
||||
.icon_lists li { |
||||
width: 100px; |
||||
margin-bottom: 10px; |
||||
margin-right: 20px; |
||||
text-align: center; |
||||
list-style: none !important; |
||||
cursor: default; |
||||
} |
||||
|
||||
.icon_lists li .code-name { |
||||
line-height: 1.2; |
||||
} |
||||
|
||||
.icon_lists .icon { |
||||
display: block; |
||||
height: 100px; |
||||
line-height: 100px; |
||||
font-size: 42px; |
||||
margin: 10px auto; |
||||
color: #333; |
||||
-webkit-transition: font-size 0.25s linear, width 0.25s linear; |
||||
-moz-transition: font-size 0.25s linear, width 0.25s linear; |
||||
transition: font-size 0.25s linear, width 0.25s linear; |
||||
} |
||||
|
||||
.icon_lists .icon:hover { |
||||
font-size: 100px; |
||||
} |
||||
|
||||
.icon_lists .svg-icon { |
||||
/* 通过设置 font-size 来改变图标大小 */ |
||||
width: 1em; |
||||
/* 图标和文字相邻时,垂直对齐 */ |
||||
vertical-align: -0.15em; |
||||
/* 通过设置 color 来改变 SVG 的颜色/fill */ |
||||
fill: currentColor; |
||||
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示 |
||||
normalize.css 中也包含这行 */ |
||||
overflow: hidden; |
||||
} |
||||
|
||||
.icon_lists li .name, |
||||
.icon_lists li .code-name { |
||||
color: #666; |
||||
} |
||||
|
||||
/* markdown 样式 */ |
||||
.markdown { |
||||
color: #666; |
||||
font-size: 14px; |
||||
line-height: 1.8; |
||||
} |
||||
|
||||
.highlight { |
||||
line-height: 1.5; |
||||
} |
||||
|
||||
.markdown img { |
||||
vertical-align: middle; |
||||
max-width: 100%; |
||||
} |
||||
|
||||
.markdown h1 { |
||||
color: #404040; |
||||
font-weight: 500; |
||||
line-height: 40px; |
||||
margin-bottom: 24px; |
||||
} |
||||
|
||||
.markdown h2, |
||||
.markdown h3, |
||||
.markdown h4, |
||||
.markdown h5, |
||||
.markdown h6 { |
||||
color: #404040; |
||||
margin: 1.6em 0 0.6em 0; |
||||
font-weight: 500; |
||||
clear: both; |
||||
} |
||||
|
||||
.markdown h1 { |
||||
font-size: 28px; |
||||
} |
||||
|
||||
.markdown h2 { |
||||
font-size: 22px; |
||||
} |
||||
|
||||
.markdown h3 { |
||||
font-size: 16px; |
||||
} |
||||
|
||||
.markdown h4 { |
||||
font-size: 14px; |
||||
} |
||||
|
||||
.markdown h5 { |
||||
font-size: 12px; |
||||
} |
||||
|
||||
.markdown h6 { |
||||
font-size: 12px; |
||||
} |
||||
|
||||
.markdown hr { |
||||
height: 1px; |
||||
border: 0; |
||||
background: #e9e9e9; |
||||
margin: 16px 0; |
||||
clear: both; |
||||
} |
||||
|
||||
.markdown p { |
||||
margin: 1em 0; |
||||
} |
||||
|
||||
.markdown>p, |
||||
.markdown>blockquote, |
||||
.markdown>.highlight, |
||||
.markdown>ol, |
||||
.markdown>ul { |
||||
width: 80%; |
||||
} |
||||
|
||||
.markdown ul>li { |
||||
list-style: circle; |
||||
} |
||||
|
||||
.markdown>ul li, |
||||
.markdown blockquote ul>li { |
||||
margin-left: 20px; |
||||
padding-left: 4px; |
||||
} |
||||
|
||||
.markdown>ul li p, |
||||
.markdown>ol li p { |
||||
margin: 0.6em 0; |
||||
} |
||||
|
||||
.markdown ol>li { |
||||
list-style: decimal; |
||||
} |
||||
|
||||
.markdown>ol li, |
||||
.markdown blockquote ol>li { |
||||
margin-left: 20px; |
||||
padding-left: 4px; |
||||
} |
||||
|
||||
.markdown code { |
||||
margin: 0 3px; |
||||
padding: 0 5px; |
||||
background: #eee; |
||||
border-radius: 3px; |
||||
} |
||||
|
||||
.markdown strong, |
||||
.markdown b { |
||||
font-weight: 600; |
||||
} |
||||
|
||||
.markdown>table { |
||||
border-collapse: collapse; |
||||
border-spacing: 0px; |
||||
empty-cells: show; |
||||
border: 1px solid #e9e9e9; |
||||
width: 95%; |
||||
margin-bottom: 24px; |
||||
} |
||||
|
||||
.markdown>table th { |
||||
white-space: nowrap; |
||||
color: #333; |
||||
font-weight: 600; |
||||
} |
||||
|
||||
.markdown>table th, |
||||
.markdown>table td { |
||||
border: 1px solid #e9e9e9; |
||||
padding: 8px 16px; |
||||
text-align: left; |
||||
} |
||||
|
||||
.markdown>table th { |
||||
background: #F7F7F7; |
||||
} |
||||
|
||||
.markdown blockquote { |
||||
font-size: 90%; |
||||
color: #999; |
||||
border-left: 4px solid #e9e9e9; |
||||
padding-left: 0.8em; |
||||
margin: 1em 0; |
||||
} |
||||
|
||||
.markdown blockquote p { |
||||
margin: 0; |
||||
} |
||||
|
||||
.markdown .anchor { |
||||
opacity: 0; |
||||
transition: opacity 0.3s ease; |
||||
margin-left: 8px; |
||||
} |
||||
|
||||
.markdown .waiting { |
||||
color: #ccc; |
||||
} |
||||
|
||||
.markdown h1:hover .anchor, |
||||
.markdown h2:hover .anchor, |
||||
.markdown h3:hover .anchor, |
||||
.markdown h4:hover .anchor, |
||||
.markdown h5:hover .anchor, |
||||
.markdown h6:hover .anchor { |
||||
opacity: 1; |
||||
display: inline-block; |
||||
} |
||||
|
||||
.markdown>br, |
||||
.markdown>p>br { |
||||
clear: both; |
||||
} |
||||
|
||||
|
||||
.hljs { |
||||
display: block; |
||||
background: white; |
||||
padding: 0.5em; |
||||
color: #333333; |
||||
overflow-x: auto; |
||||
} |
||||
|
||||
.hljs-comment, |
||||
.hljs-meta { |
||||
color: #969896; |
||||
} |
||||
|
||||
.hljs-string, |
||||
.hljs-variable, |
||||
.hljs-template-variable, |
||||
.hljs-strong, |
||||
.hljs-emphasis, |
||||
.hljs-quote { |
||||
color: #df5000; |
||||
} |
||||
|
||||
.hljs-keyword, |
||||
.hljs-selector-tag, |
||||
.hljs-type { |
||||
color: #a71d5d; |
||||
} |
||||
|
||||
.hljs-literal, |
||||
.hljs-symbol, |
||||
.hljs-bullet, |
||||
.hljs-attribute { |
||||
color: #0086b3; |
||||
} |
||||
|
||||
.hljs-section, |
||||
.hljs-name { |
||||
color: #63a35c; |
||||
} |
||||
|
||||
.hljs-tag { |
||||
color: #333333; |
||||
} |
||||
|
||||
.hljs-title, |
||||
.hljs-attr, |
||||
.hljs-selector-id, |
||||
.hljs-selector-class, |
||||
.hljs-selector-attr, |
||||
.hljs-selector-pseudo { |
||||
color: #795da3; |
||||
} |
||||
|
||||
.hljs-addition { |
||||
color: #55a532; |
||||
background-color: #eaffea; |
||||
} |
||||
|
||||
.hljs-deletion { |
||||
color: #bd2c00; |
||||
background-color: #ffecec; |
||||
} |
||||
|
||||
.hljs-link { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
/* 代码高亮 */ |
||||
/* PrismJS 1.15.0 |
||||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */ |
||||
/** |
||||
* prism.js default theme for JavaScript, CSS and HTML |
||||
* Based on dabblet (http://dabblet.com) |
||||
* @author Lea Verou |
||||
*/ |
||||
code[class*="language-"], |
||||
pre[class*="language-"] { |
||||
color: black; |
||||
background: none; |
||||
text-shadow: 0 1px white; |
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; |
||||
text-align: left; |
||||
white-space: pre; |
||||
word-spacing: normal; |
||||
word-break: normal; |
||||
word-wrap: normal; |
||||
line-height: 1.5; |
||||
|
||||
-moz-tab-size: 4; |
||||
-o-tab-size: 4; |
||||
tab-size: 4; |
||||
|
||||
-webkit-hyphens: none; |
||||
-moz-hyphens: none; |
||||
-ms-hyphens: none; |
||||
hyphens: none; |
||||
} |
||||
|
||||
pre[class*="language-"]::-moz-selection, |
||||
pre[class*="language-"] ::-moz-selection, |
||||
code[class*="language-"]::-moz-selection, |
||||
code[class*="language-"] ::-moz-selection { |
||||
text-shadow: none; |
||||
background: #b3d4fc; |
||||
} |
||||
|
||||
pre[class*="language-"]::selection, |
||||
pre[class*="language-"] ::selection, |
||||
code[class*="language-"]::selection, |
||||
code[class*="language-"] ::selection { |
||||
text-shadow: none; |
||||
background: #b3d4fc; |
||||
} |
||||
|
||||
@media print { |
||||
|
||||
code[class*="language-"], |
||||
pre[class*="language-"] { |
||||
text-shadow: none; |
||||
} |
||||
} |
||||
|
||||
/* Code blocks */ |
||||
pre[class*="language-"] { |
||||
padding: 1em; |
||||
margin: .5em 0; |
||||
overflow: auto; |
||||
} |
||||
|
||||
:not(pre)>code[class*="language-"], |
||||
pre[class*="language-"] { |
||||
background: #f5f2f0; |
||||
} |
||||
|
||||
/* Inline code */ |
||||
:not(pre)>code[class*="language-"] { |
||||
padding: .1em; |
||||
border-radius: .3em; |
||||
white-space: normal; |
||||
} |
||||
|
||||
.token.comment, |
||||
.token.prolog, |
||||
.token.doctype, |
||||
.token.cdata { |
||||
color: slategray; |
||||
} |
||||
|
||||
.token.punctuation { |
||||
color: #999; |
||||
} |
||||
|
||||
.namespace { |
||||
opacity: .7; |
||||
} |
||||
|
||||
.token.property, |
||||
.token.tag, |
||||
.token.boolean, |
||||
.token.number, |
||||
.token.constant, |
||||
.token.symbol, |
||||
.token.deleted { |
||||
color: #905; |
||||
} |
||||
|
||||
.token.selector, |
||||
.token.attr-name, |
||||
.token.string, |
||||
.token.char, |
||||
.token.builtin, |
||||
.token.inserted { |
||||
color: #690; |
||||
} |
||||
|
||||
.token.operator, |
||||
.token.entity, |
||||
.token.url, |
||||
.language-css .token.string, |
||||
.style .token.string { |
||||
color: #9a6e3a; |
||||
background: hsla(0, 0%, 100%, .5); |
||||
} |
||||
|
||||
.token.atrule, |
||||
.token.attr-value, |
||||
.token.keyword { |
||||
color: #07a; |
||||
} |
||||
|
||||
.token.function, |
||||
.token.class-name { |
||||
color: #DD4A68; |
||||
} |
||||
|
||||
.token.regex, |
||||
.token.important, |
||||
.token.variable { |
||||
color: #e90; |
||||
} |
||||
|
||||
.token.important, |
||||
.token.bold { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
.token.italic { |
||||
font-style: italic; |
||||
} |
||||
|
||||
.token.entity { |
||||
cursor: help; |
||||
} |
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 958 KiB After Width: | Height: | Size: 1001 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue