Direct import of PR#4978 Update web UI for new result reports. For operations with fatal errors, write logs to same operation ID. Test that Interrupted flag is correct in RunScriptTests. Update backup log display for new result reporting. Hide file statistics for fatal errors and change fatal icon.
16 lines
423 B
Markdown
16 lines
423 B
Markdown
## Update style sheets
|
|
|
|
Install [less CSS](https://lesscss.org) and minify plugin:
|
|
```
|
|
npm install less -g
|
|
npm install -g less-plugin-clean-css
|
|
```
|
|
|
|
Compile styles:
|
|
```
|
|
cd webroot/ngax
|
|
lessc less/dark.less styles/dark.css --clean-css -m=always
|
|
lessc less/default.less styles/default.css --clean-css -m=always
|
|
```
|
|
|
|
There are warnings about math=always, but to fix those all divisions in `.less` need to be wrapped in parens. |