Merge pull request #294 from arawa/fix/style_lint_and_typescript

fix: style lint warnings and typescript compiler need upgrade
pull/298/head
Thibaut 2024-10-23 10:49:14 +02:00 committed by GitHub
commit e5bfcc8ec8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 33 additions and 36 deletions

View File

@ -109,7 +109,7 @@
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-scss": "^4.2.0",
"ts-loader": "^9.2.8",
"typescript": "^4.0.2",
"typescript": "^4.9.3",
"url-loader": "^4.0.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",

View File

@ -37,6 +37,36 @@
opacity: 0.6;
}
.bbb-qrcode-container {
display: block;
height: 34px;
width: 34px;
margin: 3px;
position: relative;
cursor: zoom-in;
canvas {
max-width: 100%;
max-height: 100%;
position: absolute;
top: 0;
right: 0;
}
input[type="checkbox"] {
display: none;
&:checked + canvas {
max-width: none;
max-height: none;
box-shadow: 0 0 10px;
box-shadow: 0 0 5px var(--color-box-shadow);
cursor: zoom-out;
border: 5px solid #fff;
}
}
}
#bbb-root, #bbb-app {
width: 100%;
background-color: var(--color-main-background);
@ -95,10 +125,6 @@ pre {
}
}
#bbb-react-root table tbody tr td {
border-bottom: 1px solid var(--color-border-dark);
}
#bbb-react-root,
#bbb-restrictions {
#bbb-warning,
@ -194,6 +220,7 @@ pre {
padding: 0 6px;
position: relative;
display: table-cell;
border-bottom: 1px solid var(--color-border-dark);
& > form {
margin: -10px;
@ -298,39 +325,9 @@ pre {
}
.bbb-simple-menu {
min-width: auto;
min-width: auto;
}
.bbb-input-container {
display: flex;
}
.bbb-qrcode-container {
display: block;
height: 34px;
width: 34px;
margin: 3px;
position: relative;
cursor: zoom-in;
canvas {
max-width: 100%;
max-height: 100%;
position: absolute;
top: 0;
right: 0;
}
input[type="checkbox"] {
display: none;
&:checked + canvas {
max-width: none;
max-height: none;
box-shadow: 0 0 10px;
box-shadow: 0 0 5px var(--color-box-shadow);
cursor: zoom-out;
border: 5px solid #fff;
}
}
}