mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Basic plugin structure
This commit is contained in:
37
client/plugins/databasemanager/style.css
Normal file
37
client/plugins/databasemanager/style.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user