mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-19 21:42:24 +00:00
Merge pull request #426 from hamid-gh98/main
FIX input bg color in login page
This commit is contained in:
commit
b5dd258074
3 changed files with 11 additions and 2 deletions
2
web/assets/ant-design-vue@1.7.2/antd.min.css
vendored
2
web/assets/ant-design-vue@1.7.2/antd.min.css
vendored
|
@ -629,7 +629,7 @@ to{transform:scaleY(0);transform-origin:0 0;opacity:0}
|
||||||
.ant-input:-moz-placeholder-shown{text-overflow:ellipsis}
|
.ant-input:-moz-placeholder-shown{text-overflow:ellipsis}
|
||||||
.ant-input:-ms-input-placeholder{text-overflow:ellipsis}
|
.ant-input:-ms-input-placeholder{text-overflow:ellipsis}
|
||||||
.ant-input:placeholder-shown{text-overflow:ellipsis}
|
.ant-input:placeholder-shown{text-overflow:ellipsis}
|
||||||
.ant-input:focus,.ant-input:hover{border-color:rgb(0, 150, 112) !important;border-right-width:1px!important;background-color: rgb(0 149 111 / 10%)}
|
.ant-input:focus,.ant-input:hover{border-color:rgb(0, 150, 112) !important;border-right-width:1px!important;}
|
||||||
.ant-input:focus{outline:0;box-shadow:rgba(0, 150, 112, 0.2) 0px 0px 0px 2px}
|
.ant-input:focus{outline:0;box-shadow:rgba(0, 150, 112, 0.2) 0px 0px 0px 2px}
|
||||||
.ant-input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}
|
.ant-input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}
|
||||||
.ant-input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}
|
.ant-input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}
|
||||||
|
|
|
@ -297,6 +297,15 @@ body {
|
||||||
border: 1px solid rgb(0 150 112 / 0%);
|
border: 1px solid rgb(0 150 112 / 0%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ant-layout:not(.login) .ant-input:focus,
|
||||||
|
.ant-layout:not(.login) .ant-input:hover,
|
||||||
|
.ant-layout:not(.login) .ant-input-number:focus,
|
||||||
|
.ant-layout:not(.login) .ant-input-number:hover,
|
||||||
|
.ant-layout:not(.login) .ant-calendar-input:focus,
|
||||||
|
.ant-layout:not(.login) .ant-calendar-input:hover {
|
||||||
|
background-color: rgba(0, 149, 111, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
.ant-card-dark .ant-select-disabled .ant-select-selection {
|
.ant-card-dark .ant-select-disabled .ant-select-selection {
|
||||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
background-color: #242c3a;
|
background-color: #242c3a;
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
<body>
|
<body>
|
||||||
<a-layout id="app" v-cloak :class="themeSwitcher.darkCardClass">
|
<a-layout id="app" v-cloak class="login" :class="themeSwitcher.darkCardClass">
|
||||||
<transition name="list" appear>
|
<transition name="list" appear>
|
||||||
<a-layout-content>
|
<a-layout-content>
|
||||||
<a-row type="flex" justify="center">
|
<a-row type="flex" justify="center">
|
||||||
|
|
Loading…
Reference in a new issue