|
@@ -199,3 +199,156 @@ aside {
|
|
|
.app-container {
|
|
|
background: #fff;
|
|
|
}
|
|
|
+// aj-report 样式 start
|
|
|
+// 谷歌浏览器去滚动条
|
|
|
+html::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.el-image-viewer__close {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.collapse-input-style {
|
|
|
+ .el-input__inner,
|
|
|
+ .el-textarea__inner {
|
|
|
+ background: #263445 !important;
|
|
|
+ border: 1px solid #3f5673;
|
|
|
+ color: #a8e3ff;
|
|
|
+ }
|
|
|
+ .el-slider__runway {
|
|
|
+ height: 2px;
|
|
|
+ background-color: #5e6b82;
|
|
|
+ }
|
|
|
+ .el-slider__bar {
|
|
|
+ height: 2px;
|
|
|
+ }
|
|
|
+ .el-slider__button-wrapper {
|
|
|
+ top: -17px;
|
|
|
+ }
|
|
|
+ .el-slider__button {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ }
|
|
|
+ .el-switch__core {
|
|
|
+ background-color: #5e6b82;
|
|
|
+ border: 1px solid #3f5673;
|
|
|
+ }
|
|
|
+ .el-input-group__append,
|
|
|
+ .el-input-group__prepend {
|
|
|
+ background: #5e6b82 !important;
|
|
|
+ border: 1px solid #3f5673;
|
|
|
+ color: #a8e3ff;
|
|
|
+ }
|
|
|
+ .el-input-number__increase,
|
|
|
+ .el-input-number__decrease {
|
|
|
+ background: #5e6b82 !important;
|
|
|
+ border: 1px solid #3f5673;
|
|
|
+ color: #a8e3ff;
|
|
|
+ }
|
|
|
+ .el-input-number.is-controls-right .el-input-number__increase {
|
|
|
+ height: 15px;
|
|
|
+ border-bottom: 1px solid #3f5673;
|
|
|
+ }
|
|
|
+ .el-input-number.is-controls-right .el-input-number__decrease {
|
|
|
+ border-left: 1px solid #3f5673;
|
|
|
+ }
|
|
|
+ .el-form-item__label {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #bfcbd9 !important;
|
|
|
+ font-weight: normal !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+// 大屏展示 的一些样式
|
|
|
+.my-dialog {
|
|
|
+ .el-dialog {
|
|
|
+ background: #062b69;
|
|
|
+ border: 1px solid #5ddaf6;
|
|
|
+ }
|
|
|
+ .el-dialog__header {
|
|
|
+ border-bottom: 1px solid #5ddaf6;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .el-dialog__title {
|
|
|
+ color: #5cdcf9;
|
|
|
+ }
|
|
|
+ .el-input__inner {
|
|
|
+ background: #091e43;
|
|
|
+ border-color: #254e97;
|
|
|
+ }
|
|
|
+ .el-date-editor .el-range__icon {
|
|
|
+ color: #5cdcf9;
|
|
|
+ }
|
|
|
+ input {
|
|
|
+ background: #091e43;
|
|
|
+ }
|
|
|
+ .el-date-editor .el-range-input {
|
|
|
+ color: #5cdcf9;
|
|
|
+ }
|
|
|
+ .form-handle {
|
|
|
+ .el-form-item__label {
|
|
|
+ color: #5cdcf9;
|
|
|
+ font-weight: 500;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-form-item {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ .el-textarea__inner,
|
|
|
+ .el-select:hover .el-input__inner {
|
|
|
+ background-color: #091e43;
|
|
|
+ border-color: #254e97;
|
|
|
+ border-bottom: 1px solid #254e97;
|
|
|
+ }
|
|
|
+ .el-button--blue {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #224788;
|
|
|
+ border-color: #224788;
|
|
|
+ }
|
|
|
+ .el-button--green {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #2092ad;
|
|
|
+ border-color: #2092ad;
|
|
|
+ }
|
|
|
+}
|
|
|
+/*日志折叠面板定制*/
|
|
|
+.log .el-collapse {
|
|
|
+ border-top: 0;
|
|
|
+ border-bottom: 0;
|
|
|
+}
|
|
|
+.log .el-collapse-item__header {
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ cursor: pointer;
|
|
|
+ border: 1px solid #fff;
|
|
|
+ background: rgba(145, 163, 177, 0.15);
|
|
|
+ font-size: 14px;
|
|
|
+ color: #666;
|
|
|
+ -webkit-transition: border-bottom-color 0.3s;
|
|
|
+ transition: border-bottom-color 0.3s;
|
|
|
+ outline: 0;
|
|
|
+ padding: 0 20px;
|
|
|
+}
|
|
|
+.log .el-collapse-item__wrap {
|
|
|
+ will-change: height;
|
|
|
+ overflow: hidden;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-bottom: 1px solid #fff;
|
|
|
+ background: #263c7c;
|
|
|
+}
|
|
|
+.log .el-collapse-item__content {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ffffff;
|
|
|
+ padding: 20px;
|
|
|
+}
|
|
|
+.log .el-collapse-item__arrow {
|
|
|
+ margin-top: 14px;
|
|
|
+ float: right;
|
|
|
+ margin-right: -77px;
|
|
|
+}
|
|
|
+.log .icon-btn_style,
|
|
|
+.log .icon-btn_style:hover {
|
|
|
+ background: none;
|
|
|
+ border: 0;
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+// aj-report 样式 end
|