mirror of
https://github.com/Equicord/Equicord.git
synced 2025-04-02 13:41:58 -04:00
106 lines
2.1 KiB
CSS
106 lines
2.1 KiB
CSS
.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;
|
|
}
|
|
|
|
div[class*="messagelogger-deleted"] [class*="contents"] > :is(div, h1, h2, h3, p) {
|
|
color: var(--text-normal) !important;
|
|
}
|
|
|
|
/* Markdown title highlighting */
|
|
div[class*="messagelogger-deleted"] [class*="contents"] :is(h1, h2, h3) {
|
|
color: var(--text-normal) !important;
|
|
}
|
|
|
|
/* Bot "thinking" text highlighting */
|
|
div[class*="messagelogger-deleted"] [class*="colorStandard"] {
|
|
color: var(--text-normal) !important;
|
|
}
|
|
|
|
/* Embed highlighting */
|
|
div[class*="messagelogger-deleted"] article :is(div, span, h1, h2, h3, p) {
|
|
color: var(--text-normal) !important;
|
|
}
|
|
|
|
div[class*="messagelogger-deleted"] a {
|
|
color: var(--text-link) !important;
|
|
text-decoration: underline;
|
|
}
|