| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @import 'transition/index.less';
- @import 'var/index.less';
- @import 'public.less';
- @import 'ant/index.less';
- @import './theme.less';
- @import 'vent/index.less';
- @import './color.less';
- input:-webkit-autofill,
- input:-webkit-autofill:hover,
- input:-webkit-autofill:focus,
- input:-webkit-autofill:active {
- -webkit-transition-delay: 99999s;
- -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
- }
- html {
- overflow: hidden;
- -webkit-text-size-adjust: 100%;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- &.color-weak {
- filter: invert(80%);
- }
- &.gray-mode {
- filter: grayscale(100%);
- filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
- }
- }
- /* 【LOWCOD-2300】【vue3】online--online表单开发,下拉框位置靠下时,点开下拉框,整屏跳 */
- body {
- overflow: visible;
- overflow-x: hidden;
- }
- a:focus,
- a:active,
- button,
- div,
- svg,
- span {
- outline: none !important;
- }
- // 保持 和 windi 一样的全局样式,减少升级带来的影响
- ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- img, video {
- max-width: 100%;
- height: auto;
- }
- // 保持 和 windi 一样的全局样式,减少升级带来的影响
- // update-begin--author:liaozhiyang---date:20230925---for:【issues/5407】字段信息校验是多行提示会被遮挡
- .vxe-cell--valid-msg {
- white-space: nowrap;
- }
- // update-end--author:liaozhiyang---date:20230925---for:【issues/5407】字段信息校验是多行提示会被遮挡
- // update-begin--author:liaozhiyang---date:20231013---for:【QQYUN-5133】升级之后提示样式跟之前一致
- .vxe-table--render-default.vaild-msg--single .vxe-body--row:last-child .vxe-cell--valid {
- top: auto;
- }
- .vxe-cell--valid {
- top: 100%;
- }
- .vxe-cell--valid-msg {
- display: inline-block;
- border-radius: 4px !important;
- padding: 8px 12px !important;
- color: #fff !important;
- background-color: #f56c6c !important;
-
- }
- // update-end--author:liaozhiyang---date:20231013---for:【QQYUN-5133】升级之后提示样式跟之前一致
|