header.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .toolbar-title {
  2. .ant-input-group-wrapper {
  3. display: inline-block;
  4. vertical-align: middle;
  5. width: 200px;
  6. margin-bottom: 5px;
  7. }
  8. }
  9. .header {
  10. display: flex;
  11. justify-content: space-between;
  12. .toolbar-title {
  13. flex: 1;
  14. text-align: center;
  15. .ant-input-group{
  16. width: 300px;
  17. }
  18. .input-title {
  19. input {
  20. text-align: center;
  21. font-size: 16px;
  22. border: none;
  23. border-bottom-right-radius: 4px;
  24. border-top-right-radius: 4px;
  25. background-color: transparent;
  26. }
  27. }
  28. .ant-input-group-addon {
  29. cursor: pointer;
  30. border: none;
  31. background: transparent;
  32. :hover {
  33. color: #40a9ff;
  34. }
  35. }
  36. .ant-form-explain {
  37. margin-right: -580px;
  38. margin-top: -30px;
  39. }
  40. }
  41. .toolbar-buttons {
  42. button {
  43. margin-left: 8px;
  44. }
  45. }
  46. }
  47. .ant-tooltip-arrow {
  48. border-bottom-color: rgba(255,255,255,.75) !important;
  49. }