mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-24 21:50:59 +03:00
* Fixed download spinner in player component * Downloads UI is more mobile friendly (#905) * Code cleanup * Fixed size of actions in home screen downloads * Errored downloads now display their stage as "Error" in the UI * Moved personal settings from about dialog to profile dialog * Profile dialog can now be opened without logging in/without multi-user mode * Fixed issue where archive dialog could be accessed from anywhere * Misc internationalization improvements * Combined download stage and download progress columns * Added back loading spinner to download actions * Adjusted thresholds for consolidating download action buttons * Implemented virtual scrolling for notifications (helps if many notifications exist) * Fixed minor console error
40 lines
608 B
SCSS
40 lines
608 B
SCSS
mat-header-cell, mat-cell {
|
|
justify-content: center;
|
|
}
|
|
|
|
.one-line {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.icon-button-spinner {
|
|
position: absolute;
|
|
top: -13px;
|
|
left: 10px;
|
|
}
|
|
|
|
.button-span {
|
|
position: relative;;
|
|
}
|
|
|
|
.downloads-action-button-div {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.downloads-action-button {
|
|
margin-top: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.rounded-top {
|
|
border-radius: 16px 16px 0px 0px !important;
|
|
}
|
|
|
|
.rounded-bottom {
|
|
border-radius: 0px 0px 16px 16px !important;
|
|
}
|
|
|
|
.rounded {
|
|
border-radius: 16px 16px 16px 16px !important;
|
|
} |