瀏覽代碼

Update DM components

Daniel Supernault 4 年之前
父節點
當前提交
e4e3c21c98

+ 2 - 0
resources/assets/js/components/DirectMessage.vue

@@ -84,6 +84,7 @@
 									{{convo.text}}
 									{{convo.text}}
 								</p>
 								</p>
 								<p v-if="!hideTimestamps" class="small text-muted font-weight-bold ml-2 d-flex align-items-center justify-content-start" data-timestamp="timestamp"> <span v-if="convo.hidden" class="mr-2 small" title="Filtered Message" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-lock"></i></span> {{convo.timeAgo}}</p>
 								<p v-if="!hideTimestamps" class="small text-muted font-weight-bold ml-2 d-flex align-items-center justify-content-start" data-timestamp="timestamp"> <span v-if="convo.hidden" class="mr-2 small" title="Filtered Message" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-lock"></i></span> {{convo.timeAgo}}</p>
+								<p v-else>&nbsp;</p>
 							</div>
 							</div>
 						</div>
 						</div>
 						<div v-else class="media d-inline-flex float-right mb-0">
 						<div v-else class="media d-inline-flex float-right mb-0">
@@ -131,6 +132,7 @@
 								</p>
 								</p>
 								<p v-if="!hideTimestamps" class="small text-muted font-weight-bold text-right mr-2"> <span v-if="convo.hidden" class="mr-2 small" title="Filtered Message" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-lock"></i></span> {{convo.timeAgo}}
 								<p v-if="!hideTimestamps" class="small text-muted font-weight-bold text-right mr-2"> <span v-if="convo.hidden" class="mr-2 small" title="Filtered Message" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-lock"></i></span> {{convo.timeAgo}}
 								</p>
 								</p>
+								<p v-else>&nbsp;</p>
 							</div>
 							</div>
 							<img v-if="!hideAvatars" class="ml-3 mt-2 rounded-circle img-thumbnail" :src="profile.avatar" alt="avatar" width="32px">
 							<img v-if="!hideAvatars" class="ml-3 mt-2 rounded-circle img-thumbnail" :src="profile.avatar" alt="avatar" width="32px">
 						</div>
 						</div>

+ 1 - 1
resources/assets/js/components/StoryTimelineComponent.vue

@@ -1,6 +1,6 @@
 <template>
 <template>
 	<div>
 	<div>
-		<div v-if="show" class="card card-body p-0 border mt-4 mb-3 shadow-none">
+		<div v-if="show" class="card card-body p-0 border mt-md-4 mb-md-3 shadow-none">
 			<div id="storyContainer" :class="[list == true ? 'mt-1 mr-3 mb-0 ml-1':'mx-3 mt-3 mb-0 pb-0']"></div>
 			<div id="storyContainer" :class="[list == true ? 'mt-1 mr-3 mb-0 ml-1':'mx-3 mt-3 mb-0 pb-0']"></div>
 		</div>
 		</div>
 	</div>
 	</div>

+ 4 - 4
resources/assets/js/components/Timeline.vue

@@ -6,7 +6,7 @@
 				<button class="btn btn-dark px-4 rounded-pill font-weight-bold shadow" @click="syncNewPosts">Load New Posts</button>
 				<button class="btn btn-dark px-4 rounded-pill font-weight-bold shadow" @click="syncNewPosts">Load New Posts</button>
 			</p>
 			</p>
 		</div>
 		</div>
-		<div class="col-12 pl-3 pl-md-0 pt-3 pl-0">
+		<div class="d-none d-md-block col-12 pl-3 pl-md-0 pt-3 pl-0">
 			<div class="d-none d-md-flex justify-content-between align-items-center">
 			<div class="d-none d-md-flex justify-content-between align-items-center">
 				<p class="lead text-muted mb-0"><i :class="[scope == 'home' ? 'fas fa-home':'fas fa-stream']"></i> &nbsp; {{scope == 'local' ? 'Public' : 'Home'}} Timeline</p>
 				<p class="lead text-muted mb-0"><i :class="[scope == 'home' ? 'fas fa-home':'fas fa-stream']"></i> &nbsp; {{scope == 'local' ? 'Public' : 'Home'}} Timeline</p>
 				<p class="mb-0">
 				<p class="mb-0">
@@ -24,7 +24,7 @@
 			<hr>
 			<hr>
 		</div>
 		</div>
 		<div :class="[modes.distractionFree ? 'col-md-8 col-lg-8 offset-md-2 px-0 mb-sm-3 timeline order-2 order-md-1':'col-md-8 col-lg-8 px-0 mb-sm-3 timeline order-2 order-md-1']">
 		<div :class="[modes.distractionFree ? 'col-md-8 col-lg-8 offset-md-2 px-0 mb-sm-3 timeline order-2 order-md-1':'col-md-8 col-lg-8 px-0 mb-sm-3 timeline order-2 order-md-1']">
-			<div style="margin-top:-8px;">
+			<div style="margin-top:-2px;">
 				<story-component v-if="config.features.stories"></story-component>
 				<story-component v-if="config.features.stories"></story-component>
 			</div>
 			</div>
 			<div>
 			<div>
@@ -33,7 +33,7 @@
 						<span class="sr-only">Loading...</span>
 						<span class="sr-only">Loading...</span>
 					</div>
 					</div>
 				</div>
 				</div>
-				<div :data-status-id="status.id" v-for="(status, index) in feed" :key="`${index}-${status.id}`" class="pt-4">
+				<div :data-status-id="status.id" v-for="(status, index) in feed" :key="`${index}-${status.id}`">
 					<div v-if="index == 0 && showTips && !loading" class="mb-4 card-tips">
 					<div v-if="index == 0 && showTips && !loading" class="mb-4 card-tips">
 						<announcements-card v-on:show-tips="showTips = $event"></announcements-card>
 						<announcements-card v-on:show-tips="showTips = $event"></announcements-card>
 					</div>
 					</div>
@@ -257,7 +257,7 @@
 			</div>
 			</div>
 		</div>
 		</div>
 
 
-		<div v-if="!modes.distractionFree" class="col-md-4 col-lg-4 my-3 order-1 order-md-2 d-none d-md-block">
+		<div v-if="!modes.distractionFree" class="col-md-4 col-lg-4 my-4 order-1 order-md-2 d-none d-md-block">
 			<div>
 			<div>
 
 
 				<!-- <div class="mb-4">
 				<!-- <div class="mb-4">