treeherder/ui/css/logviewer.css

137 строки
2.2 KiB
CSS
Исходник Обычный вид История

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2014-05-14 01:17:26 +04:00
body {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
min-width: 240px;
padding-top: 15px;
2014-05-14 01:17:26 +04:00
}
/*Log Viewer*/
.lv-line-no {
width: 3em;
}
.lv-error-line {
background-color: white;
color: #333333;
width: 100%;
}
.lv-error-line span:nth-child(2) {
white-space: normal;
}
.lv-log-container {
height: 100%;
width: 100%;
overflow: auto;
bottom: 0;
padding: 20px 15px 0;
white-space: nowrap;
background: #EFEFEF;
}
.lv-log-line {
width: 100%;
}
.text-danger .lv-line-number {
background: #e74c3c !important;
}
.lv-line-highlight {
background-color: LightGrey;
2014-05-14 01:17:26 +04:00
}
.run-data {
width: 100%;
2014-05-14 01:17:26 +04:00
background-color: #FFF;
padding: 20px 5px 4px;
display: table-row;
2014-05-14 01:17:26 +04:00
}
.run-data .steps-data {
max-height: 210px;
2014-05-14 01:17:26 +04:00
overflow: auto;
border-color: #dddddd;
border-width: 1px;
border-style: solid none;
}
2014-06-03 01:47:35 +04:00
.logviewer-step {
border-radius: 2px;
2014-06-03 01:47:35 +04:00
overflow: hidden;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
2014-06-03 01:47:35 +04:00
}
.logviewer-step.selected {
color: #232323;
background-color: #FFF;
}
.logviewer-step.btn-success.selected {
border-color: #398439;
}
.logviewer-step.btn-warning.selected {
border-color: #d58512;
2014-05-14 03:30:15 +04:00
}
.logviewer-stepbar {
display: inline-block;
margin: 8px 8px 8px 0px;
padding: 6px 8px;
border: 1px solid #dddddd;
}
.logviewer-stepbar span {
color: #9fa3a5;
}
.logviewer-stepbar input[type="checkbox"] {
margin: 0;
vertical-align: middle;
}
2014-05-14 03:30:15 +04:00
.lv-line-no.label {
border-radius: 0px;
margin: 0em 0.6em 0em 0em;
2014-05-15 03:44:43 +04:00
}
.lv-log-msg {
position: fixed;
top: 530px;
left: 3%;
font-weight: bold;
}
.lv-log-msg-step {
padding: 2px 5px;
background: #fff;
border: solid #f0ad4e;
border-width: 4px 2px 2px;
border-radius: 2px;
}
.lv-log-overlay {
padding: 6px;
border: 2px solid #4cae4c;
border-radius: 3px;
background: #fff;
2014-06-03 01:47:35 +04:00
}
.lv-log-error {
border: 2px solid #ff0000;
}