|
@@ -57,17 +57,31 @@ img{
|
|
|
/* 文本区域 */
|
|
|
.el-textarea__inner {
|
|
|
height: 100%;
|
|
|
+ background-color: transparent !important;
|
|
|
+ border: none !important;
|
|
|
+ box-shadow: none !important;
|
|
|
}
|
|
|
|
|
|
|
|
|
-.custom-card {
|
|
|
+.el-input__wrapper {
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
+
|
|
|
+.el-input .el-input__inner {
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
+
|
|
|
+.custom-card-infoLog {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
background-color: transparent;
|
|
|
color: #FFFFFF;
|
|
|
border: none;
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
|
}
|
|
|
|
|
|
-.custom-card .el-card__header {
|
|
|
+.custom-card-infoLog .el-card__header {
|
|
|
display: flex;
|
|
|
align-items: center; /* 垂直居中 */
|
|
|
|
|
@@ -81,8 +95,47 @@ img{
|
|
|
border-image: linear-gradient(180deg, rgba(61, 115, 255, 0), rgba(61, 115, 255, 1)) 1 1;
|
|
|
}
|
|
|
|
|
|
+.custom-card-infoLog .el-card__body {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 40px);
|
|
|
+ padding: 5px 5px;
|
|
|
+ background: linear-gradient(to top, #173B77 0%, #132440 100%);
|
|
|
+ border-radius: 0px 0px 0px 0px;
|
|
|
+ border: 2px solid rgba(61,115,255,0.3);
|
|
|
+
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.custom-card {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+ background-color: transparent;
|
|
|
+ color: #FFFFFF;
|
|
|
+ border: none;
|
|
|
+ border-radius: 0px 0px 0px 0px;
|
|
|
+}
|
|
|
+
|
|
|
+.custom-card .el-card__header {
|
|
|
+ display: flex;
|
|
|
+ align-items: center; /* 垂直居中 */
|
|
|
+
|
|
|
+ border-bottom: none;
|
|
|
+ padding: 0 35px;
|
|
|
+
|
|
|
+ height: 40px;
|
|
|
+ background-image: url(@/assets/img/card-header.png);
|
|
|
+ border-radius: 0px 0px 0px 0px;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
.custom-card .el-card__body {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 40px);
|
|
|
+ padding: 5px 5px;
|
|
|
background: linear-gradient(to top, #173B77 0%, #132440 100%);
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
|
border: 2px solid rgba(61,115,255,0.3);
|
|
|
+
|
|
|
+ overflow: auto;
|
|
|
}
|