mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
2fa397548a
* feat/navigate upgrade react router * feat/navigate migrate to react router 6 * feat/navigate style modal * feat/navigate create endpoints for app settings * feat/navigate protect editor with pin * feat/navigate apply dynamic routing draft * feat/navigate upgrade relevant packages * feat/navigate restructure directory and add tests * feat/navigate test aliases validation * feat/navigate validate aliases before sending * feat/navigate create data endpoint * feat/navigate config: prettier * feat/navigate invalidate empty strings * feat/navigate create endpoints * feat/navigate parse on import * feat/navigate navigate to alias * feat/navigate user help and sample data * feat/navigate refact aliases modal * feat/navigate refact settings style * feat/navigate update sample db * feat/navigate link is relative to hostname * feat/navigate navigate to first match * feat/navigate update readme and version bump * feat/navigate config: create shared module * feat/navigate config: cheat module install * feat/navigate fix tests * feat/navigate run tests in pull request * Update ontime_cy.yml
90 lines
1.1 KiB
SCSS
90 lines
1.1 KiB
SCSS
@use 'Info.module' as *;
|
|
@use '../../styles/main' as *;
|
|
@use '../../styles/mixins' as *;
|
|
|
|
.container,
|
|
.container__expanded{
|
|
@include container;
|
|
max-height: 80%;
|
|
}
|
|
|
|
.container__expanded {
|
|
min-height: 50%;
|
|
height: 100%
|
|
}
|
|
|
|
.log {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
font-size: 0.8em;
|
|
user-select:text;
|
|
@include container-bg;
|
|
|
|
li {
|
|
display: flex;
|
|
margin-bottom: 2px;
|
|
|
|
.time {
|
|
width: 13%;
|
|
}
|
|
.origin {
|
|
width: 18%;
|
|
}
|
|
.msg {
|
|
width: 70%;
|
|
}
|
|
}
|
|
|
|
li.info {
|
|
color: #aaa;
|
|
}
|
|
li.warn {
|
|
color: #dd6b20;
|
|
}
|
|
li.error {
|
|
color: #f00;
|
|
}
|
|
|
|
.entry:hover {
|
|
color: #ddd;
|
|
}
|
|
}
|
|
|
|
|
|
.info {
|
|
color: #fff;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
.client {
|
|
color: lightblue;
|
|
}
|
|
|
|
.toggleBar {
|
|
display: flex;
|
|
font-size: 0.7em;
|
|
justify-content: flex-start;
|
|
gap: 1em;
|
|
padding: 0.5em 0;
|
|
font-weight: 600;
|
|
|
|
div {
|
|
padding: 2px 8px;
|
|
background: #0002;
|
|
border: 1px solid #fff1;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
div.active {
|
|
background: $ontime-accent;
|
|
color: darken($ontime-accent, 70%);
|
|
}
|
|
|
|
.clear {
|
|
border: 1px solid rgba($ontime-pink, 0.5);
|
|
}
|
|
} |