Basic plugin structure

This commit is contained in:
Pax1601
2023-09-22 17:58:37 +02:00
parent 2e279b8876
commit 274ce76c2b
11 changed files with 522 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
#database-control-panel {
display: flex;
flex-direction: row;
}
.dc-scroll-container {
overflow-y: scroll;
max-height: 600px;
width: 300px;
margin: 10px;
color: black;
font-weight: bold;
}
.dc-scroll-container>div:nth-child(even) {
background-color: gainsboro;
}
.dc-scroll-container>div:nth-child(odd) {
background-color: white;
}
.dc-scroll-container>div:hover{
background-color: var(--secondary-blue-text);
color: white;
cursor: pointer;
}
.dc-content-container {
width: 300px;
margin: 10px;
}
.dc-content-container>dd>input {
width: 100%;
font-weight: bold;
}