Commit 90ce2f96 authored by jiaxu.yan's avatar jiaxu.yan

feat: 参数设置限制输入数字

parent accff522
*{ * {
box-sizing:border-box; box-sizing: border-box;
-moz-box-sizing:border-box; /* Firefox */ -moz-box-sizing: border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */ -webkit-box-sizing: border-box; /* Safari */
} }
.el-pager li{ .el-pager li {
font-weight: 100; font-weight: 100;
margin-right: 9px; margin-right: 9px;
border: 1px solid #eee; border: 1px solid #eee;
border-radius: 3px; border-radius: 3px;
min-width: 28px; min-width: 28px;
} }
.el-pager li.active,.el-pager li:hover{ .el-pager li.active,
.el-pager li:hover {
background: #ed4014; background: #ed4014;
color: white; color: white;
} }
.el-pagination__editor.el-input .el-input__inner{ .el-pagination__editor.el-input .el-input__inner {
height: 23px; height: 23px;
} }
.animated { .animated {
-webkit-animation-duration: 0.5s; -webkit-animation-duration: 0.5s;
animation-duration: 0.5s; animation-duration: 0.5s;
-webkit-animation-fill-mode: both; -webkit-animation-fill-mode: both;
animation-fill-mode: both; animation-fill-mode: both;
} }
@media (print), (prefers-reduced-motion) { @media (print), (prefers-reduced-motion) {
.animated { .animated {
-webkit-animation: unset !important; -webkit-animation: unset !important;
animation: unset !important; animation: unset !important;
-webkit-transition: none !important; -webkit-transition: none !important;
transition: none !important; transition: none !important;
} }
} }
@-webkit-keyframes fadeInDown { @-webkit-keyframes fadeInDown {
from { from {
opacity: 1; opacity: 1;
-webkit-transform: translate3d(0, -100%, 0); -webkit-transform: translate3d(0, -100%, 0);
...@@ -47,9 +47,9 @@ ...@@ -47,9 +47,9 @@
-webkit-transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);
} }
} }
@keyframes fadeInDown { @keyframes fadeInDown {
from { from {
opacity: 0; opacity: 0;
-webkit-transform: translate3d(0, -100%, 0); -webkit-transform: translate3d(0, -100%, 0);
...@@ -61,15 +61,15 @@ ...@@ -61,15 +61,15 @@
-webkit-transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);
} }
} }
.fadeInDown { .fadeInDown {
-webkit-animation-name: fadeInDown; -webkit-animation-name: fadeInDown;
animation-name: fadeInDown; animation-name: fadeInDown;
} }
.ivu-message{ .ivu-message {
z-index: 999999999 !important; z-index: 999999999 !important;
} }
.ivu-form-item-content{ .ivu-form-item-content {
text-align: left; text-align: left;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment