index.less 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. @import 'transition/index.less';
  2. @import 'var/index.less';
  3. @import 'public.less';
  4. @import 'ant/index.less';
  5. @import './theme.less';
  6. @import 'vent/index.less';
  7. @import './color.less';
  8. input:-webkit-autofill,
  9. input:-webkit-autofill:hover,
  10. input:-webkit-autofill:focus,
  11. input:-webkit-autofill:active {
  12. -webkit-transition-delay: 99999s;
  13. -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
  14. }
  15. html {
  16. overflow: hidden;
  17. -webkit-text-size-adjust: 100%;
  18. }
  19. html,
  20. body {
  21. width: 100%;
  22. height: 100%;
  23. &.color-weak {
  24. filter: invert(80%);
  25. }
  26. &.gray-mode {
  27. filter: grayscale(100%);
  28. filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  29. }
  30. }
  31. /* 【LOWCOD-2300】【vue3】online--online表单开发,下拉框位置靠下时,点开下拉框,整屏跳 */
  32. body {
  33. overflow: visible;
  34. overflow-x: hidden;
  35. }
  36. a:focus,
  37. a:active,
  38. button,
  39. div,
  40. svg,
  41. span {
  42. outline: none !important;
  43. }
  44. // 保持 和 windi 一样的全局样式,减少升级带来的影响
  45. ul {
  46. list-style: none;
  47. margin: 0;
  48. padding: 0;
  49. }
  50. img, video {
  51. max-width: 100%;
  52. height: auto;
  53. }
  54. // 保持 和 windi 一样的全局样式,减少升级带来的影响
  55. // update-begin--author:liaozhiyang---date:20230925---for:【issues/5407】字段信息校验是多行提示会被遮挡
  56. .vxe-cell--valid-msg {
  57. white-space: nowrap;
  58. }
  59. // update-end--author:liaozhiyang---date:20230925---for:【issues/5407】字段信息校验是多行提示会被遮挡
  60. // update-begin--author:liaozhiyang---date:20231013---for:【QQYUN-5133】升级之后提示样式跟之前一致
  61. .vxe-table--render-default.vaild-msg--single .vxe-body--row:last-child .vxe-cell--valid {
  62. top: auto;
  63. }
  64. .vxe-cell--valid {
  65. top: 100%;
  66. }
  67. .vxe-cell--valid-msg {
  68. display: inline-block;
  69. border-radius: 4px !important;
  70. padding: 8px 12px !important;
  71. color: #fff !important;
  72. background-color: #f56c6c !important;
  73. }
  74. // update-end--author:liaozhiyang---date:20231013---for:【QQYUN-5133】升级之后提示样式跟之前一致