This commit is contained in:
thororen 2024-04-17 14:29:47 -04:00
parent 538b87062a
commit ea7451bcdc
326 changed files with 24876 additions and 2280 deletions

View file

@ -0,0 +1,82 @@
.msg-logger-modal-root {
max-height: 80vh;
min-height: 80vh;
min-width: 85vw;
max-width: 85vw;
}
.msg-logger-modal-empty-logs {
display: grid;
place-content: center;
height: 100%;
}
.msg-logger-modal-header {
flex-direction: column;
/* width: 100%; */
}
.msg-logger-modal-content-container {
/* max-height: 80vh; */
overflow: hidden;
height: 100%;
transition: opacity 100ms ease-in;
}
.msg-logger-modal-content {
padding-bottom: 20px;
height: 100%;
}
.msg-logger-modal-content-inner {
padding-top: 1rem;
padding-bottom: 1rem;
height: 100%;
}
.msg-logger-modal-header>div:has(input) {
width: 100%;
}
.msg-logger-modal-tab-bar-item {
margin-right: 32px;
padding-bottom: 16px;
margin-bottom: -2px;
}
.msg-logger-modal-tab-bar {
margin-top: 20px;
width: 100%;
justify-content: space-around;
}
.vc-log-toolbox-btn svg {
color: var(--interactive-normal);
}
:is(.vc-log-toolbox-btn:hover, .vc-log-toolbox-btn[class*='selected']) svg {
color: var(--interactive-active);
}
.folder-upload-container {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--background-secondary);
}
.folder-upload-input {
cursor: pointer;
padding: 10px 0 10px 10px;
color: var(--header-secondary);
}
.folder-upload-button {
margin: 6px;
padding: 4px 8px;
}
.vc-updater-modal-content {
padding: 1rem 2rem;
}