File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
14
## [ 1.0.18] 2024-04-09
4
15
### Changes
5
16
Original file line number Diff line number Diff line change @@ -199,6 +199,33 @@ $ celery -A apps.tasks worker -l info -B
199
199
200
200
<br />
201
201
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
+
202
229
## Codebase
203
230
204
231
The project is coded using a simple and intuitive structure presented below:
You can’t perform that action at this time.
0 commit comments