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 1.1 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .create-hyperparameter {
  2. height: 100%;
  3. &__content {
  4. height: calc(100% - 60px);
  5. margin-top: 10px;
  6. padding: 30px 30px 10px;
  7. overflow: auto;
  8. color: @text-color;
  9. font-size: @font-size-content;
  10. background-color: white;
  11. border-radius: 10px;
  12. &__type {
  13. color: @text-color;
  14. font-size: @font-size-input-lg;
  15. }
  16. :global {
  17. .ant-input-number {
  18. width: 100%;
  19. }
  20. .ant-form-item {
  21. margin-bottom: 20px;
  22. }
  23. .image-url {
  24. margin-top: -15px;
  25. .ant-form-item-label > label::after {
  26. content: '';
  27. }
  28. }
  29. .ant-btn-variant-text:disabled {
  30. color: @text-disabled-color;
  31. }
  32. .ant-btn-variant-text {
  33. color: #565658;
  34. }
  35. .ant-btn.ant-btn-icon-only .anticon {
  36. font-size: 20px;
  37. }
  38. .anticon-question-circle {
  39. margin-top: -12px;
  40. margin-left: 1px !important;
  41. color: @text-color-tertiary !important;
  42. font-size: 12px !important;
  43. }
  44. }
  45. }
  46. }