Compare commits
No commits in common. "56359fcccbb1ccf4da1ad9f5702b31f8c5a5884f" and "792644344c709d0bcbfaf54089833c1f8eab9f71" have entirely different histories.
56359fcccb
...
792644344c
3 changed files with 19 additions and 6 deletions
|
@ -6,9 +6,6 @@ The differences from the upstream repository are described below:
|
||||||
|
|
||||||
- Added a Makefile where you can build the client inside a Docker container
|
- Added a Makefile where you can build the client inside a Docker container
|
||||||
- Added and changed the default theme to a custom one
|
- Added and changed the default theme to a custom one
|
||||||
- Fixed the dimensions of some elements that appeared to be misaligned
|
|
||||||
- Stole some commits from the original Pleroma frontend
|
|
||||||
- More than 200 (!) Japanese translations have been fixed
|
|
||||||
- Removed some themes to save network bandwidth
|
- Removed some themes to save network bandwidth
|
||||||
|
|
||||||
### How to build
|
### How to build
|
||||||
|
|
|
@ -61,7 +61,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&-user-name {
|
&-user-name {
|
||||||
--emoji-size: 1em;
|
img {
|
||||||
|
object-fit: contain;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-user-name-value {
|
&-user-name-value {
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
--_still_image-label-scale: 0.25;
|
--_still_image-label-scale: 0.25;
|
||||||
--emoji-size: 1em;
|
--emoji-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-favicon {
|
.status-favicon {
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
|
|
||||||
.emoji {
|
.emoji {
|
||||||
--emoji-size: 1em;
|
--emoji-size: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,6 +136,10 @@
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
img {
|
||||||
|
aspect-ratio: 1 / 1;
|
||||||
|
}
|
||||||
|
|
||||||
.nowrap {
|
.nowrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: end;
|
align-items: end;
|
||||||
|
@ -276,6 +280,13 @@
|
||||||
.repeater-name {
|
.repeater-name {
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
|
|
||||||
|
.emoji {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
vertical-align: middle;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-fadein {
|
.status-fadein {
|
||||||
|
|
Loading…
Reference in a new issue