diff options
| author | 2025-11-23 13:15:10 +0100 | |
|---|---|---|
| committer | 2025-11-23 13:15:10 +0100 | |
| commit | 1c92d55917029d291d00009b674d8552934a69ec (patch) | |
| tree | 688d02d8495d29f2b23560b150df3031f358c25d /lib/composer.json | |
| parent | a7579e0cf5717e86fe954bd75f2625f8131120f7 (diff) | |
Use native CSS instead of SCSS (#8241)
I was tired of having to handle the SCSS themes differently.
fix https://github.com/FreshRSS/FreshRSS/issues/7611
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/8200
Convert Ansum and Mapco themes from SCSS to native CSS.
The changes are actually quite limited (mostly changing the syntax of the variables and a few other things)
Require support for:
* https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Nesting
* https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/Nesting_selector
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix
SCSS and SAAS tools and references are also removed.
Tests welcome.
The styles are left as individual CSS files as designed originally in SCSS. I expect proper HTTP caching and HTTP/2 to be sufficient instead of aggregating back to a single CSS, but might be done in another PR if needed.
At the same time, fixed the fact that we had various whitespace styles in our JSON files, in particular in those themes, sometimes with 2 spaces, or 4 spaces, or tabs. Use tabs everywhere as defined in editorconfig.
I would like to merge this one first to complete https://github.com/FreshRSS/FreshRSS/pull/8230
* RTLCSS stringMap
https://github.com/FreshRSS/FreshRSS/pull/8241#discussion_r2553175514
https://github.com/MohammadYounes/rtlcss/issues/108#issuecomment-347033134
Diffstat (limited to 'lib/composer.json')
| -rw-r--r-- | lib/composer.json | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/lib/composer.json b/lib/composer.json index bda192099..efca72472 100644 --- a/lib/composer.json +++ b/lib/composer.json @@ -1,29 +1,29 @@ { - "name": "freshrss.org/freshrss", - "description": "A free, self-hostable aggregator", - "type": "project", - "homepage": "https://freshrss.org/", - "license": "AGPL-3.0", - "repositories": [ - { - "type": "git", - "url": "https://github.com/FreshRSS/simplepie.git" - } - ], - "require": { - "marienfressinaud/lib_opml": "0.5.1", - "phpgt/cssxpath": "v1.4.0", - "phpmailer/phpmailer": "7.0.0", - "simplepie/simplepie": "dev-freshrss#e7b26b4f01d377dc8174d5d4aee961604534d065" - }, - "config": { - "sort-packages": true, - "vendor-dir": "./" - }, - "scripts": { - "post-update-cmd": [ - "git clean -d -ff -X .", - "find . -name '.git' -type d -exec rm -rf {} + || true" - ] - } + "name": "freshrss.org/freshrss", + "description": "A free, self-hostable aggregator", + "type": "project", + "homepage": "https://freshrss.org/", + "license": "AGPL-3.0", + "repositories": [ + { + "type": "git", + "url": "https://github.com/FreshRSS/simplepie.git" + } + ], + "require": { + "marienfressinaud/lib_opml": "0.5.1", + "phpgt/cssxpath": "v1.4.0", + "phpmailer/phpmailer": "7.0.0", + "simplepie/simplepie": "dev-freshrss#e7b26b4f01d377dc8174d5d4aee961604534d065" + }, + "config": { + "sort-packages": true, + "vendor-dir": "./" + }, + "scripts": { + "post-update-cmd": [ + "git clean -d -ff -X .", + "find . -name '.git' -type d -exec rm -rf {} + || true" + ] + } } |
