| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .dashboardview-toolbar {
- display: flex;
- justify-content: flex-end;
- width: 100%;
- border-top: 1px solid @border-color-base;
- border-bottom: 1px solid @border-color-base;
- &>.toos {
- display: flex;
- margin-right: 16px;
- &>.tool {
- cursor: pointer;
- margin-right: 8px;
- i {
- margin: 0 4px;
- }
- }
- }
- }
- .modal-full {
- top: 0;
- padding: 0;
- .ant-modal-content {
- height: 100%;
- .ant-modal-close {
- width: 0;
- height: 0;
- border-width: 20px;
- border-style: solid;
- border-color: #DEDEDE #DEDEDE transparent transparent;
- transform: rotate(135deg);
- right: -18px;
- top: -20px;
- .ant-modal-close-x {
- font-size: 14px;
- width: 14px;
- height: 14px;
- line-height: 0;
- margin-top: -10px;
- margin-left: 4px;
- transform: rotate(45deg);
- }
- }
- .ant-modal-body {
- padding: 0;
- height: 100%;
- }
- }
- }
|