refactor RuleMatchesTable

This commit:
- add two new base CSS utility classes
- stores the results of parsing in sessionStorage for reuse
- add a new settings option `Show column filters`
- replaces ../../../ with a path shortcut
This commit is contained in:
Soufiane Fariss
2024-08-08 07:13:42 +02:00
parent 7cb31cf23c
commit 1f6ce48e40
5 changed files with 284 additions and 166 deletions

View File

@@ -14,6 +14,14 @@ a:hover {
color: var(--primary-color);
}
.font-monospace {
font-family: monospace;
}
.cursor-default {
cursor: default;
}
/* remove the border from rows other than rule names */
.p-treetable-tbody > tr:not(:is([aria-level="1"])) > td {
border: none !important;