diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-11 22:45:05 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-11 22:51:23 +0100 |
| commit | c0befbd02559591b0c2871ea9cef1e4d913b9ef6 (patch) | |
| tree | 60c6a6fbc2f7145499ee9cbe0ab3ad6f7cf73b64 /app/assets | |
| parent | 2a4fedb96791cd80bd6092a0b508f265e4d35348 (diff) | |
| download | operum-c0befbd02559591b0c2871ea9cef1e4d913b9ef6.tar.gz operum-c0befbd02559591b0c2871ea9cef1e4d913b9ef6.zip | |
Allow searching from a given tag
This feature is useful if you want to have a quick search on how many
resources apply for a single tag.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'app/assets')
| -rw-r--r-- | app/assets/stylesheets/tags.css | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/app/assets/stylesheets/tags.css b/app/assets/stylesheets/tags.css index bcf74cf..6d7e725 100644 --- a/app/assets/stylesheets/tags.css +++ b/app/assets/stylesheets/tags.css @@ -16,10 +16,19 @@ .tag-container { display: flex; align-items: flex-start; -} -.tag-container .name { - flex-grow: 1; + .name { + flex-grow: 1; + } + + .name a { + text-decoration: none; + color: var(--text) !important; + } + + .name a:hover { + text-decoration: underline; + } } .tag-container .action { |
