Commit graph

101 commits

Author SHA1 Message Date
H. C. Kruse d379feea2c
dist: Bump version 2024-06-30 11:55:52 +02:00
H. C. Kruse 56f2a66295
fix: Fix css grid 2024-06-30 11:55:24 +02:00
H. C. Kruse aac3f78bed
Merge branch 'release/v1.2.1' 2024-06-29 11:57:12 +02:00
H. C. Kruse a39010d280
dist: Bump version 2024-06-29 11:55:45 +02:00
H. C. Kruse e30ec07aa3
feat: Allow vars in grid-template-columns
Passes the following tests:
```css
grid-template-columns: repeat(2, minmax(0, 1fr)) var(--right-rail-size);
grid-template-columns: 1fr var(--right-rail-size);
grid-template-columns: minmax(0, 1fr) var(--right-rail-size);
grid-template-columns: repeat(var(--column-foo ), minmax(0, 1fr))
```

Implements #14
2024-06-29 11:54:30 +02:00
H. C. Kruse dce7a322c6
fix: Fix @font-face rules 2024-06-29 11:54:29 +02:00
alistair3149 e7f850e301
fix: adjust-size to size-adjust
Had too much coffee
2024-06-29 11:54:28 +02:00
alistair3149 d0c790ead5
ci: remove whitespace to make CI happy 2024-06-29 11:54:27 +02:00
alistair3149 e693f9a3ec
ci: remove blank line to make CI happy 2024-06-29 11:54:27 +02:00
alistair3149 9758b27947
feat: add various new font-face rules
- adjust-size
- ascent-override
- descent-override
- font-display
- line-gap-override
2024-06-29 11:54:26 +02:00
H. C. Kruse a4ba2815a1
Merge pull request #19 from alistair3149/patch-sizeadjust
feat: add various new font-face rules
2024-06-29 10:20:09 +02:00
alistair3149 31ab387ad9
fix: adjust-size to size-adjust
Had too much coffee
2024-06-19 16:23:46 -04:00
alistair3149 0de9725d4b
ci: remove whitespace to make CI happy 2024-06-19 13:38:56 -04:00
alistair3149 23674d5dac
ci: remove blank line to make CI happy 2024-06-19 13:22:23 -04:00
alistair3149 8429ab2dc4
feat: add various new font-face rules
- adjust-size
- ascent-override
- descent-override
- font-display
- line-gap-override
2024-06-19 13:19:25 -04:00
H. C. Kruse 202add59e6
refactor: Change checking of unscoping permissions
Instead of checking the page content for a raw `wrapclass` string, look up the current revision's user and check if that user has the permission to enable un-scoping.

This _is_ expensive as each time the tag is handled, a lookup will occur.

In reference to #18
2024-03-31 20:31:55 +02:00
H. C. Kruse 3e73f15057
feat: Add backdrop-filter
Implements #16
2024-02-24 10:53:18 +01:00
H. C. Kruse d5ef84eed3 Merge tag 'v1.2.0' into develop
TemplateStylesExtender v1.2.0

This release bumps the requried PHP version to 8.0+

Additions:
- margin/padding-inline/block
- Fallback support for var()
- inset support
- RGBA support
- var() in color functions
2023-12-14 14:50:28 +01:00
H. C. Kruse d3b256f305 Merge branch 'release/v1.2.0' 2023-12-14 14:48:54 +01:00
H. C. Kruse 473f840d82 dist: Bump version to 1.2.0 2023-12-14 14:48:49 +01:00
H. C. Kruse 823336d2b5 nit: Make linter happy 2023-12-14 09:22:31 +01:00
H. C. Kruse b6a62fbfb5 fix: Fix rgba 2023-10-10 11:42:34 +02:00
H. C. Kruse 97e51afdad feat: Add color function var support
Implements #12
2023-10-10 09:42:46 +02:00
H. C. Kruse 746002bcdd feat: Add RGBA support
Implements #13
2023-10-10 09:31:25 +02:00
H. C. Kruse c134475997 feat: Add inset support
Implements #11
2023-10-10 09:24:38 +02:00
H. C. Kruse 307aa8909c refactor: Make linter happy 2023-08-18 14:37:58 +02:00
H. C. Kruse 8b834905f9 refactor: Use $GITHUB_OUTPUT 2023-08-18 14:32:19 +02:00
H. C. Kruse fccec1e4ee feat: Add lint jobs 2023-08-18 13:43:20 +02:00
H. C. Kruse b66e7c2886 refactor: Raise required php version to >=8.0 2023-08-15 12:49:04 +02:00
H. C. Kruse 81813bca52 refactor: Use DI in hooks 2023-08-11 09:39:00 +02:00
H. C. Kruse b249ebd801 feat(Var): Add fallback support for var()
e.g. `color: var( --color-base, #fff )`
2023-08-04 10:32:30 +02:00
H. C. Kruse d7e525b7af feat: Implement margin|padding-inline|block
In reference to https://www.mediawiki.org/wiki/Topic:Xm7z9eroimlh75co
2023-07-20 10:00:43 +02:00
H. C. Kruse 8053190f60 Merge tag 'v1.1.8' into develop
dist: Release v1.1.8
2023-07-19 08:41:35 +02:00
H. C. Kruse 8190c6ebfe dist: Release TemplateStylesExtender v1.1.8
This release adds support for `var` in border shorthand
2023-07-19 08:40:35 +02:00
H. C. Kruse 7654f1ecbe dist: Bump version 2023-07-19 08:40:30 +02:00
H. C. Kruse 22c9cec118
feat: Support var in border shorthand
fixes #4
2023-06-26 10:36:15 +02:00
H. C. Kruse 2173bdaa47
Merge tag 'v1.1.7' into develop
dist: Release v1.1.7
2023-04-06 20:53:26 +02:00
H. C. Kruse cf91e071a0
Merge branch 'release/v1.1.7' 2023-04-06 20:53:15 +02:00
H. C. Kruse b6d8c73892
dist: Bump version 2023-04-06 20:53:06 +02:00
H. C. Kruse 1a71b2c664
feat: Allow to specify a custom permission for css unscoping 2023-04-06 20:52:07 +02:00
H. C. Kruse 75eda85afa
Merge tag 'v1.1.6' into develop
dist: Merge develop v1.1.6
2023-02-11 12:28:08 +01:00
H. C. Kruse 805faaedc4
Merge branch 'release/v1.1.6' 2023-02-11 12:27:57 +01:00
H. C. Kruse e1cafb7bad
dist: Merge develop changes 2023-02-11 12:27:44 +01:00
H. C. Kruse 6b09dd312b
Merge tag 'v1.1.5' into develop
dist: Release v1.1.5

Fix handling of editinterface permission
Permissions are now checked during page save instead on pagedisplay
2023-02-11 11:46:57 +01:00
H. C. Kruse 8764d9f538
Merge branch 'hotfix/v1.1.5' 2023-02-11 11:46:27 +01:00
H. C. Kruse e122be3883
bug: Correctly handle editinterface permissions 2023-02-11 11:46:19 +01:00
H. C. Kruse 04e204f0c1
bug: Fix checking permissions during tag handling 2023-02-11 11:45:35 +01:00
H. C. Kruse f39205d140
Merge tag 'v1.1.4' into develop
dist: Release v1.1.4

This release fixes a bug where the `editinterface` permission was not
checked correctly
2023-02-11 08:32:51 +01:00
H. C. Kruse dd81ae9da7
Merge branch 'hotfix/v1.1.4' 2023-02-11 08:32:13 +01:00
H. C. Kruse ce31917593
bug: Fix checking of editinterface permission 2023-02-11 08:32:01 +01:00