1
0
Fork 0
forked from mirror/pixelfed

Merge pull request #1405 from pixelfed/frontend-ui-refactor

Frontend ui refactor
This commit is contained in:
daniel 2019-06-16 17:08:35 -06:00 committed by GitHub
commit 281343bde6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 9 additions and 7 deletions

BIN
public/js/compose.js vendored

Binary file not shown.

BIN
public/js/search.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -249,9 +249,11 @@
color: #fff;
font-weight: bold;
}
.media-drawer-filters::-webkit-scrollbar {
display: none;
}
@media (hover: none) and (pointer: coarse) {
.media-drawer-filters::-webkit-scrollbar {
display: none;
}
}
</style>
<script type="text/javascript">
export default {
@ -544,4 +546,4 @@ export default {
}
}
}
</script>
</script>

View file

@ -69,7 +69,7 @@
<p class="col-12 font-weight-bold text-muted">Statuses</p>
<a v-for="(status, index) in results.statuses" class="col-12 col-md-4 mb-3" style="text-decoration: none;" :href="status.url">
<div class="card">
<img class="card-img-top img-fluid" :src="status.thumb" style="height:180px;">
<img class="card-img-top img-fluid" :src="status.thumb">
<div class="card-body text-center ">
<p class="mb-0 small text-truncate font-weight-bold text-muted" v-html="status.value">
</p>

View file

@ -56,7 +56,7 @@
<span class="d-inline-flex">
<select class="custom-select custom-select-sm font-weight-bold bulk-action">
<option selected disabled="">Select Bulk Action</option>
<option value="1" disabled="">Review (Coming in v0.9.0)</option>
<option value="1" disabled="">Review (Coming in a future version)</option>
<option value="2">Add C/W</option>
<option value="3">Unlist from timelines</option>
<option value="4">No Autolinking</option>

View file

@ -9,7 +9,7 @@
</div>
<hr>
<p class="alert alert-warning">
<strong>Feature Unavailable:</strong> This feature will be released in v0.9.0.
<strong>Feature Unavailable:</strong> This feature will be released in a future version.
</p>
@endsection