| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-06-24 | [stylelint] disable role 'no-descending-specificity' | Markus Heiser | |
| This patch disables role 'no-descending-specificity'. IMO it is better to have this rule active (see below [1]), but it is hard to rewrite the less files to pass this rule, so for the first I chose to disable this rule. --- Source order is important in CSS, and when two selectors have the same specificity, the one that occurs last will take priority. However, the situation is different when one of the selectors has a higher specificity. In that case, source order does not matter: the selector with higher specificity will win out even if it comes first. The clashes of these two mechanisms for prioritization, source order and specificity, can cause some confusion when reading stylesheets. If a selector with higher specificity comes before the selector it overrides, we have to think harder to understand it, because it violates the source order expectation. Stylesheets are most legible when overriding selectors always come after the selectors they override. That way both mechanisms, source order and specificity, work together nicely. This rule enforces that practice as best it can, reporting fewer errors than it should. It cannot catch every actual overriding selector, but it can catch certain common mistakes. [1] https://stylelint.io/user-guide/rules/list/no-descending-specificity/ Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2021-06-24 | [stylelint] simple theme: fix some errors reported by stylelint | Markus Heiser | |
| Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2021-06-24 | [fix] simple theme: use stylint to fix common lint errors | Markus Heiser | |
| This fix was autogenerated by:: npx stylelint -f unix --fix 'searx/static/themes/simple/src/less/**/*.less' Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2021-06-22 | [mod] simple theme: include fonts | Alexandre Flament | |
| "npm run webfont" to build the fonts directory. It requires fontforge and ttfautohint distro packages. partial revert of commit 7137d2893f33e9158e8563a21d9586119d175269 | |||
| 2021-06-22 | [mod] make themes.all update pygments*.less | Alexandre Flament | |
| Add a searx/static/themes/*/src/generated empty folder | |||
| 2021-06-21 | [mod] simple theme: normalize.css becomes a packages.json dependency | Alexandre Flament | |
| 2021-06-16 | [mod] simple theme: remove src/less/ion.less | Alexandre Flament | |
| This file is generated by webfont. * It is now generated as searx/static/themes/simple/ion.less * It is generated before the .less compilation. * .gitignore includes this file Add two new package depedencies: fontforge ttfautohint See utils/searx.sh | |||
| 2021-06-16 | [mod] simple theme: move source files to the src directory | Alexandre Flament | |