summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authortechmetx11 <techmetx11@disroot.org>2023-01-16 13:58:05 +0100
committertechmetx11 <techmetx11@disroot.org>2023-01-16 14:04:20 +0100
commitfe5b81f2c3caf37e10fd3284a49146e7aefb1530 (patch)
treebdbd2e43a957cf94de431fe6258b137ed08e143b /assets
parent1b5fbfc13efa9eace904d24dc89b7fdf72c1ce52 (diff)
downloadinvidious-fe5b81f2c3caf37e10fd3284a49146e7aefb1530.tar.gz
invidious-fe5b81f2c3caf37e10fd3284a49146e7aefb1530.tar.bz2
invidious-fe5b81f2c3caf37e10fd3284a49146e7aefb1530.zip
Add support for multiple songs
Diffstat (limited to 'assets')
-rw-r--r--assets/css/default.css35
1 files changed, 25 insertions, 10 deletions
diff --git a/assets/css/default.css b/assets/css/default.css
index 80bf6a20..4ec6f720 100644
--- a/assets/css/default.css
+++ b/assets/css/default.css
@@ -490,26 +490,31 @@ hr {
}
/* Description Expansion Styling*/
-#descexpansionbutton {
+#descexpansionbutton,
+#musicdescexpansionbutton {
display: none
}
-#descexpansionbutton ~ div {
+#descexpansionbutton ~ div,
+#musicdescexpansionbutton ~ div {
overflow: hidden;
height: 8.3em;
}
-#descexpansionbutton:checked ~ div {
+#descexpansionbutton:checked ~ div,
+#musicdescexpansionbutton:checked ~ div {
overflow: unset;
height: 100%;
}
-#descexpansionbutton ~ label {
+#descexpansionbutton ~ label,
+#musicdescexpansionbutton ~ label {
order: 1;
margin-top: 20px;
}
-label[for="descexpansionbutton"]:hover {
+label[for="descexpansionbutton"]:hover,
+label[for="musicdescexpansionbutton"]:hover {
cursor: pointer;
}
@@ -521,14 +526,24 @@ h4,
h5,
p,
#descriptionWrapper,
-#description-box {
- unicode-bidi: plaintext;
- text-align: start;
+#description-box,
+#music-description-box,
+#musicDescriptionWrapper {
+ unicode-bidi: plaintext;
+ text-align: start;
}
#descriptionWrapper {
- max-width: 600px;
- white-space: pre-wrap;
+ max-width: 600px;
+ white-space: pre-wrap;
+}
+
+#musicDescriptionWrapper {
+ max-width: 600px;
+}
+
+#music-description-title {
+ margin-bottom: 0px;
}
/* Center the "invidious" logo on the search page */