123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- .__hover {
- &:hover {
- opacity: 0.75;
- cursor: pointer;
- }
- }
- .__text-ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- }
- .__box-shadow {
- box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.4);
- border: 1px solid #C7CFDE;
- }
- .__background-grid {
- background-image: url("@/assets/images/gis-layout/background-grid.png");
- background-size: 100% 100%;
- background-repeat: repeat;
- }
- .__check {
- width: 16px;
- height: 16px;
- border: 1px solid #d3d3d3;
- border-radius: 2px;
- overflow: hidden;
- &.active {
- background-color: #6587ff;
- border-color: #6587ff;
- display: grid;
- place-items: center;
- &:after {
- content: '✔';
- color: #ffffff;
- font-size: 14px;
- }
- }
- &:hover {
- opacity: 0.75;
- cursor: pointer;
- }
- }
- .__normal-page {
- margin-left: 10px;
- flex: 1;
- display: flex;
- overflow: hidden;
- .__normal-tree {
- }
- .__normal-content {
- flex: 1;
- position: relative;
- overflow: hidden;
- }
- }
- .__cus-pagination {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- margin: 0;
- padding: 0;
- .el-pagination__total {
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #AEAEAE;
- }
- //.el-pagination__sizes {
- // .el-input {
- // max-width: 100px !important;
- // .el-input__wrapper {
- // padding-left: 8px !important;
- // padding-right: 8px !important;
- // .el-input__inner {
- // font-size: 14px;
- // font-family: Microsoft YaHei;
- // font-weight: 400;
- // color: #999999;
- // }
- // }
- // }
- //}
- .btn-prev, .btn-next {
- background-color: transparent !important;
- color: #AEAEAE !important;
- margin-left: unset;
- min-width: unset;
- }
- .el-pager {
- .number {
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #AEAEAE !important;
- background-color: transparent !important;
- min-width: unset;
- padding: 0 1px;
- &:hover {
- opacity: 0.75;
- color: #1174DB !important;
- }
- &.is-active {
- color: #1174DB !important;
- opacity: 1;
- }
- }
- .more {
- background-color: transparent !important;
- color: #AEAEAE !important;
- &:hover {
- color: #1174DB !important;
- }
- }
- }
- button:hover {
- color: #1174DB !important;
- }
- .el-pagination__jump {
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #AEAEAE;
- margin-left: unset;
- .el-pagination__goto {
- margin-right: 2px;
- }
- .el-input {
- width: 30px;
- height: 20px;
- .el-input__wrapper {
- padding-left: 2px !important;
- padding-right: 2px !important;
- .el-input__inner {
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #AEAEAE;
- }
- }
- }
- .el-pagination__classifier {
- margin-left: 2px;
- }
- }
- }
- .__cus-dialog {
- &.__cus-dialog-auto-height {
- .el-overlay-dialog {
- .el-dialog {
- max-height: var(--cus-dialog_max-height);
- min-height: var(--cus-dialog_min-height);
- height: unset;
- }
- }
- }
- .el-overlay-dialog {
- .el-dialog {
- height: var(--cus-dialog_height);
- $borderRadius: 8px;
- border-radius: $borderRadius;
- display: flex;
- flex-direction: column;
- .el-dialog__header {
- padding: 0;
- margin: 0;
- ._cus-dialog-head {
- height: 50px;
- width: 100%;
- background-color: #F5F7FA;
- display: flex;
- align-items: center;
- border-radius: $borderRadius $borderRadius 0 0 ;
- font-size: 18px;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 500;
- color: #303133;
- padding: 0 20px 0 16px;
- box-sizing: border-box;
- .__cdh-title {}
- .__cdh-slot {}
- .__cdh-close {
- margin-left: auto;
- }
- }
- }
- .el-dialog__body {
- padding: 0;
- height: calc(100% - 50px);
- width: 100%;
- display: flex;
- overflow-y: hidden;
- flex: 1;
- .__cus-dialog-main {
- width: 100%;
- display: flex;
- flex-direction: column;
- .__cus-dialog-content {
- flex: 1;
- overflow-y: auto;
- }
- .__cus-dialog-foot {
- width: 100%;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- >div {
- margin-right: 10px;
- &:last-child {
- margin-right: 0;
- }
- }
- .__cus-dialog-foot_submit {
- width: 72px;
- height: 36px;
- background: #0062E9;
- border-radius: 4px;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- }
- .__cus-dialog-foot_cancel {
- width: 72px;
- height: 36px;
- background: #F8F8F8;
- border: 1px solid #E4E4E4;
- border-radius: 4px;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- }
- }
- &.isFull {
- overflow-y: auto;
- .__cus-dialog-content {
- overflow-y: unset;
- }
- }
- }
- }
- }
- }
- }
- .__cus-buttons-1 {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 36px;
- >div {
- height: 100%;
- width: 80px;
- border: 1px solid #1270DA;
- border-radius: 2px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- &:not(:last-child) {
- margin-right: 10px;
- }
- }
- .__cus-button-submit {
- background-color: #1280F1;
- color: #FFFFFF;
- }
- .__cus-button-cancel {
- background-color: #FFFFFF;
- color: #108DF3;
- }
- }
- .__cus-buttons-2 {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 36px;
- >div {
- height: 100%;
- width: 50px;
- border: 1px solid #1270DA;
- border-radius: 2px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- &:not(:last-child) {
- margin-right: 8px;
- }
- }
- .__cus-button-submit {
- background-color: #1280F1;
- color: #FFFFFF;
- }
- .__cus-button-cancel {
- background-color: #FFFFFF;
- color: #108DF3;
- }
- }
- .__cus-buttons-3 {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 20px;
- >div {
- width: 60px;
- height: 100%;
- border: 1px solid #1270DA;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- &:not(:last-child) {
- margin-right: 8px;
- }
- }
- .__cus-button-submit {
- background-color: #1280F1;
- color: #FFFFFF;
- }
- .__cus-button-cancel {
- background-color: #FFFFFF;
- color: #108DF3;
- }
- }
- .__gis-overlay_table-v2 {
- background-color: transparent;
- $b: 1px solid #00C6FC;
- .el-table-v2__table {
- background-color: transparent;
- .el-table-v2__header-wrapper {
- background-color: transparent;
- .el-table-v2__header {
- background-color: transparent;
- .el-table-v2__header-row {
- border: none;
- background-color: transparent;
- .el-table-v2__header-cell {
- background-color: #2860CE;
- border-top: $b;
- border-bottom: $b;
- border-left: $b;
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #B4D5FA;
- &:last-child {
- border-right: $b;
- }
- }
- }
- }
- }
- .el-table-v2__body {
- .el-virtual-scrollbar {
- width: 4px !important;
- }
- .el-table-v2__row {
- border: none;
- background-color: transparent;
- .el-table-v2__row-cell {
- background-color: #1174db;
- border-bottom: $b;
- border-left: $b;
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #FFFFFF;
- &:last-child {
- border-right: $b;
- }
- }
- }
- }
- }
- }
|