Parcourir la source

fix(admin/songs): Bulk actions items selected border larger than icons

Owen Diffey il y a 3 ans
Parent
commit
1260b70842
1 fichiers modifiés avec 14 ajouts et 3 suppressions
  1. 14 3
      frontend/src/pages/Admin/tabs/Songs.vue

+ 14 - 3
frontend/src/pages/Admin/tabs/Songs.vue

@@ -769,12 +769,23 @@ export default {
 	margin: 0 auto;
 }
 
-.bulk-popup .bulk-actions {
+/deep/ .bulk-popup .bulk-actions {
 	.verify-songs-icon {
 		color: var(--green);
 	}
-	.unverify-songs-icon {
-		color: var(--dark-red);
+	& > span {
+		position: relative;
+		top: 6px;
+		margin-left: 5px;
+		height: 25px;
+		& > div {
+			height: 25px;
+			& > .unverify-songs-icon {
+				color: var(--dark-red);
+				top: unset;
+				margin-left: unset;
+			}
+		}
 	}
 }
 </style>