Updated alerts CSS

This commit is contained in:
Eldad Fux 2020-07-27 09:34:11 +03:00
parent f72e4561c6
commit 5f4078e21c
4 changed files with 29 additions and 16 deletions

View file

@ -36,7 +36,7 @@ const APP_EMAIL_SECURITY = 'security@localhost.test'; // Default security email
const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s';
const APP_MODE_ADMIN = 'admin';
const APP_PAGING_LIMIT = 12;
const APP_CACHE_BUSTER = 132;
const APP_CACHE_BUSTER = 138;
const APP_VERSION_STABLE = '0.7.0';
const APP_STORAGE_UPLOADS = '/storage/uploads';
const APP_STORAGE_FUNCTIONS = '/storage/functions';

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -34,6 +34,10 @@
font-weight: 600;
}
a {
border-bottom: dotted 1px var(--config-color-normal);
}
i {
cursor: pointer;
position: absolute;
@ -41,29 +45,31 @@
line-height: 20px;
top: 9px;
.func-start(9px);
background: #fff;
color: var(--config-color-background-dark);
background: var(--config-color-normal);
width: 22px;
height: 22px;
border-radius: 50%;
}
&.error {
color: #ffffff;
background: var(--config-color-danger);
color: #ffffff!important;
background: var(--config-color-danger)!important;
a {
color: #ffffff;
border-bottom: dotted 1px #ffffff;
color: #ffffff!important;
border-bottom: dotted 1px #ffffff!important;
}
i {
color: var(--config-color-danger);
background: #ffffff;
}
}
&.success {
color: #ffffff;
background: var(--config-color-success);
color: #ffffff!important;
background: var(--config-color-success)!important;
a {
color: #ffffff;
@ -72,20 +78,22 @@
i {
color: var(--config-color-success);
background: #ffffff;
}
}
&.warning {
color: #ffffff;
background: var(--config-color-warning);
color: var(--config-color-normal)!important;
background: var(--config-color-warning)!important;
a {
color: #ffffff;
border-bottom: dotted 1px #ffffff;
color: var(--config-color-normal)!important;
border-bottom: dotted 1px var(--config-color-normal)!important;
}
i {
color: var(--config-color-warning);
color: #ffffff;
background: var(--config-color-normal)!important;
}
}
@ -107,7 +115,12 @@
a {
color: var(--config-color-focus);
font-weight: 400;
border-bottom: dotted 1px var(--config-color-focus);
border-bottom: dotted 1px var(--config-color-focus)!important;
}
i {
color: var(--config-color-focus-fade)!important;
background: var(--config-color-focus)!important;
}
}