Skip to content

Commit

Permalink
adjust dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
f-w committed Dec 27, 2024
1 parent a837bdc commit 6d7e53b
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion client/src/components/shared/combo-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
</v-expansion-panel-title>
<v-expansion-panel-text>
<v-card>
<v-card-text class="bg-grey-lighten-3">
<v-card-text>
<slot
name="newItem"
:submitNewPanel="submitNewPanel"
Expand Down
18 changes: 18 additions & 0 deletions client/src/components/shared/editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ export default defineComponent({
height: auto !important;
}

:root {
--jd-color-background-default: rgb(var(--v-theme-background));
--jd-color-text-icons: rgb(var(--v-theme-text));
}

#nb-item-editor {
@import (less) 'spectre.css/dist/spectre.css';
select {
Expand All @@ -119,5 +124,18 @@ export default defineComponent({
.btn {
min-width: unset;
}
div[data-schematype]:not([data-schematype='object']):hover {
background-color: unset;
}
.form-select,
.form-input,
.ace-tm,
.je-modal {
background-color: rgb(var(--v-theme-background)) !important;
color: initial !important;
}
}
.jodit-dialog__panel {
background-color: rgb(var(--v-theme-background)) !important;
}
</style>
4 changes: 2 additions & 2 deletions docs/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ Installation approach differs by your purpose
- wait till console displays `Server is running at http://0.0.0.0:3000/api`
- browse to http://localhost:3000

The above commands installs the _main_ version, i.e. main branch tip of _NotifyBC_ GitHub repository. To install a specific version, say _v6.0.2_, run
The above commands installs the _main_ version, i.e. main branch tip of _NotifyBC_ GitHub repository. To install a specific version, say _v6.0.3_, run

```sh
git checkout tags/v6.0.2 -b v6.0.2
git checkout tags/v6.0.3 -b v6.0.3
```

after `cd NotifyBC`. A list of versions can be found [here](https://github.com/bcgov/NotifyBC/tags).
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/miscellaneous/developer-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ You can now browse to the local docs site [http://localhost:8080/NotifyBC](http:

1. update _version_ in _package.json_
2. run `npm i`
3. globally find and replace older version number referenced in _docs_ folder
3. globally find and replace older version number referenced in _docs_ folder wherever appropriate
4. update _version_ _appVersion_ in _helm/Chart.yaml_ (major/minor only)
5. update [What's new](../getting-started/what's-new.md) (major/minor only)
6. create a new Github release
4 changes: 2 additions & 2 deletions docs/docs/miscellaneous/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ After above changes are addressed, to upgrade _NotifyBC_ to v6,

Replace

- _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.2_.
- _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.3_.

- if _NotifyBC_ is deployed to Kubernetes using Helm,
1. backup MongoDB database
Expand All @@ -102,7 +102,7 @@ After above changes are addressed, to upgrade _NotifyBC_ to v6,
helm upgrade <release-name> -f helm/platform-specific/<platform>.yaml -f helm/values.local.yaml helm
```
Replace
- _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.2_.
- _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.3_.
- \<release-name\> with installed helm release name
- \<platform\> with _openshift_ or _aks_ depending on your platform

Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "notify-bc",
"version": "6.0.2",
"version": "6.0.3",
"dbSchemaVersion": "0.9.0",
"description": "A versatile notification API server",
"author": "f-w",
Expand Down

0 comments on commit 6d7e53b

Please sign in to comment.