浏览代码

refactor: improved ReportInfoItem

Kristian Vos 3 年之前
父节点
当前提交
e022f18de7
共有 2 个文件被更改,包括 13 次插入2 次删除
  1. 12 2
      frontend/src/components/ReportInfoItem.vue
  2. 1 0
      frontend/src/components/modals/ViewReport.vue

+ 12 - 2
frontend/src/components/ReportInfoItem.vue

@@ -10,7 +10,12 @@
 		</div>
 
 		<div class="item-title-description">
-			<h2 class="item-title">
+			<h2
+				class="item-title"
+				:title="`Reported by ${
+					createdBy.username ? createdBy.username : 'Deleted User'
+				}`"
+			>
 				Reported by
 				<router-link
 					v-if="createdBy.username"
@@ -61,7 +66,7 @@ export default {
 <style lang="scss" scoped>
 .night-mode {
 	.report-info-item {
-		background-color: var(--dark-grey-2) !important;
+		background-color: var(--dark-grey) !important;
 		border: 0 !important;
 	}
 }
@@ -93,6 +98,10 @@ export default {
 		}
 	}
 
+	.item-title-description {
+		min-width: 0;
+	}
+
 	.item-title {
 		font-size: 14px;
 		margin: 0;
@@ -100,6 +109,7 @@ export default {
 
 	.item-description {
 		font-size: 12px;
+		line-height: 14px;
 		text-transform: capitalize;
 		margin: 0;
 	}

+ 1 - 0
frontend/src/components/modals/ViewReport.vue

@@ -267,6 +267,7 @@ export default {
 
 			.item-description {
 				font-size: 14px;
+				line-height: 15px;
 				font-family: Karla, Arial, sans-serif;
 			}
 		}