2020-11-05 05:22:05 -05:00
|
|
|
.logs-pane {
|
|
|
|
.full-size;
|
|
|
|
top: @pdf-top-offset;
|
|
|
|
overflow-y: auto;
|
|
|
|
background-color: @logs-pane-bg;
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.logs-pane-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: @padding-sm;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs-pane-actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
padding: @padding-sm 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs-pane-actions-clear-cache {
|
|
|
|
.no-outline-ring-on-click;
|
|
|
|
margin-right: @margin-sm;
|
|
|
|
}
|
|
|
|
|
2020-11-05 05:22:05 -05:00
|
|
|
.log-entry {
|
|
|
|
margin-bottom: @margin-sm;
|
2020-12-02 05:03:03 -05:00
|
|
|
border-radius: @border-radius-base;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-first-error-popup {
|
|
|
|
border-radius: 0;
|
|
|
|
overflow: auto;
|
2020-11-05 05:22:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-header {
|
|
|
|
padding: 3px @padding-sm;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2020-12-02 05:03:03 -05:00
|
|
|
color: #fff;
|
2020-11-05 05:22:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-header-error {
|
|
|
|
background-color: @ol-red;
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-header-link-error {
|
|
|
|
.btn-alert-variant(@ol-red);
|
|
|
|
}
|
|
|
|
|
2020-11-05 05:22:05 -05:00
|
|
|
.log-entry-header-warning {
|
|
|
|
background-color: @orange;
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-header-link-warning {
|
|
|
|
.btn-alert-variant(@orange);
|
|
|
|
}
|
|
|
|
|
2020-11-05 05:22:05 -05:00
|
|
|
.log-entry-header-typesetting {
|
|
|
|
background-color: @ol-blue;
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-header-link-typesetting {
|
|
|
|
.btn-alert-variant(@ol-blue);
|
|
|
|
}
|
|
|
|
|
2020-11-16 05:15:29 -05:00
|
|
|
.log-entry-header-raw {
|
|
|
|
background-color: @ol-blue-gray-4;
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-header-link-raw {
|
|
|
|
.btn-alert-variant(@ol-blue-gray-4);
|
|
|
|
}
|
|
|
|
|
2021-01-14 10:16:54 -05:00
|
|
|
.log-entry-header-success {
|
|
|
|
background-color: @green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-header-link-success {
|
|
|
|
.btn-alert-variant(@green);
|
|
|
|
}
|
|
|
|
|
2020-11-05 05:22:05 -05:00
|
|
|
.log-entry-header-title,
|
|
|
|
.log-entry-header-link {
|
|
|
|
font-family: @font-family-sans-serif;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
font-weight: 700;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin: 0;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2021-01-21 07:21:22 -05:00
|
|
|
.log-entry-header-icon-container {
|
|
|
|
margin-right: @margin-sm;
|
|
|
|
}
|
|
|
|
|
2020-11-05 05:22:05 -05:00
|
|
|
.log-entry-header-link {
|
2020-12-02 05:03:03 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: 9999px;
|
2020-11-05 05:22:05 -05:00
|
|
|
border-width: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
text-align: right;
|
2020-12-02 05:03:03 -05:00
|
|
|
margin-left: @margin-sm;
|
|
|
|
max-width: 33%;
|
2021-01-21 07:21:22 -05:00
|
|
|
padding: 0 @padding-xs;
|
2020-11-05 05:22:05 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2021-01-21 07:21:22 -05:00
|
|
|
text-decoration: none;
|
2020-11-05 05:22:05 -05:00
|
|
|
outline: 0;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-header-link-location {
|
|
|
|
white-space: nowrap;
|
|
|
|
direction: rtl;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 @padding-xs;
|
|
|
|
}
|
|
|
|
|
2020-11-05 05:22:05 -05:00
|
|
|
.log-entry-content {
|
|
|
|
background-color: #fff;
|
|
|
|
padding: @padding-sm;
|
|
|
|
}
|
|
|
|
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-content-raw-container {
|
2020-11-05 05:22:05 -05:00
|
|
|
background-color: @ol-blue-gray-1;
|
|
|
|
border-radius: @border-radius-base;
|
2020-12-02 05:03:03 -05:00
|
|
|
overflow: hidden;
|
2021-10-12 04:47:46 -04:00
|
|
|
margin-top: @margin-sm;
|
2020-11-05 05:22:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-content-raw {
|
2020-12-02 05:03:03 -05:00
|
|
|
font-size: @font-size-extra-small;
|
2020-11-05 05:22:05 -05:00
|
|
|
color: @ol-blue-gray-4;
|
2020-12-02 05:03:03 -05:00
|
|
|
padding: @padding-sm;
|
2020-11-05 05:22:05 -05:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-content-button-container {
|
2020-12-02 05:03:03 -05:00
|
|
|
position: relative;
|
2020-11-05 05:22:05 -05:00
|
|
|
height: 40px;
|
2020-12-02 05:03:03 -05:00
|
|
|
margin-top: 0;
|
|
|
|
transition: margin 0.15s ease-in-out, opacity 0.15s ease-in-out;
|
2020-11-05 05:22:05 -05:00
|
|
|
padding-bottom: @padding-sm;
|
|
|
|
text-align: center;
|
2020-12-02 05:03:03 -05:00
|
|
|
background-image: linear-gradient(0, @ol-blue-gray-1, transparent);
|
2020-11-05 05:22:05 -05:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
|
|
|
}
|
2020-12-02 05:03:03 -05:00
|
|
|
.log-entry-content-button-container-collapsed {
|
|
|
|
margin-top: -40px;
|
2020-11-05 05:22:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry-btn-expand-collapse {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2020-11-16 05:01:01 -05:00
|
|
|
.no-outline-ring-on-click;
|
2020-11-05 05:22:05 -05:00
|
|
|
}
|
|
|
|
|
2020-11-26 04:58:42 -05:00
|
|
|
.log-entry-formatted-content,
|
|
|
|
.log-entry-content-link {
|
2020-11-05 05:22:05 -05:00
|
|
|
font-size: @font-size-small;
|
2020-11-26 04:58:42 -05:00
|
|
|
margin-top: @margin-xs;
|
|
|
|
&:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2020-11-05 05:22:05 -05:00
|
|
|
}
|
2020-11-16 05:01:01 -05:00
|
|
|
|
2021-07-05 09:04:13 -04:00
|
|
|
.log-entry-formatted-content-list {
|
|
|
|
margin: @margin-xs 0;
|
|
|
|
padding-left: @padding-md;
|
|
|
|
}
|
|
|
|
|
2020-11-16 05:01:01 -05:00
|
|
|
.first-error-popup {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: @toolbar-small-height + 2px;
|
|
|
|
right: @padding-xs;
|
|
|
|
width: 90%;
|
|
|
|
max-width: 450px;
|
|
|
|
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
|
|
|
|
animation: fade-in 0.15s linear 0s 1 none;
|
|
|
|
background-color: #fff;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
.triangle(top, @padding-sm, @padding-xs, @ol-red);
|
|
|
|
top: -@padding-xs;
|
2020-12-02 05:03:03 -05:00
|
|
|
right: @padding-xl;
|
2020-11-16 05:01:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.first-error-popup-actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 0 @padding-sm @padding-sm @padding-sm;
|
2020-12-02 05:03:03 -05:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2020-11-16 05:01:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.first-error-btn {
|
|
|
|
.no-outline-ring-on-click;
|
|
|
|
}
|
2020-12-02 05:03:03 -05:00
|
|
|
|
|
|
|
.log-location-tooltip {
|
|
|
|
word-break: break-all;
|
|
|
|
&.tooltip.in {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
& > .tooltip-inner {
|
|
|
|
max-width: 450px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|