chore: adjust stylesheets to new codestyle

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/53222/head
Ferdinand Thiessen 2025-05-31 16:02:08 +07:00
parent a9c97c9931
commit 0beef939e1
6 changed files with 9 additions and 7 deletions

@ -364,7 +364,7 @@ $comment-padding: 10px;
&__message {
white-space: pre-wrap;
word-break: break-word;
word-break: normal;
max-height: 70px;
overflow: hidden;
margin-top: -6px;

@ -56,6 +56,7 @@ form #selectPartStatForm label span {
display: block;
line-height: normal;
}
form #selectPartStatForm label.ui-state-hover,
form #selectPartStatForm label.ui-state-active {
color:#000;

@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#body-login .error-broken-link{
text-align:left;color:#fff;
text-align:start;color:#fff;
}
#body-login .error-broken-link ul{

@ -33,7 +33,6 @@
letter-spacing:normal;
line-break:auto;
line-height:1.6;
text-align:left;
text-align:start;
text-decoration:none;
text-shadow:none;

@ -202,10 +202,12 @@ select[multiple=multiple] + button {
width: 16px;
vertical-align: text-bottom;
}
.ldap_config_state_indicator_sign.success {
background: #37ce02;
border-radius: 8px;
}
.ldap_config_state_indicator_sign.error {
background: #ce3702;
}

@ -13,10 +13,10 @@
"postbuild": "build/npm-post-build.sh",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern",
"lint:fix": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern --fix",
"stylelint": "stylelint '{apps,core}/**/*.{scss,vue}'",
"stylelint:fix": "stylelint --fix '{apps,core}/**/*.{scss,vue}'",
"lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern",
"lint:fix": "npm run lint -- --fix",
"stylelint": "stylelint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"'apps/$appdir/**/*.{scss,vue}' \"; fi; done) 'core/**/*.{scss,vue}'",
"stylelint:fix": "npm run stylelint -- --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage --reporter=default --reporter=junit --outputFile=test-report.junit.xml",