diff options
Diffstat (limited to 'src/static')
| -rw-r--r-- | src/static/css/site.css | 4 | ||||
| -rw-r--r-- | src/static/js/client-util.js | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 347881a2..a78a31fb 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -1488,6 +1488,10 @@ li:not(:first-child:last-child) .tooltip:where(:not(.cover-artwork .tooltip)), font-size: 0.9em; } +.rerelease-tooltip .not-credited-on-first-release { + opacity: 0.9; +} + .content-tooltip-guy .hoverable a { text-decoration-color: transparent; text-decoration-style: dotted; diff --git a/src/static/js/client-util.js b/src/static/js/client-util.js index 764c1480..74d63ad6 100644 --- a/src/static/js/client-util.js +++ b/src/static/js/client-util.js @@ -97,12 +97,12 @@ export function getVisuallyContainingElement(child) { const getLinkHref = (type, directory) => rebase(`${type}/${directory}`); */ -export const openAlbum = d => rebase(`album/${d}`); -export const openArtTag = d => rebase(`tag/${d}`); -export const openArtist = d => rebase(`artist/${d}`); -export const openFlash = d => rebase(`flash/${d}`); -export const openGroup = d => rebase(`group/${d}`); -export const openTrack = d => rebase(`track/${d}`); +export const openAlbum = d => rebase(`album/${d}/`); +export const openArtTag = d => rebase(`tag/${d}/`); +export const openArtist = d => rebase(`artist/${d}/`); +export const openFlash = d => rebase(`flash/${d}/`); +export const openGroup = d => rebase(`group/${d}/`); +export const openTrack = d => rebase(`track/${d}/`); // TODO: This should also use urlSpec. |