You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
2.2 KiB

@import "_mixins";
10 years ago
.page.log {
10 years ago
.nav {
text-align: right;
padding: 0;
margin: 0;
10 years ago
li {
display: inline-block;
padding: 5px 10px;
margin: 0;
10 years ago
&.select, &.clear {
cursor: pointer;
}
10 years ago
&:hover:not(.active):not(.filter) {
background: rgba(255, 255, 255, 0.1);
}
10 years ago
&.active {
font-weight: bold;
cursor: default;
background: rgba(255,255,255,.1);
}
}
10 years ago
}
10 years ago
.hint {
11 years ago
font-style: italic;
opacity: .5;
10 years ago
margin-top: 3px;
11 years ago
}
10 years ago
.loading {
text-align: center;
font-size: 20px;
padding: 50px;
14 years ago
}
10 years ago
.container {
padding: $padding;
overflow: hidden;
10 years ago
line-height: 150%;
select {
vertical-align: top;
11 years ago
}
10 years ago
.time {
clear: both;
font-size: 11px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
padding: 0 3px;
font-family: Lucida Console, Monaco, Nimbus Mono L, monospace, serif;
&.highlight {
background: $theme_off;
}
span {
padding: 5px 0 3px;
display: inline-block;
vertical-align: middle;
}
::selection {
background-color: #000;
color: #FFF;
}
11 years ago
}
10 years ago
.type {
margin-left: 10px;
}
14 years ago
10 years ago
.message {
float: right;
width: 86%;
white-space: pre-wrap;
}
10 years ago
.error { color: #FFA4A4; }
.debug span { opacity: .6; }
}
11 years ago
10 years ago
[data-filter=INFO] .error,
[data-filter=INFO] .debug,
[data-filter=ERROR] .debug,
[data-filter=ERROR] .info,
[data-filter=DEBUG] .info,
[data-filter=DEBUG] .error {
10 years ago
display: none;
}
11 years ago
}
10 years ago
.report_popup.report_popup {
11 years ago
position: fixed;
left: 0;
10 years ago
right: 0;
bottom: 0;
11 years ago
top: 0;
z-index: 99999;
font-size: 14px;
10 years ago
display: flex;
justify-content: center;
align-items: center;
opacity: 1;
color: #FFF;
pointer-events: auto;
11 years ago
10 years ago
.button {
11 years ago
display: inline-block;
margin: 10px 0;
padding: 10px;
10 years ago
color: $background_color;
11 years ago
}
10 years ago
.bug {
width: 80%;
11 years ago
height: 80%;
10 years ago
max-height: 800px;
max-width: 800px;
display: flex;
flex-flow: column nowrap;
11 years ago
10 years ago
textarea {
11 years ago
display: block;
width: 100%;
background: #FFF;
padding: 20px;
overflow: auto;
color: #666;
height: 70%;
font-size: 12px;
}
10 years ago
}
11 years ago
}
10 years ago
.do_report.do_report {
z-index: 10000;
position: absolute;
padding: 10px;
background: $primary_color;
11 years ago
color: #FFF;
}