12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @import 'transition/index.less';
- @import 'var/index.less';
- @import 'public.less';
- @import 'ant/index.less';
- input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 1000px white inset !important;
- }
- :-webkit-autofill {
- transition: background-color 5000s ease-in-out 0s !important;
- }
- // Background color setting in full screen state in each browser
- ::backdrop,
- html,
- *:fullscreen,
- *:-webkit-full-screen,
- *:-moz-full-screen {
- z-index: 1;
- background-color: #fff !important;
- }
- html {
- overflow: hidden;
- -webkit-text-size-adjust: 100%;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- overflow: visible !important;
- overflow-x: hidden !important;
- &.color-weak {
- filter: invert(80%);
- }
- &.gray-mode {
- filter: grayscale(100%);
- filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
- }
- }
- a:focus,
- a:active {
- outline: none;
- }
|