智慧农业后台管理页面
guoshilong
2022-11-08 082613d446e29e4ec1c16bfaa52345106a498b23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
.el-dropdown-menu__item {
    font-size: 12px !important;
    line-height: 28px !important;
}
 
//.el-card.is-always-shadow {
//  box-shadow: none;
//  border: none !important;
//}
.el-scrollbar__view {
    height: 100%;
}
 
.el-menu--horizontal {
    border-bottom: none !important;
}
 
.el-menu {
    border-right: none !important;
}
 
.el-menu--display,
.el-menu--display+.el-submenu__icon-arrow {
    display: none;
}
 
.el-message__icon,
.el-message__content {
    display: inline-block;
}
 
.el-date-editor .el-range-input,
.el-date-editor .el-range-separator {
    height: auto;
    overflow: hidden;
}
 
.el-dialog__wrapper {
    z-index: 2048;
}
 
.el-col {
    margin-bottom: 8px;
}
 
.el-main {
    padding: 0 !important;
}
 
.el-dropdown-menu__item--divided:before,
.el-menu,
.el-menu--horizontal>.el-menu-item:not(.is-disabled):focus,
.el-menu--horizontal>.el-menu-item:not(.is-disabled):hover,
.el-menu--horizontal>.el-submenu .el-submenu__title:hover {
    background-color: transparent;
}
 
.el-dropdown-menu__item--divided:before,
.el-menu,
.el-menu--horizontal>.el-menu-item:not(.is-disabled):focus,
.el-menu--horizontal>.el-menu-item:not(.is-disabled):hover,
.el-menu--horizontal>.el-submenu .el-submenu__title:hover {
    background-color: transparent !important;
}
 
.el-card__header {
    padding: 6px 18px !important;
}
 
.el-card__body {
    //padding: 16px !important;
}
 
.el-divider--horizontal {
    margin: 12px 0 !important;
}
 
.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #5abf78 !important;
}
 
.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: #5abf78 !important;
}
 
// .avue-crud__right {
//     display: none;
// }
.farming-detail-box {
    .dv {
        .el-tabs {
            height: 100%;
 
            .el-tabs__header {
                .el-tabs__nav {
                    transform: translateX(60px) !important;
                }
            }
 
            .el-tabs__content {
                height: calc(100% - 75px);
                overflow-y: auto;
            }
        }
    }
 
    .el-dialog__body {
        position: relative;
        height: 60%;
    }
}
 
 
.current-map-box {
 
    &>.el-dialog {
 
        width: 1200px;
        height: 620px;
 
 
        .el-dialog__header {}
 
        .el-dialog__body {
            position: relative;
            height: calc(100% - 54px);
            box-sizing: border-box;
 
            .save {
                position: absolute;
                bottom: 10px;
                right: 10px;
 
            }
        }
 
    }
 
 
}
 
.plot-detail-popup {
    .header {
        .plot-name {
            input {
                background: transparent;
                color: #fff;
                font-weight: bold;
                border: none;
            }
        }
    }
}