Adapted to gitea

This commit is contained in:
2026-04-05 23:12:05 +02:00
parent e2abdc6bbe
commit b76eb76c53
37 changed files with 42000 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
// mixins shared between the our themes and the public API
// Apply styles to all text fields. Usage:
// @include ag.text-input {
// border: solid dashed red;
// }
@mixin text-input {
input[class^='ag-']:not([type]),
input[class^='ag-'][type='text'],
input[class^='ag-'][type='number'],
input[class^='ag-'][type='tel'],
input[class^='ag-'][type='date'],
input[class^='ag-'][type='datetime-local'],
textarea[class^='ag-'] {
@content;
}
}