custom.css 833 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .engineeringInput::-webkit-outer-spin-button,
  2. .engineeringInput::-webkit-inner-spin-button {
  3. -webkit-appearance: none;
  4. }
  5. .engineeringInput {
  6. -moz-appearance: textfield;
  7. }
  8. .none_number_step::-webkit-outer-spin-button,
  9. .none_number_step::-webkit-inner-spin-button {
  10. -webkit-appearance: none;
  11. }
  12. .none_number_step {
  13. -moz-appearance: textfield;
  14. }
  15. .btn-link:focus, .btn-link:hover{
  16. text-decoration: none
  17. }
  18. .highlight {
  19. background: #eee;
  20. }
  21. .dragging {
  22. opacity: .5;
  23. background: #eee;
  24. }
  25. .cursor-default {
  26. cursor: default;
  27. }
  28. .cursor-move {
  29. cursor: move;
  30. }
  31. /* 不禁止的话,drag过程中经过子元素也会触发dragleave事件导致屏闪 */
  32. [draggable=true]:hover {
  33. background: rgb(240, 240, 240);
  34. }
  35. [draggable=true] span{
  36. pointer-events: none;
  37. }
  38. select.multiple {
  39. min-height: 150px;
  40. max-height: 300px;
  41. }