fix border

This commit is contained in:
ReznoRMichael 2021-08-01 21:25:14 +02:00
parent 2aeac63a60
commit d3b76ef24b
6 changed files with 9 additions and 4 deletions

View file

@ -7089,6 +7089,7 @@ function GenerateInnerHTML(db) {
function PageSwitchTab(clickedButton) {
var sectionList = document.querySelectorAll(".large-section");
var buttonList = document.querySelectorAll(".tab-switch");
/* Make Active Tab Visible */
for (var i = 0, length = sectionList.length; i < length; i++) {
/* Other tabs except the clicked one */
@ -7104,6 +7105,8 @@ function PageSwitchTab(clickedButton) {
}
}
}
/* Make Active Button stand out */
for (var _i5 = 0, _length = buttonList.length; _i5 < _length; _i5++) {
/* Other buttons except the clicked one */

File diff suppressed because one or more lines are too long

View file

@ -487,7 +487,7 @@ input[type="file"] {
.tab-active {
background-color: rgb(0, 180, 156);
color: rgb(0, 0, 0);
border: 2px solid rgb(0, 180, 156);
border: 2px solid rgba(0, 180, 156, 0);
}
.tab-switch:focus {

File diff suppressed because one or more lines are too long

View file

@ -379,7 +379,7 @@ input[type="file"] {
.tab-active {
background-color: rgb(0, 180, 156);
color: rgb(0, 0, 0);
border: 2px solid rgb(0, 180, 156);
border: 2px solid rgba(0, 180, 156, 0);
}
.tab-switch:focus {

View file

@ -611,6 +611,7 @@ function PageSwitchTab(clickedButton) {
let sectionList = document.querySelectorAll(".large-section");
let buttonList = document.querySelectorAll(".tab-switch");
/* Make Active Tab Visible */
for (let i = 0, length = sectionList.length; i < length; i++) {
/* Other tabs except the clicked one */
@ -629,6 +630,7 @@ function PageSwitchTab(clickedButton) {
}
}
/* Make Active Button stand out */
for (let i = 0, length = buttonList.length; i < length; i++) {
/* Other buttons except the clicked one */