Skip to content

Commit a92cdab

Browse files
committed
Release v1.0.20
1 parent a008a43 commit a92cdab

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## [1.0.20] 2024-08-11
4+
### Changes
5+
6+
- Update DataTable Module
7+
- Update Charts (added filters)
8+
9+
## [1.0.19] 2024-08-04
10+
### Changes
11+
12+
- Fix #42: Fontawesome link now returning 403 Forbidden
13+
314
## [1.0.18] 2024-04-09
415
### Changes
516

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,33 @@ $ celery -A apps.tasks worker -l info -B
199199

200200
<br />
201201

202+
## Recompile SCSS
203+
204+
> Tested with `NodeJS v14.0.0`
205+
206+
The SCSS/CSS files used to style the Ui are saved in the `static/assets` directory.
207+
In order to update the Ui colors (primary, secondary) this procedure needs to be followed.
208+
209+
```bash
210+
$ yarn # install modules
211+
$ # # edit variables
212+
$ vi static/assets/scss/soft-ui-dashboard/custom/_variables.scss
213+
$ gulp # SCSS to CSS translation
214+
```
215+
216+
The `_variables.scss` content defines the `primary` and `secondary` colors:
217+
218+
```scss
219+
$primary: #cb0c9f !default; // EDIT for customization
220+
$secondary: #8392AB !default; // EDIT for customization
221+
$info: #17c1e8 !default; // EDIT for customization
222+
$success: #82d616 !default; // EDIT for customization
223+
$warning: #fbcf33 !default; // EDIT for customization
224+
$danger: #ea0606 !default; // EDIT for customization
225+
```
226+
227+
<br />
228+
202229
## Codebase
203230

204231
The project is coded using a simple and intuitive structure presented below:

0 commit comments

Comments
 (0)