You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.less 739 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .parameter-input {
  2. flex: 1 1 auto;
  3. min-width: 0;
  4. height: 32px;
  5. padding: 3px 11px;
  6. border: 1px solid #d9d9d9;
  7. border-radius: 6px;
  8. &:hover {
  9. border-color: @primary-color;
  10. }
  11. &__content {
  12. display: flex;
  13. align-items: center;
  14. width: fit-content;
  15. max-width: 100%;
  16. height: 24px;
  17. padding: 0 8px;
  18. color: .addAlpha(@text-color, 0.8) [];
  19. background-color: rgba(0, 0, 0, 0.06);
  20. border-radius: 4px;
  21. &__value {
  22. .singleLine();
  23. margin-right: 8px;
  24. font-size: @font-size-input;
  25. }
  26. &__close-icon {
  27. font-size: 10px;
  28. &:hover {
  29. color: #000;
  30. }
  31. }
  32. }
  33. &__placeholder {
  34. color: rgba(0, 0, 0, 0.25);
  35. font-size: @font-size-input;
  36. }
  37. }