Reference.less 572 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @import "~assets/less/variable";
  2. .configPanel {
  3. height: 480px;
  4. }
  5. .list {
  6. padding: 8px 0;
  7. }
  8. .listItem {
  9. height: 32px;
  10. padding: 0 8px 0 16px;
  11. line-height: 2.286em;
  12. cursor: pointer;
  13. &:hover {
  14. h4 {
  15. color: @primary-color;
  16. }
  17. }
  18. &.selected {
  19. background: fade(@primary-color, 15);
  20. border-right: 3px solid @primary-color;
  21. &:hover {
  22. h4 {
  23. color: @heading-color;
  24. }
  25. }
  26. }
  27. }
  28. .form {
  29. flex: 1;
  30. padding: 16px;
  31. .antFormItemLabelCustom(0.8571em, 1em, 4px);
  32. }
  33. .colorPicker {
  34. height: 32px;
  35. margin-top: 4px;
  36. }