Skip to content

Commit

Permalink
v3.13 Internal optimization.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamToki committed Dec 6, 2024
1 parent b00b5a1 commit 2582cf7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions PROJECT/scripts/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@
// Background
function ChangeBgImage(Value) {
if(Value != "") {
document.getElementById("Ctnr_BgImage").style.backgroundImage = "url(" + Value + ")";
document.getElementById("BgImage").style.backgroundImage = "url(" + Value + ")";
} else {
document.getElementById("Ctnr_BgImage").style.backgroundImage = "";
document.getElementById("BgImage").style.backgroundImage = "";
}
}
function ChangeImage(ID, Value) {
Expand Down
10 changes: 5 additions & 5 deletions PROJECT/styles/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
#Html.Cheat {
font-style: oblique 15deg !important;
}
#Ctnr_BgImage {
#BgImage {
position: fixed; top: 0; left: 0; z-index: -1;
width: 100%; height: 100vh;
background-color: #808080; background-image: url(../images/Background.jpg); background-attachment: fixed; background-position: top center; background-size: cover; background-repeat: no-repeat;
}
#Ctnr_BgImage.Blur {
#BgImage.Blur {
filter: blur(10px);
}

Expand Down Expand Up @@ -797,7 +797,7 @@
// These should be configured in style.css.
} */
/* @media (max-aspect-ratio: 0.999) {
#Ctnr_BgImage {
#BgImage {
background-image: url(../images/Background_Narrow.jpg);
}
} */
Expand All @@ -816,10 +816,10 @@
section.DebugOutline {
outline: 3px dashed #000000;
}
.ItemGroup.DebugOutline, .Viewport.DebugOutline {
.ItemGroup.DebugOutline, .Viewport.DebugOutline, .Window.DebugOutline {
outline: 3px solid #FF8080;
}
.Item.DebugOutline, div.DebugOutline {
.Item.DebugOutline, .Ctnr.DebugOutline {
outline: 3px dashed #FF0000;
}
.CtrlGroup.DebugOutline, .DropctrlGroup.DebugOutline {
Expand Down
4 changes: 2 additions & 2 deletions PROJECT/styles/common_Dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@
section.DebugOutline {
outline: 3px dashed #FFFFFF;
}
.ItemGroup.DebugOutline, .Viewport.DebugOutline {
.ItemGroup.DebugOutline, .Viewport.DebugOutline, .Window.DebugOutline {
outline: 3px solid #C00000;
}
.Item.DebugOutline, div.DebugOutline {
.Item.DebugOutline, .Ctnr.DebugOutline {
outline: 3px dashed #FF6060;
}
.CtrlGroup.DebugOutline, .DropctrlGroup.DebugOutline {
Expand Down
4 changes: 2 additions & 2 deletions PROJECT/styles/common_Genshin.css
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@
section.DebugOutline {
outline: 3px dashed #FFFFFF;
}
.ItemGroup.DebugOutline, .Viewport.DebugOutline {
.ItemGroup.DebugOutline, .Viewport.DebugOutline, .Window.DebugOutline {
outline: 3px solid #C00000;
}
.Item.DebugOutline, div.DebugOutline {
.Item.DebugOutline, .Ctnr.DebugOutline {
outline: 3px dashed #FF6060;
}
.CtrlGroup.DebugOutline, .DropctrlGroup.DebugOutline {
Expand Down

0 comments on commit 2582cf7

Please sign in to comment.