mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
removed interiorLink class
This commit is contained in:
parent
686e5cfa86
commit
c524363843
2 changed files with 4 additions and 9 deletions
|
@ -91,11 +91,6 @@ pre, textarea.pre {
|
||||||
background-attachment: fixed!important;
|
background-attachment: fixed!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.libraryPage .interiorLink {
|
|
||||||
color: #2489ce;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Header
|
Header
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -233,10 +233,10 @@
|
||||||
html += ' / ';
|
html += ' / ';
|
||||||
}
|
}
|
||||||
|
|
||||||
html += '<a class="interiorLink" href="#">' + item.Genres[i] + '</a>';
|
html += '<a href="#">' + item.Genres[i] + '</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
elem.html(html);
|
elem.html(html).trigger('create');
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
@ -259,10 +259,10 @@
|
||||||
html += ' / ';
|
html += ' / ';
|
||||||
}
|
}
|
||||||
|
|
||||||
html += '<a class="interiorLink" href="#">' + item.Studios[i] + '</a>';
|
html += '<a href="#">' + item.Studios[i] + '</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
elem.html(html);
|
elem.html(html).trigger('create');
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue