Fix declaration-block-no-shorthand-property-overrides (CSS)

This commit is contained in:
MrTimscampi 2020-01-19 13:50:29 +01:00
parent 361d6372b0
commit ff67afeaa7
7 changed files with 14 additions and 12 deletions

View file

@ -26,11 +26,11 @@ html {
.skinHeader.semiTransparent {
-webkit-backdrop-filter: none !important;
backdrop-filter: none !important;
background-color: rgba(0, 0, 0, .3);
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: -o-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0))
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background-color: rgba(0, 0, 0, .3);
}
.pageTitleWithDefaultLogo {

View file

@ -26,11 +26,11 @@ html {
.skinHeader.semiTransparent {
-webkit-backdrop-filter: none !important;
backdrop-filter: none !important;
background-color: rgba(0, 0, 0, .3);
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: -o-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0))
background-color: rgba(0, 0, 0, .3);
}
.pageTitleWithDefaultLogo {

View file

@ -22,21 +22,21 @@ html {
.formDialogHeader:not(.formDialogHeader-clear),
.skinHeader-withBackground {
background-color: #0C2450;
background: -webkit-gradient(linear, left top, left bottom, from(#0C2450), to(#081B3B));
background: -webkit-linear-gradient(top, #0C2450, #081B3B);
background: -o-linear-gradient(top, #0C2450, #081B3B);
background: linear-gradient(to bottom, #0C2450, #081B3B)
background: linear-gradient(to bottom, #0C2450, #081B3B);
background-color: #0C2450;
}
.skinHeader.semiTransparent {
-webkit-backdrop-filter: none !important;
backdrop-filter: none !important;
background-color: rgba(0, 0, 0, .3);
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: -o-linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0))
background-color: rgba(0, 0, 0, .3);
}
.pageTitleWithDefaultLogo {
@ -45,11 +45,11 @@ html {
.backgroundContainer,
.dialog {
background-color: #0F3562;
background: -webkit-gradient(linear, left top, left bottom, from(#0F3562), color-stop(#1162A4), to(#03215F));
background: -webkit-linear-gradient(top, #0F3562, #1162A4, #03215F);
background: -o-linear-gradient(top, #0F3562, #1162A4, #03215F);
background: linear-gradient(to bottom, #0F3562, #1162A4, #03215F)
background-color: #0F3562;
}
.backgroundContainer.withBackdrop {
@ -427,6 +427,7 @@ html {
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}
@ -436,6 +437,7 @@ html {
::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:vertical {
border-radius: 2px;
-webkit-border-radius: 2px;
background: center no-repeat rgba(255, 255, 255, .7)
}