diff --git a/public/css/modules/globals.css b/public/css/modules/globals.css
index e4fcb88..ec28826 100644
--- a/public/css/modules/globals.css
+++ b/public/css/modules/globals.css
@@ -66,7 +66,7 @@ table {
-webkit-border-vertical-spacing: 0px;
}
-table td {
+table td, table th {
padding: 4px 12px 4px 5px;
vertical-align: middle;
border: 0px black solid;
@@ -146,6 +146,15 @@ button.selective.active {
color: var(--accent-text);
}
+button.with_icon {
+ display: flex;
+ align-items: center;
+}
+
+button.with_icon i {
+ margin-left: 8px;
+}
+
input[type="text"],
input[type="password"],
input[type="number"] {
@@ -234,6 +243,7 @@ th.sort-desc:after {content: "\25bc";font-size: 0.7em;padding-left: 3px;line-hei
display: inline-block;
background-color: var(--accent-color);
color: var(--accent-text);
+ cursor: pointer;
}
.fab i{
font-size: 24px;
diff --git a/public/css/modules/stackedTabs.css b/public/css/modules/stackedTabs.css
index 1ab5299..b78dcf5 100644
--- a/public/css/modules/stackedTabs.css
+++ b/public/css/modules/stackedTabs.css
@@ -4,3 +4,14 @@
padding: 220px 24px 8px;
border-radius: 8px 8px 0px 0px;
}
+
+.image_header header h1,
+.image_header header h2{
+ margin: 0px;
+}
+
+.image_header header h2{
+ margin: 0px;
+ font-size: 18px;
+ margin-bottom: 12px;
+}
diff --git a/public/index.html b/public/index.html
index 91f0dc9..d0c1250 100644
--- a/public/index.html
+++ b/public/index.html
@@ -482,6 +482,7 @@
{{ title }}
{{data.title}}
|
@@ -512,15 +513,15 @@ {{ title }}
- {{ title }} explicit
- {{ metadata }}{{ release_date }}
+ {{ title }} explicit
+ {{ metadata }}{{ release_date }}
- |
- |
+ |
+ |
@@ -528,7 +529,7 @@ {{ metadata }}{{ rele
play_arrow |
{{ track.track_position }} |
- explicit{{ track.title }} explicit{{ track.title }} {{track.title_version}} |
{{ track.artist.name }} |
@@ -549,9 +550,9 @@ {{ metadata }}{{ rele
diff --git a/public/js/app.js b/public/js/app.js
index 9389674..cb62e0a 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -434,7 +434,7 @@ socket.on('show_artist', function (data) {
artistTab.head = [
{ title: 'Title', sortKey: 'title' },
{ title: 'Release Date', sortKey: 'release_date' },
- { title: '', width: '56px' }
+ { title: '', width: '32px' }
]
if (_.isEmpty(data.releases)) {
artistTab.body = null
@@ -512,7 +512,7 @@ window.search = function (type) {
}
window.scrolledSearch = function (type) {
- query = MainSearch.results.query
+ let query = MainSearch.results.query
if (MainSearch.results[type + 'Tab'].next < MainSearch.results[type + 'Tab'].total) {
socket.emit('search', {
term: query,