mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-03-04 02:28:08 +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 13 additions and 11 deletions
2
public/js/compose.js
vendored
2
public/js/compose.js
vendored
File diff suppressed because one or more lines are too long
2
public/js/search.js
vendored
2
public/js/search.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,12 +7,12 @@
|
|||
"/css/appdark.css": "/css/appdark.css?id=34cd81dd9c8bc68cfd51",
|
||||
"/css/landing.css": "/css/landing.css?id=1ea686af4c64df5018fc",
|
||||
"/js/components.js": "/js/components.js?id=97c7f6876bb4e5c9ffd8",
|
||||
"/js/compose.js": "/js/compose.js?id=3e59092826085624eec5",
|
||||
"/js/compose.js": "/js/compose.js?id=7077e64f269d90f9543b",
|
||||
"/js/developers.js": "/js/developers.js?id=4dba6abdc3ae8ec8c222",
|
||||
"/js/discover.js": "/js/discover.js?id=b9b5d3d054cadf63aed2",
|
||||
"/js/loops.js": "/js/loops.js?id=d5c7e9d0d6a44553dd0d",
|
||||
"/js/profile.js": "/js/profile.js?id=def2cef049018dddfa02",
|
||||
"/js/search.js": "/js/search.js?id=17415228e1fb52528d0c",
|
||||
"/js/search.js": "/js/search.js?id=95c893b755e132a1d7e1",
|
||||
"/js/status.js": "/js/status.js?id=9cfc5c6a05070fad66e8",
|
||||
"/js/timeline.js": "/js/timeline.js?id=c8346c0cf7265df6196e"
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue