Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTara Rostami <132676256+TaraRostami@users.noreply.github.com>2023-05-25 12:45:24 +0300
committerGitHub <noreply@github.com>2023-05-25 12:45:24 +0300
commitb3f7a6572efa8a6959b2ea21771e585c9788c2ad (patch)
treec216a0f283874772539e83ef8292b2afdea64af2 /web/html/xui/settings.html
parent6f28a3a2fe47637a7bddc1b1cff4535f2f61b45e (diff)
Minor changes in the UI (#535)
* Update antd.min.css * Update settings.html
Diffstat (limited to 'web/html/xui/settings.html')
-rw-r--r--web/html/xui/settings.html30
1 files changed, 24 insertions, 6 deletions
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html
index 340e4cef..d78533a1 100644
--- a/web/html/xui/settings.html
+++ b/web/html/xui/settings.html
@@ -26,14 +26,32 @@
.alert-msg {
color: rgb(194, 117, 18);
- font-weight: bold;
- font-size: 20px;
- margin-top: 5px;
- padding: 16px 6px;
+ font-weight: normal;
+ font-size: 16px;
+ padding: .5rem 1rem;
text-align: center;
- border-bottom: 1px solid;
+ background: rgb(255 145 0 / 15%);
+ margin: 1.5rem 2.5rem 0rem 2.5rem;
+ border-radius: .5rem;
+ transition: all 0.5s;
+ animation: signal 3s cubic-bezier(0.18, 0.89, 0.32, 1.28) infinite;
+ }
+ .alert-msg:hover {
+ cursor: default;
+ transition-duration: .3s;
+ animation: signal 0.9s ease infinite;
+ }
+ @keyframes signal{
+ 0%{
+ box-shadow: 0 0 0 0 rgba(194, 118, 18, 0.5);
+ }
+ 50%{
+ box-shadow: 0 0 0 6px rgba(0 ,0,0,0);
+ }
+ 100%{
+ box-shadow: 0 0 0 6px rgba(0 ,0,0,0);
+ }
}
-
.alert-msg > i {
color: inherit;
font-size: 24px;