mirror of https://github.com/sualko/cloud_bbb
Merge pull request #294 from arawa/fix/style_lint_and_typescript
fix: style lint warnings and typescript compiler need upgradepull/278/merge
commit
e5bfcc8ec8
|
@ -109,7 +109,7 @@
|
||||||
"stylelint-config-recommended-scss": "^5.0.2",
|
"stylelint-config-recommended-scss": "^5.0.2",
|
||||||
"stylelint-scss": "^4.2.0",
|
"stylelint-scss": "^4.2.0",
|
||||||
"ts-loader": "^9.2.8",
|
"ts-loader": "^9.2.8",
|
||||||
"typescript": "^4.0.2",
|
"typescript": "^4.9.3",
|
||||||
"url-loader": "^4.0.0",
|
"url-loader": "^4.0.0",
|
||||||
"webpack": "^5.70.0",
|
"webpack": "^5.70.0",
|
||||||
"webpack-cli": "^4.9.2",
|
"webpack-cli": "^4.9.2",
|
||||||
|
|
|
@ -37,6 +37,36 @@
|
||||||
opacity: 0.6;
|
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 {
|
#bbb-root, #bbb-app {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--color-main-background);
|
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-react-root,
|
||||||
#bbb-restrictions {
|
#bbb-restrictions {
|
||||||
#bbb-warning,
|
#bbb-warning,
|
||||||
|
@ -194,6 +220,7 @@ pre {
|
||||||
padding: 0 6px;
|
padding: 0 6px;
|
||||||
position: relative;
|
position: relative;
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
border-bottom: 1px solid var(--color-border-dark);
|
||||||
|
|
||||||
& > form {
|
& > form {
|
||||||
margin: -10px;
|
margin: -10px;
|
||||||
|
@ -298,39 +325,9 @@ pre {
|
||||||
}
|
}
|
||||||
|
|
||||||
.bbb-simple-menu {
|
.bbb-simple-menu {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bbb-input-container {
|
.bbb-input-container {
|
||||||
display: flex;
|
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue