}
#editElement {
- background-color: red;
+}
+
+ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+#editElement {
+ padding: 20px;
+ border-radius: 5px;
+ background-color: #d9d9d9;
+ border: 1px solid gray;
+ box-shadow: 5px 5px 5px 5px #d9d9d9;
}
<h2>List of songs in the database:</h2>
<p>Filter songs here:</p>
<input id="allSongFilterList" type="text"></input>
- <ul style="max-height: 200px; overflow-y: auto" id="db_status_song_list">
+ <ul style="max-height: 400px; overflow-y: auto" id="db_status_song_list">
</ul>
<h2>Which rooms these songs are applied to</h2>
let wrap = document.createElement("div")
wrap.id = "key=" + song.Key
let info = document.createElement("p")
+ info.style.display = "inline-block"
+ info.style.margin = "7px 5px 7px 5px"
+ info.style.padding = "2px 5px 2px 5px"
+ info.style.minWidth = "400px"
info.innerText = "(" + song.Key + ") " + song.DisplayTrackName + " by " + song.DisplayArtistNames.replace("~", ", ")
let but = document.createElement("button")