Skip to content

Commit c88bf5e

Browse files
authored
UI fixes (hestiacp#3146)
- Fix modals not working - Fix page scrolling on mobile when "Advanced Options" tapped - Fix some ESLint warnings - Fix spinner alignment - Improve debug panel toggle - Tidy some CSS - Bump some Node deps
1 parent 7ef8159 commit c88bf5e

26 files changed

+643
-627
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
},
2424
"devDependencies": {
2525
"@prettier/plugin-php": "^0.19.2",
26-
"@typescript-eslint/eslint-plugin": "^5.46.0",
27-
"@typescript-eslint/parser": "^5.46.0",
26+
"@typescript-eslint/eslint-plugin": "^5.46.1",
27+
"@typescript-eslint/parser": "^5.46.1",
2828
"cssnano": "^5.1.14",
2929
"eslint": "^8.29.0",
3030
"eslint-config-prettier": "^8.5.0",
3131
"eslint-plugin-editorconfig": "^4.0.2",
3232
"husky": "^8.0.2",
3333
"lint-staged": "^13.1.0",
3434
"markdownlint-cli2": "^0.5.1",
35-
"postcss": "^8.4.19",
35+
"postcss": "^8.4.20",
3636
"postcss-cli": "^10.1.0",
3737
"postcss-import": "^15.1.0",
3838
"postcss-preset-env": "^7.8.3",
@@ -45,7 +45,7 @@
4545
"stylelint-config-prettier": "^9.0.4",
4646
"stylelint-config-standard": "^29.0.0",
4747
"typescript": "^4.9.4",
48-
"vitepress": "1.0.0-alpha.30",
48+
"vitepress": "1.0.0-alpha.31",
4949
"vue": "^3.2.45"
5050
}
5151
}

web/css/src/themes/dark.css

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -185,25 +185,6 @@ strong {
185185
}
186186
}
187187

188-
/* Inline alerts
189-
========================================================================== */
190-
191-
.inline-danger {
192-
color: #f33;
193-
}
194-
195-
.inline-success {
196-
color: #53ba55;
197-
198-
& a {
199-
color: #fff;
200-
201-
&:hover {
202-
color: #ff3478;
203-
}
204-
}
205-
}
206-
207188
/* Toolbar
208189
========================================================================== */
209190

@@ -962,6 +943,25 @@ form#vstobjects.suspended {
962943
color: #fff;
963944
}
964945

946+
/* Inline alerts
947+
========================================================================== */
948+
949+
.inline-danger {
950+
color: #f33;
951+
}
952+
953+
.inline-success {
954+
color: #53ba55;
955+
956+
& a {
957+
color: #fff;
958+
959+
&:hover {
960+
color: #ff3478;
961+
}
962+
}
963+
}
964+
965965
/* Debug panel
966966
========================================================================== */
967967

0 commit comments

Comments
 (0)