mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 13:33:18 +00:00
Merge pull request #1405 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
281343bde6
7 changed files with 9 additions and 7 deletions
BIN
public/js/compose.js
vendored
BIN
public/js/compose.js
vendored
Binary file not shown.
BIN
public/js/search.js
vendored
BIN
public/js/search.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -249,9 +249,11 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@media (hover: none) and (pointer: coarse) {
|
||||||
.media-drawer-filters::-webkit-scrollbar {
|
.media-drawer-filters::-webkit-scrollbar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
<p class="col-12 font-weight-bold text-muted">Statuses</p>
|
<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">
|
<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">
|
<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 ">
|
<div class="card-body text-center ">
|
||||||
<p class="mb-0 small text-truncate font-weight-bold text-muted" v-html="status.value">
|
<p class="mb-0 small text-truncate font-weight-bold text-muted" v-html="status.value">
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
<span class="d-inline-flex">
|
<span class="d-inline-flex">
|
||||||
<select class="custom-select custom-select-sm font-weight-bold bulk-action">
|
<select class="custom-select custom-select-sm font-weight-bold bulk-action">
|
||||||
<option selected disabled="">Select Bulk Action</option>
|
<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="2">Add C/W</option>
|
||||||
<option value="3">Unlist from timelines</option>
|
<option value="3">Unlist from timelines</option>
|
||||||
<option value="4">No Autolinking</option>
|
<option value="4">No Autolinking</option>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<p class="alert alert-warning">
|
<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>
|
</p>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue