Some UI fixes.

This commit is contained in:
Dessalines 2020-08-07 23:17:37 -04:00
parent 9c3776d034
commit 992b3ca95b
8 changed files with 23 additions and 15 deletions

2
ansible/VERSION vendored
View file

@ -1 +1 @@
v0.7.43 v0.7.45

View file

@ -12,7 +12,7 @@ services:
restart: always restart: always
lemmy: lemmy:
image: dessalines/lemmy:v0.7.43 image: dessalines/lemmy:v0.7.45
ports: ports:
- "127.0.0.1:8536:8536" - "127.0.0.1:8536:8536"
restart: always restart: always

View file

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
docker tag dessalines/lemmy:travis \ docker tag dessalines/lemmy:travis \
dessalines/lemmy:v0.7.43 dessalines/lemmy:v0.7.45
docker push dessalines/lemmy:v0.7.43 docker push dessalines/lemmy:v0.7.45

View file

@ -1 +1 @@
pub const VERSION: &str = "v0.7.43"; pub const VERSION: &str = "v0.7.45";

View file

@ -32,6 +32,10 @@
margin-top: -10px; margin-top: -10px;
} }
.custom-select {
-moz-appearance: none;
}
.md-div p { .md-div p {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;

View file

@ -369,7 +369,7 @@ export class Navbar extends Component<any, NavbarState> {
</> </>
) : ( ) : (
<ul class="navbar-nav my-2"> <ul class="navbar-nav my-2">
<li className="nav-item"> <li className="ml-2 nav-item">
<Link <Link
class="btn btn-success" class="btn btn-success"
to="/login" to="/login"

View file

@ -515,9 +515,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
</li> </li>
{(showVotes || this.state.upvotes !== this.state.score) && ( {(showVotes || this.state.upvotes !== this.state.score) && (
<> <>
<li className="list-inline-item"></li>
<span <span
class="unselectable pointer mr-2" class="unselectable pointer ml-3"
data-tippy-content={this.pointsTippy} data-tippy-content={this.pointsTippy}
> >
<li className="list-inline-item"> <li className="list-inline-item">
@ -527,8 +526,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
}`} }`}
onClick={linkEvent(this, this.handlePostLike)} onClick={linkEvent(this, this.handlePostLike)}
> >
<svg class="small icon icon-inline mr-1"> <svg class="small icon icon-inline mx-1">
<use xlinkHref="#icon-arrow-up"></use> <use xlinkHref="#icon-arrow-up1"></use>
</svg> </svg>
{this.state.upvotes} {this.state.upvotes}
</a> </a>
@ -540,8 +539,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
}`} }`}
onClick={linkEvent(this, this.handlePostDisLike)} onClick={linkEvent(this, this.handlePostDisLike)}
> >
<svg class="small icon icon-inline mr-1"> <svg class="small icon icon-inline mx-1">
<use xlinkHref="#icon-arrow-down"></use> <use xlinkHref="#icon-arrow-down1"></use>
</svg> </svg>
{this.state.downvotes} {this.state.downvotes}
</a> </a>

11
ui/src/utils.ts vendored
View file

@ -980,12 +980,17 @@ function randomHsl() {
return `hsla(${Math.random() * 360}, 100%, 50%, 1)`; return `hsla(${Math.random() * 360}, 100%, 50%, 1)`;
} }
export function previewLines(text: string, lines: number = 3): string { export function previewLines(
// Use lines * 2 because markdown requires 2 lines text: string,
maxChars: number = 300,
maxLines: number = 1
): string {
return ( return (
text text
.slice(0, maxChars)
.split('\n') .split('\n')
.slice(0, lines * 2) // Use lines * 2 because markdown requires 2 lines
.slice(0, maxLines * 2)
.join('\n') + '...' .join('\n') + '...'
); );
} }