Browse Source

feat(EditSong): added nightmode styling for autosuggest box

Kristian Vos 3 years ago
parent
commit
00cc4ce1c3
1 changed files with 15 additions and 0 deletions
  1. 15 0
      frontend/src/components/modals/EditSong/index.vue

+ 15 - 0
frontend/src/components/modals/EditSong/index.vue

@@ -1582,6 +1582,21 @@ export default {
 		}
 	}
 
+	.autosuggest-container {
+		background-color: unset !important;
+	}
+
+	.autosuggest-item {
+		background-color: var(--dark-grey) !important;
+		color: white !important;
+		border-color: var(--dark-grey) !important;
+	}
+
+	.autosuggest-item:hover,
+	.autosuggest-item:focus {
+		background-color: var(--dark-grey-2) !important;
+	}
+
 	#tabs-container #tab-selection .button {
 		background: var(--dark-grey) !important;
 		color: var(--white) !important;