diff options
| -rw-r--r-- | Pages/Component/MediaTagTable.razor | 12 | ||||
| -rw-r--r-- | Pages/Component/MediaTagTable.razor.css | 8 | ||||
| -rw-r--r-- | Todo.md | 3 |
3 files changed, 16 insertions, 7 deletions
diff --git a/Pages/Component/MediaTagTable.razor b/Pages/Component/MediaTagTable.razor index ce42e48..dedf865 100644 --- a/Pages/Component/MediaTagTable.razor +++ b/Pages/Component/MediaTagTable.razor @@ -19,11 +19,13 @@ } </td> <td> - @if(e.isImplicit) { - <i>@e.tagDef.Name</i> - } else { - @e.tagDef.Name - } + <a href="/Gallery?q=@(e.tagDef.Name)"> + @if(e.isImplicit) { + <i>@e.tagDef.Name</i> + } else { + @e.tagDef.Name + } + </a> </td> <td> @if(!e.isImplicit) { diff --git a/Pages/Component/MediaTagTable.razor.css b/Pages/Component/MediaTagTable.razor.css index dcf5e09..3b5cffe 100644 --- a/Pages/Component/MediaTagTable.razor.css +++ b/Pages/Component/MediaTagTable.razor.css @@ -1,3 +1,11 @@ td { font-size: 8pt; } + +td:nth-child(2) a { + color: #fff; +} + +td:nth-child(2) a:hover { + color: #999; +} @@ -12,10 +12,9 @@ - Video support - User/security support -#Long-term Features +# Long-term Features - Search engine includes implicit tags - Periodic thumbnail scrubbing - - Search tags from ViewMedia page - Loading animations - Keyboard shortcuts - Find source |
