header.less 991 B

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