some ui tweaks
- scrollbar collapse is now on chrome-top as show/hide library - adjusted rollover effect for nav playback-buttons
This commit is contained in:
parent
0f1f6c1e8f
commit
6ddc59a4e5
9 changed files with 989 additions and 896 deletions
|
@ -212,6 +212,8 @@
|
||||||
"podcast.episodes": "Episodes",
|
"podcast.episodes": "Episodes",
|
||||||
"podcast.playEpisode": "Play Episode",
|
"podcast.playEpisode": "Play Episode",
|
||||||
"podcast.website": "Podcast Website",
|
"podcast.website": "Podcast Website",
|
||||||
|
"action.hideLibrary": "Hide Library",
|
||||||
|
"action.showLibrary": "Show Library",
|
||||||
"action.cut": "Cut",
|
"action.cut": "Cut",
|
||||||
"action.paste": "Paste",
|
"action.paste": "Paste",
|
||||||
"action.selectAll": "Select All",
|
"action.selectAll": "Select All",
|
||||||
|
|
|
@ -212,6 +212,12 @@
|
||||||
"podcast.episodes": "Episodes",
|
"podcast.episodes": "Episodes",
|
||||||
"podcast.playEpisode": "Play Episode",
|
"podcast.playEpisode": "Play Episode",
|
||||||
"podcast.website": "Podcast Website",
|
"podcast.website": "Podcast Website",
|
||||||
|
"action.hideLibrary": "Hide Library",
|
||||||
|
"action.showLibrary": "Show Library",
|
||||||
|
"action.cut": "Cut",
|
||||||
|
"action.paste": "Paste",
|
||||||
|
"action.selectAll": "Select All",
|
||||||
|
"action.delete": "Delete",
|
||||||
"action.edit": "Edit",
|
"action.edit": "Edit",
|
||||||
"action.done": "Done",
|
"action.done": "Done",
|
||||||
"action.editTracklist": "Edit Tracklist",
|
"action.editTracklist": "Edit Tracklist",
|
||||||
|
@ -592,11 +598,12 @@
|
||||||
"oobe.general.text": "",
|
"oobe.general.text": "",
|
||||||
"oobe.audio.title": "Audio",
|
"oobe.audio.title": "Audio",
|
||||||
"oobe.audio.subtitle": "",
|
"oobe.audio.subtitle": "",
|
||||||
"oobe.audio.text": "",
|
"oobe.audio.text": "Cider features a custom tuned and designed audio stack that delivers a rich high quality audio experience.\nFeaturing Cider Adrenaline, Atmosphere Realizer, and Spatialized Audio.\nTo enable this functionality \"Advanced Audio Functionality\" must be enabled.\nEnabling Advanced Audio Functionality will give you access to these enhancements in the Cider Audio Labs, found in the app settings.",
|
||||||
"oobe.audio.advancedFunctionality": "",
|
"oobe.audio.advancedFunctionality": "",
|
||||||
"oobe.visual.title": "Visual",
|
"oobe.visual.title": "Visual",
|
||||||
"oobe.visual.subtitle": "",
|
"oobe.visual.subtitle": "",
|
||||||
"oobe.visual.text": "",
|
"oobe.visual.text": "",
|
||||||
|
"oobe.visual.layout.text": "Cider features two window different layouts.\nMaverick is an iTunes like layout with the player at the top of the window.\nMojave is a new spin created by the Cider Collective.\n\nYou can change the layout any time in the settings.",
|
||||||
"oobe.visual.suggestingThemes": "Theming is a great way to personalize your experience. Here are a few we suggest: ",
|
"oobe.visual.suggestingThemes": "Theming is a great way to personalize your experience. Here are a few we suggest: ",
|
||||||
"oobe.visual.suggestingThemes.subtext": "(These themes will be downloaded from GitHub)",
|
"oobe.visual.suggestingThemes.subtext": "(These themes will be downloaded from GitHub)",
|
||||||
"oobe.visual.suggestingThemes.default": "Cider",
|
"oobe.visual.suggestingThemes.default": "Cider",
|
||||||
|
|
|
@ -135,7 +135,7 @@ document.addEventListener("musickitloaded", function () {
|
||||||
function waitForApp() {
|
function waitForApp() {
|
||||||
if (typeof app.init !== "undefined") {
|
if (typeof app.init !== "undefined") {
|
||||||
app.init();
|
app.init();
|
||||||
if (app.cfg.visual.window_background_style == "mica") {
|
if (app.cfg.visual.window_background_style == "mica" && !app.isDev) {
|
||||||
app.spawnMica();
|
app.spawnMica();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "codicon";
|
font-family: "codicon";
|
||||||
font-display: block;
|
font-display: block;
|
||||||
src: url("codicon.ttf") format("truetype");
|
src: url("./codicon.ttf?f06865699f1720ee6ca6e0a4aa084d76") format("truetype");
|
||||||
}
|
}
|
||||||
|
|
||||||
.codicon[class*='codicon-'] {
|
.codicon[class*='codicon-'] {
|
||||||
|
@ -43,6 +43,10 @@
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.codicon-modifier-hidden {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* custom speed & easing for loading icon */
|
/* custom speed & easing for loading icon */
|
||||||
.codicon-loading {
|
.codicon-loading {
|
||||||
animation-duration: 1s !important;
|
animation-duration: 1s !important;
|
||||||
|
@ -551,3 +555,7 @@
|
||||||
.codicon-arrow-circle-left:before { content: "\ebfd" }
|
.codicon-arrow-circle-left:before { content: "\ebfd" }
|
||||||
.codicon-arrow-circle-right:before { content: "\ebfe" }
|
.codicon-arrow-circle-right:before { content: "\ebfe" }
|
||||||
.codicon-arrow-circle-up:before { content: "\ebff" }
|
.codicon-arrow-circle-up:before { content: "\ebff" }
|
||||||
|
.codicon-layout-sidebar-right-off:before { content: "\ec00" }
|
||||||
|
.codicon-layout-panel-off:before { content: "\ec01" }
|
||||||
|
.codicon-layout-sidebar-left-off:before { content: "\ec02" }
|
||||||
|
.codicon-blank:before { content: "\ec03" }
|
||||||
|
|
Binary file not shown.
|
@ -393,11 +393,13 @@
|
||||||
align-items : center;
|
align-items : center;
|
||||||
border-radius : var(--mediaItemRadius);
|
border-radius : var(--mediaItemRadius);
|
||||||
position : relative;
|
position : relative;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
.heart-icon {
|
.heart-icon {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.popular {
|
.popular {
|
||||||
background-image : url(assets/star.svg);
|
background-image : url(assets/star.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -522,27 +524,35 @@
|
||||||
10% {
|
10% {
|
||||||
box-shadow: inset 0 -4px 0
|
box-shadow: inset 0 -4px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
20% {
|
20% {
|
||||||
box-shadow: inset 0 -10px 0
|
box-shadow: inset 0 -10px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
30% {
|
30% {
|
||||||
box-shadow: inset 0 -12px 0
|
box-shadow: inset 0 -12px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
40% {
|
40% {
|
||||||
box-shadow: inset 0 -8px 0
|
box-shadow: inset 0 -8px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
50% {
|
50% {
|
||||||
box-shadow: inset 0 -4px 0
|
box-shadow: inset 0 -4px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
60% {
|
60% {
|
||||||
box-shadow: inset 0 -6px 0
|
box-shadow: inset 0 -6px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
80% {
|
80% {
|
||||||
box-shadow: inset 0 -12px 0
|
box-shadow: inset 0 -12px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
90% {
|
90% {
|
||||||
box-shadow: inset 0 -6px 0
|
box-shadow: inset 0 -6px 0
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
to {
|
||||||
box-shadow: inset 0 -2px 0
|
box-shadow: inset 0 -2px 0
|
||||||
}
|
}
|
||||||
|
@ -952,6 +962,7 @@
|
||||||
flex : 0 0 auto;
|
flex : 0 0 auto;
|
||||||
margin : 6px;
|
margin : 6px;
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
|
|
||||||
.mediaitem-artwork {
|
.mediaitem-artwork {
|
||||||
box-shadow: unset;
|
box-shadow: unset;
|
||||||
}
|
}
|
||||||
|
@ -1027,6 +1038,7 @@
|
||||||
@media (min-width: 1600px) {
|
@media (min-width: 1600px) {
|
||||||
width : calc(200px * var(--scaleRate));
|
width : calc(200px * var(--scaleRate));
|
||||||
height: calc(200px * var(--scaleRate));
|
height: calc(200px * var(--scaleRate));
|
||||||
|
|
||||||
.artwork-container>.artwork {
|
.artwork-container>.artwork {
|
||||||
width : calc(190px * var(--scaleRateArtwork));
|
width : calc(190px * var(--scaleRateArtwork));
|
||||||
height: calc(190px * var(--scaleRateArtwork));
|
height: calc(190px * var(--scaleRateArtwork));
|
||||||
|
@ -1093,6 +1105,7 @@
|
||||||
@media (min-width: 1600px) {
|
@media (min-width: 1600px) {
|
||||||
width : calc(240px * var(--scaleRate));
|
width : calc(240px * var(--scaleRate));
|
||||||
height: calc(200px * var(--scaleRate));
|
height: calc(200px * var(--scaleRate));
|
||||||
|
|
||||||
.artwork-container>.artwork {
|
.artwork-container>.artwork {
|
||||||
width : calc(212px * var(--scaleRateArtwork));
|
width : calc(212px * var(--scaleRateArtwork));
|
||||||
height: calc(120px * var(--scaleRateArtwork));
|
height: calc(120px * var(--scaleRateArtwork));
|
||||||
|
@ -1175,6 +1188,7 @@
|
||||||
font-size : 0.9em;
|
font-size : 0.9em;
|
||||||
font-weight : 500;
|
font-weight : 500;
|
||||||
z-index : 1;
|
z-index : 1;
|
||||||
|
|
||||||
&+.subtitle {
|
&+.subtitle {
|
||||||
max-height: none !important;
|
max-height: none !important;
|
||||||
margin-top: -0.5em;
|
margin-top: -0.5em;
|
||||||
|
@ -1580,10 +1594,28 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
background-repeat : no-repeat;
|
background-repeat : no-repeat;
|
||||||
opacity : 0.70;
|
opacity : 0.70;
|
||||||
border-radius : 6px;
|
border-radius : 6px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
top:0;left:0;right:0;bottom:0;
|
||||||
|
background: var(--selected);
|
||||||
|
border-radius: inherit;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
z-index: -1;
|
||||||
|
transform: scale(0.5);
|
||||||
|
pointer-events: none;
|
||||||
|
transition: opacity .10s var(--appleEase), transform .10s var(--appleEase);
|
||||||
}
|
}
|
||||||
|
|
||||||
.playback-button:active {
|
&:hover {
|
||||||
transform: scale(0.95);
|
&:before {
|
||||||
|
transform: scale(1);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.playback-button--small {
|
.playback-button--small {
|
||||||
|
@ -1599,20 +1631,40 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
border : 0px;
|
border : 0px;
|
||||||
box-shadow : unset;
|
box-shadow : unset;
|
||||||
opacity : 0.70;
|
opacity : 0.70;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
top:0;left:0;right:0;bottom:0;
|
||||||
|
background: var(--selected);
|
||||||
|
border-radius: inherit;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
z-index: -1;
|
||||||
|
transform: scale(0.5);
|
||||||
|
pointer-events: none;
|
||||||
|
transition: opacity .10s var(--appleEase), transform .10s var(--appleEase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
&:before {
|
||||||
|
transform: scale(1);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.playback-button--small.active {
|
||||||
|
background-color: rgb(200 200 200 / 25%);
|
||||||
|
}
|
||||||
.playback-button:hover,
|
.playback-button:hover,
|
||||||
.playback-button--small:hover {
|
.playback-button--small:hover {
|
||||||
background-color: rgb(200 200 200 / 10%);
|
// background-color: var(--selected);
|
||||||
}
|
}
|
||||||
|
|
||||||
.playback-button:active,
|
.playback-button:active,
|
||||||
.playback-button--small:active {
|
.playback-button--small:active {
|
||||||
transform: scale(0.9);
|
background-color: var(--selected-click);
|
||||||
}
|
|
||||||
|
|
||||||
.playback-button--small.active {
|
|
||||||
background-color: rgb(200 200 200 / 25%);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.playback-button--small.search {
|
.playback-button--small.search {
|
||||||
|
@ -1655,6 +1707,12 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
background-position: center;
|
background-position: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.playback-button.collapseLibrary {
|
||||||
|
font-family: "codicon";
|
||||||
|
font-size : 1em;
|
||||||
|
color: var(--textColor);
|
||||||
|
}
|
||||||
|
|
||||||
.playback-button.pause {
|
.playback-button.pause {
|
||||||
background-image : url('./assets/cider-icons/pause.svg');
|
background-image : url('./assets/cider-icons/pause.svg');
|
||||||
background-size : 38px;
|
background-size : 38px;
|
||||||
|
@ -1678,10 +1736,13 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
background-size : 60%;
|
background-size : 60%;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
}
|
}
|
||||||
.playback-button.disabled, .playback-button--small.disabled {
|
|
||||||
|
.playback-button.disabled,
|
||||||
|
.playback-button--small.disabled {
|
||||||
opacity : 0.25 !important;
|
opacity : 0.25 !important;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
transform : none !important;
|
transform : none !important;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
transform : none !important;
|
transform : none !important;
|
||||||
|
@ -1694,6 +1755,7 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items : center;
|
align-items : center;
|
||||||
color : white;
|
color : white;
|
||||||
|
|
||||||
>svg {
|
>svg {
|
||||||
height : 16px;
|
height : 16px;
|
||||||
width : 16px;
|
width : 16px;
|
||||||
|
@ -1907,6 +1969,7 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.artist-chip__name {
|
.artist-chip__name {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
@ -1990,6 +2053,7 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
// fancy pills
|
// fancy pills
|
||||||
.nav-pills {
|
.nav-pills {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.nav-link {
|
.nav-link {
|
||||||
transition: transform .3s var(--appleEase);
|
transition: transform .3s var(--appleEase);
|
||||||
position : relative;
|
position : relative;
|
||||||
|
@ -2095,6 +2159,7 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
display : grid;
|
display : grid;
|
||||||
grid-template-columns: repeat(3, 1fr);
|
grid-template-columns: repeat(3, 1fr);
|
||||||
gap : 16px;
|
gap : 16px;
|
||||||
|
|
||||||
.grouping-btn {
|
.grouping-btn {
|
||||||
padding : 16px;
|
padding : 16px;
|
||||||
appearance : none;
|
appearance : none;
|
||||||
|
@ -2126,8 +2191,7 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-sidebar-header
|
.app-sidebar-header .search-input-container .search-hints-container {
|
||||||
.search-input-container .search-hints-container {
|
|
||||||
top : 38px;
|
top : 38px;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
@ -2137,15 +2201,14 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
.heart-icon {
|
.heart-icon {
|
||||||
left: 7px;
|
left: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cd-mediaitem-list-item {
|
.cd-mediaitem-list-item {
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.library-artists-page {
|
&.library-artists-page {
|
||||||
.inner-container
|
.inner-container .list-container .podcasts-list {
|
||||||
.list-container
|
|
||||||
.podcasts-list {
|
|
||||||
background : rgba(27, 27, 27);
|
background : rgba(27, 27, 27);
|
||||||
padding-top: 14px;
|
padding-top: 14px;
|
||||||
width : 272px;
|
width : 272px;
|
||||||
|
@ -2153,6 +2216,7 @@ input[type=checkbox][switch]:checked:active::before {
|
||||||
.cd-mediaitem-list-item {
|
.cd-mediaitem-list-item {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cd-mediaitem-list-item:hover {
|
.cd-mediaitem-list-item:hover {
|
||||||
width: 96%;
|
width: 96%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -530,18 +530,15 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
|
||||||
|
|
||||||
&.collapseTab {
|
&.collapseTab {
|
||||||
display:flex;
|
display:flex;
|
||||||
padding:0px;
|
padding:6px;
|
||||||
|
border:0;
|
||||||
>button {
|
>button {
|
||||||
appearance: none;
|
appearance: none;
|
||||||
border:0px;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 12px;
|
padding-left: 40px;
|
||||||
padding-left: 32px;
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
background-color: var(--color2);
|
|
||||||
color: var(--textColor);
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: var(--selected);
|
background-color: var(--selected);
|
||||||
}
|
}
|
||||||
|
@ -549,17 +546,17 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
|
||||||
background-color: var(--selected-click);
|
background-color: var(--selected-click);
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
content: '';
|
content: '';
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 32px;
|
width: 46px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 1.2em;
|
font-size: 1em;
|
||||||
font-family: "codicon";
|
font-family: "codicon";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1019,21 +1016,31 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
-webkit-app-region: no-drag;
|
-webkit-app-region: no-drag;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
||||||
|
&.collapseLibrary {
|
||||||
|
.md-btn {
|
||||||
|
font-family: "codicon";
|
||||||
|
font-size: 1em;
|
||||||
|
padding: 5px 12px;
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-chrome .app-chrome-item.generic {
|
&.generic {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
opacity: 0.70;
|
opacity: 0.70;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-chrome .app-chrome-item.volume {
|
&.volume {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-chrome .app-chrome-item.search {
|
&.search {
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.volume-button {
|
.volume-button {
|
||||||
background-image: url("./assets/feather/volume-2.svg");
|
background-image: url("./assets/feather/volume-2.svg");
|
||||||
|
|
|
@ -53,6 +53,16 @@
|
||||||
<%- include('../svg/chevron-right.svg') %>
|
<%- include('../svg/chevron-right.svg') %>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="app-chrome-item" v-if="cfg.advanced.experiments.includes('collapseSidebar')">
|
||||||
|
<button
|
||||||
|
class="playback-button collapseLibrary"
|
||||||
|
v-b-tooltip.hover
|
||||||
|
:title="chrome.sidebarCollapsed ? getLz('action.showLibrary') : getLz('action.hideLibrary')"
|
||||||
|
@click="chrome.sidebarCollapsed = !chrome.sidebarCollapsed">
|
||||||
|
<span v-if="chrome.sidebarCollapsed"></span>
|
||||||
|
<span v-else></span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
class="vdiv display--large"
|
class="vdiv display--large"
|
||||||
v-if="getThemeDirective('windowLayout') != 'twopanel'"
|
v-if="getThemeDirective('windowLayout') != 'twopanel'"
|
||||||
|
|
|
@ -183,11 +183,6 @@
|
||||||
</sidebar-playlist>
|
</sidebar-playlist>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<div class="app-sidebar-footer collapseTab" v-if="cfg.advanced.experiments.includes('collapseSidebar')">
|
|
||||||
<button @click="chrome.sidebarCollapsed = !chrome.sidebarCollapsed">
|
|
||||||
Collapse
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="app-sidebar-footer display--small app-sidebar-footer--controls">
|
<div class="app-sidebar-footer display--small app-sidebar-footer--controls">
|
||||||
<div
|
<div
|
||||||
class="app-playback-controls"
|
class="app-playback-controls"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue