mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2024-11-22 01:45:40 +01:00
Compare commits
2 Commits
91ceacd89d
...
62e7b439db
Author | SHA1 | Date | |
---|---|---|---|
|
62e7b439db | ||
|
7b8d36023e |
@ -27,7 +27,7 @@
|
||||
inset-block-start: 60px;
|
||||
inset-inline-end: 10px;
|
||||
min-inline-size: 250px;
|
||||
block-size: 400px;
|
||||
block-size: auto;
|
||||
padding: 5px;
|
||||
background-color: var(--card-bg-color);
|
||||
box-shadow: 0 0 4px var(--scrollbar-color-hover);
|
||||
@ -35,8 +35,22 @@
|
||||
|
||||
.profileWrapper {
|
||||
margin-block-start: 60px;
|
||||
block-size: 340px;
|
||||
block-size: auto;
|
||||
overflow-y: auto;
|
||||
/*
|
||||
profile list max height: 90% of window size - 100 px. It's scaled to be 340px on 800x600 resolution.
|
||||
Offset of 100px is to compensate for the fixed size of elements above the list, which takes more screen space on lower resolutions
|
||||
*/
|
||||
max-block-size: calc(90vh - 100px);
|
||||
min-block-size: 340px;
|
||||
}
|
||||
|
||||
/* Navbar changes position to horizontal with this media rule.
|
||||
Height adjust for profile list so it won't cover navbar. */
|
||||
@media only screen and (max-width: 680px){
|
||||
.profileWrapper {
|
||||
max-block-size: calc(95vh - 180px);
|
||||
}
|
||||
}
|
||||
|
||||
.profile {
|
||||
|
@ -764,6 +764,8 @@ Video:
|
||||
'Live Chat is unavailable for this stream. It may have been disabled by the uploader.': Otsevestlus
|
||||
pole selle videovoo puhul saadaval. Võib-olla on üleslaadija vestluse keelanud.
|
||||
Pause on Current Video: Peata hetkel esitatav video
|
||||
Unhide Channel: Näita kanalit
|
||||
Hide Channel: Peida kanal
|
||||
Videos:
|
||||
#& Sort By
|
||||
Sort By:
|
||||
@ -991,3 +993,6 @@ Playlist will pause when current video is finished: Hetkel mängiva video lõppe
|
||||
esitusloendi esitamine peatub
|
||||
Playlist will not pause when current video is finished: Hetkel mängiva video lõppemisel
|
||||
esitusloendi esitamine jätkub
|
||||
Channel Hidden: '{channel} on lisatud kanalite filtrisse'
|
||||
Go to page: 'Ava leht: {page}'
|
||||
Channel Unhidden: '{channel} on eemaldatud kanalite filtrist'
|
||||
|
Loading…
Reference in New Issue
Block a user