added mods list/improved list visual
This commit is contained in:
29
dist/css/style.css
vendored
29
dist/css/style.css
vendored
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user