12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .ui-drag-modal-box-hide {
- display: none;
- }
- .ui-drag-modal-box {
- position: fixed;
- top: 0;
- left: 0;
- opacity: 0;
- z-index: -1024;
- transition: opacity 0.3s, z-index 0.3s;
- .ui-drag-modal-dialog {
- position: relative;
- min-width: 340px;
- min-height: 380px;
- background-color: #ffffff;
- display: inline-block;
- border-radius: 5px;
- z-index: 8001;
- .ui-drag-modal-dialog-header {
- position: relative;
- display: flex;
- align-items: center;
- .ui-drag-modal-dialog-title {
- flex: 1;
- padding: 15px 20px;
- cursor: all-scroll;
- user-select: none;
- }
- .ui-drag-modal-dialog-close {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- cursor: pointer;
- margin-right: 15px;
- transition: opacity 0.3s;
- i {
- font-size: 20px;
- }
- &:hover {
- opacity: .6;
- }
- }
- }
- .ui-drag-modal-dialog-body {
- position: relative;
- height: calc(100% - 58px);
- }
- .ui-drag-modal-resize {
- position: absolute;
- width: 15px;
- height: 15px;
- right: 0;
- bottom: 0;
- cursor: se-resize;
- }
- }
- &.ui-drag-modal-show {
- opacity: 1;
- z-index: 8000;
- }
- }
|