|
@@ -121,6 +121,62 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+// .el-drawer
|
|
|
+.el-drawer__wrapper {
|
|
|
+ background-color: rgba(0, 0, 0, 0.1);
|
|
|
+ .el-drawer {
|
|
|
+ &__header {
|
|
|
+ padding: 15px 20px;
|
|
|
+ color: $--color-text-dark;
|
|
|
+ font-size: 16px;
|
|
|
+ line-height: 19px;
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ &__close-btn {
|
|
|
+ top: 15px;
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ background-image: url(../images/icon-close.png);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url(../images/icon-close-act.png);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__close {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &__body {
|
|
|
+ padding: 20px;
|
|
|
+ position: relative;
|
|
|
+ border-top: 1px solid $--color-border;
|
|
|
+ color: $--color-text-dark-1;
|
|
|
+
|
|
|
+ .el-form-item__label {
|
|
|
+ padding-right: 2px;
|
|
|
+ }
|
|
|
+ .el-input-tips {
|
|
|
+ color: rgba(187, 187, 187, 1);
|
|
|
+ margin-left: 13px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &__footer {
|
|
|
+ overflow: hidden;
|
|
|
+ padding-top: 20px;
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ width: 100px;
|
|
|
+ border-radius: 8px;
|
|
|
+ float: right;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
// form
|
|
|
.el-form {
|
|
|
&-item {
|