Sync I don't commit now is the conflict of the tomorrow (#472)
* Added update check if using MSS or MAS builds. need help implementing * fix locale / allow pl to show before list loading is fully done * oops * Also copy blockmap for partial download `[2022-02-15 17:28:30.126] [error] Cannot download differentially, fallback to full download: Error: Cannot download "https://478-429851205-gh.circle-artifacts.com/0/%7E/Cider/dist/artifacts/Cider-Setup-1.1.428.exe.blockmap", status 404: Not Found at ClientRequest.<anonymous> (C:\Program Files\Cider\resources\app.asar\node_modules\builder-util-runtime\src\httpExecutor.ts:288:11) at ClientRequest.emit (node:events:394:28) at ClientRequest.emit (node:domain:475:12) at SimpleURLLoaderWrapper.<anonymous> (node:electron/js2c/browser_init:105:6829) at SimpleURLLoaderWrapper.emit (node:events:394:28) at SimpleURLLoaderWrapper.emit (node:domain:475:12)` * more lang fix * Removed Discord clear on pause * Linux frame * fix #459 * Fix * exposed --songProgressColor and --songProgressBackground * revert * Revert "revert" This reverts commit24313b53cf
. * ok? * Revert "ok?" This reverts commit9218ccc887
. * ok * fix adding/remove mvs from library * Created audio controls menu * Added start-renderer command for easier testing * shitty floats shitty shitty * LastFM can be unique and have its own call * Revert "LastFM can be unique and have its own call" This reverts commitd36e1b19f6
. * Revert "Merge branch 'develop' into develop" This reverts commit5fa345e6c8
, reversing changes made toa02b633f49
. * Revert "Revert "LastFM can be unique and have its own call"" This reverts commitf156083d48
. * Revert "Merge branch 'ciderapp:develop' into develop" This reverts commit20fd0c05da
, reversing changes made to4937e29fcf
. * lastfm changes * i hate lastfm like really really hate it * Revert "Merge remote-tracking branch 'origin/develop' into develop" This reverts commit5b360e74fa
, reversing changes made to548688341d
. * Revert "Revert "Merge remote-tracking branch 'origin/develop' into develop"" This reverts commit0fb6802ff3
. * Revert "Merge branch 'develop' of https://github.com/ciderapp/Cider into develop" This reverts commitbd3a2b6172
, reversing changes made to0fb6802ff3
. * volume step i18n * and git can go in the bin too * Added OpenAppData button in settings and updated layout/translations * change in translation README.md * margin: 0 on song-progress * fix np navigation on some songs * enables native linux chrome * replay wip * replay, added this year * fix for library status * added attributes.playparams.id * replay banner * changed colors * fancy animations * more fancy * some changes * add play button in library-songs page * fix * improve drag on topbar * Generating top genres, made buttons nicer on replay * changes to replay graphs * Revert "Merge branch 'innolab' into develop" This reverts commitb740f76e3c
, reversing changes made toa5746f08fa
. Co-authored-by: child_duckling <19170969+quacksire@users.noreply.github.com> Co-authored-by: vapormusic <vietanhfat@gmail.com> Co-authored-by: JYW0803 <74043061+JYW0803@users.noreply.github.com> Co-authored-by: Core <64542347+coredev-uk@users.noreply.github.com> Co-authored-by: booploops <49113086+booploops@users.noreply.github.com>
This commit is contained in:
parent
509a425f41
commit
8ee22f615d
22 changed files with 546 additions and 134 deletions
|
@ -819,3 +819,180 @@
|
|||
margin: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
//Home
|
||||
.home-page {
|
||||
top: 0;
|
||||
padding-top: var(--navbarHeight);
|
||||
|
||||
.md-btn-replay {
|
||||
background: var(--replayGradient);
|
||||
border: 0px;
|
||||
box-shadow: inset 0px 0px 0px 1px rgba(200, 200, 200, 0.2);
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
}
|
||||
.md-btn-replay--hero {
|
||||
font-size: 1em;
|
||||
padding: 16px;
|
||||
background: var(--replayGradient);
|
||||
border: 0px;
|
||||
box-shadow: inset 0px 0px 0px 1px rgb(200 200 200 / 20%);
|
||||
margin-top: 1em;
|
||||
font-size: 0.9em;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.artist-feed-card {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 10%;
|
||||
z-index: 1;
|
||||
background: black;
|
||||
width: 80%;
|
||||
height: 96%;
|
||||
overflow: scroll;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.col.madeforyou-col {
|
||||
width: 420px;
|
||||
min-width: 0px;
|
||||
max-width: 420px;
|
||||
}
|
||||
|
||||
.well.artistfeed-well {
|
||||
margin-top: 0px;
|
||||
height: 392px;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
.hint-text {
|
||||
font-size: 0.9rem;
|
||||
color: rgb(200 200 200 / 70%);
|
||||
}
|
||||
|
||||
.user-icon {
|
||||
border-radius: 100%;
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
overflow: hidden;
|
||||
box-shadow: var(--mediaItemShadow-Shadow);
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
.well.profile-well {
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.name {
|
||||
margin: 4px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.handle {
|
||||
margin: 4px;
|
||||
opacity: 0.7;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Replay
|
||||
.replay-page {
|
||||
--replayTextShadow: 0px 3px 2px #6f3f52;
|
||||
|
||||
.replay-period {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
margin: 6px;
|
||||
border-radius: var(--mediaItemRadius);
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
transition: transform .2s var(--appleEase);
|
||||
transition-delay: .1s;
|
||||
align-self: center;
|
||||
&:hover {
|
||||
transform: translateY(-6px);
|
||||
transition-delay: 0s;
|
||||
}
|
||||
.artwork-container {
|
||||
height:200px;
|
||||
width:200px;
|
||||
}
|
||||
}
|
||||
|
||||
.top-genres-container {
|
||||
|
||||
.genre-name {
|
||||
font-size: 0.9em;
|
||||
margin: 6px 0px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.genre-count {
|
||||
width: 100%;
|
||||
height: 32px;
|
||||
background: #ffffff14;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
|
||||
.genre-count-bar {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: var(--keyColor);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-width: 32px;
|
||||
font-size: 0.9em;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cd-mediaitem-square {
|
||||
.mediaitem-artwork {
|
||||
animation: replayFadeIn .5s var(--appleEase);
|
||||
}
|
||||
transition: transform .2s var(--appleEase);
|
||||
transition-delay: .1s;
|
||||
&:hover {
|
||||
transform: scale(1.1);
|
||||
transition-delay: 0s;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes replayFadeIn {
|
||||
0% {
|
||||
//border-radius: 100%;
|
||||
transform: translateY(10px) scale(0.9);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
//border-radius: var(--mediaItemRadius);
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.replay-viewport {
|
||||
background: var(--replayGradient);
|
||||
padding: 16px 40px;
|
||||
border-radius: 10px;
|
||||
box-shadow: var(--mediaItemShadow), var(--mediaItemShadow-Shadow);
|
||||
color: rgb(238 238 238 / 86%);
|
||||
|
||||
.replay-header {
|
||||
text-align: center;
|
||||
font-size: 3em;
|
||||
text-shadow: var(--replayTextShadow);
|
||||
}
|
||||
}
|
||||
.replay-card {
|
||||
background: transparent;
|
||||
border:0px;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue