Skip to content

Commit

Permalink
fix: style lint warnings and typescript compiler need upgrade
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastien Marinier <[email protected]>
  • Loading branch information
smarinier committed Oct 22, 2024
1 parent 7233d21 commit 323e9df
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 36 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
67 changes: 32 additions & 35 deletions ts/Manager/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -194,6 +220,7 @@ pre {
padding: 0 6px;
position: relative;
display: table-cell;
border-bottom: 1px solid var(--color-border-dark);

& > form {
margin: -10px;
Expand Down Expand Up @@ -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;
}
}
}

0 comments on commit 323e9df

Please sign in to comment.