Skip to content

Commit

Permalink
fix w3c validator errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt307082 committed Aug 8, 2024
1 parent fd57af0 commit 1ab4348
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion css/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,7 @@ img.app-lock-icon {

.text-info {
margin-left: 1rem;
color: rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important;
color: rgba(var(--bs-info-rgb),var(--bs-text-opacity),0,0)!important;
}

.abccreatedesktopstatus {
Expand Down
6 changes: 3 additions & 3 deletions css/loginScreen.less
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@
}

#loginScreen .card-body.mb-4.shadow-sm {
padding: none;
padding: 0;
background-color: @secondary;
}

Expand All @@ -467,7 +467,7 @@
}

#loginScreen #card-head {
background-color: '#474B45';
background-color: #474B45;
}

#loginScreen #connectGP #connectOAuth #card #card-body #col .img {
Expand All @@ -486,7 +486,7 @@

.btn-primary {
background-color: @tertiary;
border-color: none;
border-style: none;
}

.card-header {
Expand Down
4 changes: 2 additions & 2 deletions css/settings_parts/system.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
display: none;
}

#system-tab-switch-buttons {
#system-tab-switch-buttons, #screenColor-tab-switch-buttons {
height: 45px;
padding-bottom: 10px;
}
Expand Down Expand Up @@ -37,7 +37,7 @@
margin-top: 15px;
}

#settings-window #system-tab #overview span {
#settings-window #system-tab #system-overview span {
display: block;
padding-top: 5px;
-webkit-user-select: initial;
Expand Down
6 changes: 3 additions & 3 deletions index.mustache.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ <h4 id="cookietitle">Cookies policy</h4>
html attributes which attempt to disable text suggestions on the
on-screen keyboard. Let's hope Chrome implements the ime-mode
style for example -->
<textarea id="noVNC_keyboardinput" autocapitalize="off" autocomplete="off" spellcheck="false" enterkeyhint="Enter" tabindex="-1"></textarea>
<textarea id="noVNC_keyboardinput" autocapitalize="off" autocomplete="off" spellcheck="false" enterkeyhint="enter" tabindex="-1"></textarea>
<div style="display: none;" id="loader">
<div id="dot-container">
<noscript>
Expand Down Expand Up @@ -894,7 +894,7 @@ <h6 id="settings-system-view-infos-user-container">UserContainer</h6>
</div>
</div>
<div class="d-none container" id="settings-system-view-user-container">
<div id="overview" class="row"></div>
<div id="system-overview" class="row"></div>
</div>
<div class="d-none container" id="settings-system-view-display">
<div class="row">
Expand Down Expand Up @@ -1130,7 +1130,7 @@ <h6 id="settings-location-server-location">Server location</h6>
<!-- ScreenColor tab start -->
<div class="tab" id="screen-background-tab" data-first_show=1>
<br>
<div id="system-tab-switch-buttons" class="d-flex justify-content-center max-size">
<div id="screenColor-tab-switch-buttons" class="d-flex justify-content-center max-size">
<div id="buttons-screen-background" class="d-flex btn-group btn-group-toggle" >
<input type="radio" class="btn-check" name="options" id="settings-screen-background-colors-btn-input" autocomplete="off" checked>
<label id="settings-screen-background-colors-btn" class="btn btn-secondary btn-settings-active" data-view="panel_colors" for="settings-screen-background-colors-btn-input">Colors</label>
Expand Down
4 changes: 2 additions & 2 deletions js/settings_tabs/systemStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ function getScreenInfos() {

export function init(home, tab) {
system.hide(home);
const overview = tab.querySelector('#overview');
const overview = tab.querySelector('#system-overview');

if (!firstAppear) {
system.show(tab);
return;
}

firstAppear = false;
system.removeAllChilds(document.getElementById('overview'));
system.removeAllChilds(document.getElementById('system-overview'));

launcher.getWebModulesVersion()
.then((version) => {
Expand Down

0 comments on commit 1ab4348

Please sign in to comment.