Skip to content

Commit

Permalink
make input placeholder colour lighter in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Sep 26, 2024
1 parent bfe191f commit b720b96
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 49 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ All notable changes to `homebridge-config-ui-x` will be documented in this file.
- offer to unpair child bridges when uninstalling plugins
- offer to set up a child bridge immediately after configuring a new plugin
- lang: clarify cached is removed when unpairing bridge
- make input placeholder colour lighter in light mode
- updates to `pl` language file (#2181, #2189) (@mkz212)
- updates to `th` language file (#2182) (@tomzt)

Expand Down
58 changes: 29 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@
"unzipper": "0.12.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@antfu/eslint-config": "^3.7.2",
"@nestjs/testing": "^10.4.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.0",
"@types/node": "^22.7.2",
"@types/node-schedule": "^2.1.7",
"@types/passport-jwt": "^4.0.1",
"@types/semver": "^7.5.8",
Expand Down
45 changes: 29 additions & 16 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@types/emoji-js": "^3.5.2",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.0",
"@types/node": "^22.7.2",
"@types/qrcode": "^1.5.5",
"@types/semver": "^7.5.8",
"@types/socket.io-client": "^3.0.0",
Expand Down
7 changes: 6 additions & 1 deletion ui/src/app/modules/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,12 @@ <h5 class="primary-text">
<li class="list-group-item d-block d-md-flex justify-content-between align-items-center">
<span>
<span class="text-monospace">DEBUG</span><br>
<small class="grey-text pr-2">{{ 'settings.service.debug_tooltip' | translate }}</small>
<small class="grey-text pr-2">
{{ 'settings.service.debug_tooltip' | translate }}
<a href="https://github.com/homebridge/homebridge-config-ui-x/wiki/Debug-Common-Values" target="_blank">
{{ 'form.button_more_info' | translate }} <i class="fa fa/fw fas fa-fw fa-external-link-alt"></i>
</a>
</small>
</span>
<div class="my-3 my-md-0 pl-0 pl-md-5 w-auto">
<input class="form-control custom-input form-control-sm resp-input" formControlName="ENV_DEBUG" type="text"
Expand Down
5 changes: 5 additions & 0 deletions ui/src/scss/themes/themes-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
background-color: $primary-dark !important;
}

.form-control::placeholder {
color: #cdcdcd !important;
opacity: 1 !important;
}

.hb-npm-search {
border: 0 !important;
background-color: #eeeeee !important;
Expand Down

0 comments on commit b720b96

Please sign in to comment.