header.less 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .dashboarddesigner-header {
  2. display: flex;
  3. justify-content: space-between;
  4. .toolbar-title {
  5. flex: 1;
  6. text-align: center;
  7. .input-title {
  8. width: 250px;
  9. .ant-input-wrapper {
  10. input {
  11. text-align: center;
  12. font-size: 18px;
  13. color: rgba(0, 0, 0, 0.65);
  14. cursor: text;
  15. border: none;
  16. border-bottom-right-radius: 4px;
  17. border-top-right-radius: 4px;
  18. background-color: transparent;
  19. }
  20. }
  21. }
  22. .ant-input-group-addon {
  23. cursor: pointer;
  24. border: none;
  25. background: transparent;
  26. :hover {
  27. color: #40a9ff;
  28. }
  29. }
  30. .ant-form-explain {
  31. margin-right: -520px;
  32. margin-top: -30px;
  33. }
  34. }
  35. .toolbar-viewswitch {
  36. .edit-mode-switch {
  37. background-color: #1890ff;
  38. }
  39. .view-mode-switch {
  40. background-color: #51C319;
  41. }
  42. }
  43. }
  44. .ant-tooltip-arrow {
  45. border-bottom-color: rgba(255,255,255,.75) !important;
  46. }