toolbar.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .dashboardview-toolbar {
  2. display: flex;
  3. justify-content: flex-end;
  4. width: 100%;
  5. border-top: 1px solid @border-color-base;
  6. border-bottom: 1px solid @border-color-base;
  7. &>.toos {
  8. display: flex;
  9. margin-right: 16px;
  10. &>.tool {
  11. cursor: pointer;
  12. margin-right: 8px;
  13. i {
  14. margin: 0 4px;
  15. }
  16. }
  17. }
  18. }
  19. .modal-full {
  20. top: 0;
  21. padding: 0;
  22. .ant-modal-content {
  23. height: 100%;
  24. .ant-modal-close {
  25. width: 0;
  26. height: 0;
  27. border-width: 20px;
  28. border-style: solid;
  29. border-color: #DEDEDE #DEDEDE transparent transparent;
  30. transform: rotate(135deg);
  31. right: -18px;
  32. top: -20px;
  33. .ant-modal-close-x {
  34. font-size: 14px;
  35. width: 14px;
  36. height: 14px;
  37. line-height: 0;
  38. margin-top: -10px;
  39. margin-left: 4px;
  40. transform: rotate(45deg);
  41. }
  42. }
  43. .ant-modal-body {
  44. padding: 0;
  45. height: 100%;
  46. }
  47. }
  48. }