mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
* Fix navbar collapse breakpoint * Fix list filter colors and height * Make styling similar to v2 * Fix scene card zoom and orientation * Keep p tag even without details * Fix custom css * Default settings tab to tasks * Fix flickering progress bar. Fix percentage. * Fix unsetting studio * Fix scene gallery select * Don't hide edit on small devices * Fix log dropdown style * Use monospace for custom css input
38 lines
558 B
SCSS
38 lines
558 B
SCSS
.logs {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
font-size: smaller;
|
|
max-height: 100vh;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
padding-top: 1rem;
|
|
white-space: pre-wrap;
|
|
|
|
.debug {
|
|
color: lightgreen;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.info {
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.warning {
|
|
color: orange;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.log-time {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
#configuration-tabs-tabpane-about .table {
|
|
width: initial;
|
|
}
|