added mods list/improved list visual

This commit is contained in:
Max
2023-03-17 19:47:10 -05:00
parent 58579e21c3
commit 2a29b41ab1
8 changed files with 122 additions and 50 deletions

29
dist/css/style.css vendored
View File

@@ -308,10 +308,11 @@ input:hover,input:active {
}
.load-panel {
width: 300px;
width: 800px;
background-color: var(--panel-bg);
position: fixed;
display: none;
text-align: center;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
@@ -324,6 +325,32 @@ input:hover,input:active {
padding: 10px;
}
.list-title-container {
flex: 1;
}
.list-container {
overflow-y: scroll;
max-height: 300px;
}
.list-item {
cursor: pointer;
padding: 5px;
border-bottom: 1px solid #ccc;
background-color: var(--btn);
}
.list-item:hover {
background-color: var(--btn-hover);
}
.list-item:active {
background-color: var(--btn-click);
}
.all-list-container {
display: flex;
width: 100%;
}
#close-load-btn {
float: right;
}