2014-10-31 20:53:11 +03:00
|
|
|
/* 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 {
|
2014-08-03 07:48:34 +04:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
min-width: 240px;
|
|
|
|
padding-top: 15px;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
|
|
|
|
2014-11-02 08:57:38 +03:00
|
|
|
/* Suppress selected angular templates until they compile */
|
|
|
|
[ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2014-05-21 01:20:41 +04:00
|
|
|
/*Log Viewer*/
|
|
|
|
|
|
|
|
.lv-line-no {
|
|
|
|
width: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-error-line {
|
|
|
|
background-color: white;
|
|
|
|
color: #333333;
|
|
|
|
width: 100%;
|
2014-07-04 07:23:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.lv-error-line span:nth-child(2) {
|
|
|
|
white-space: normal;
|
2014-05-21 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.lv-log-container {
|
2014-08-03 07:48:34 +04:00
|
|
|
height: 100%;
|
2014-05-21 01:20:41 +04:00
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
2014-08-03 07:48:34 +04:00
|
|
|
bottom: 0;
|
|
|
|
padding: 20px 15px 0;
|
|
|
|
white-space: nowrap;
|
2014-05-21 01:20:41 +04:00
|
|
|
background: #EFEFEF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-log-line {
|
2014-08-03 07:48:34 +04:00
|
|
|
width: 100%;
|
2014-05-21 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-danger .lv-line-number {
|
|
|
|
background: #e74c3c !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-line-highlight {
|
|
|
|
background-color: LightGrey;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.run-data {
|
2014-05-14 03:16:51 +04:00
|
|
|
width: 100%;
|
2014-05-14 01:17:26 +04:00
|
|
|
background-color: #FFF;
|
2014-08-03 07:48:34 +04:00
|
|
|
padding: 20px 5px 4px;
|
|
|
|
display: table-row;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.run-data .steps-data {
|
2014-08-03 07:48:34 +04:00
|
|
|
max-height: 210px;
|
2014-05-14 01:17:26 +04:00
|
|
|
overflow: auto;
|
2014-07-17 22:03:27 +04:00
|
|
|
border-color: #dddddd;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid none;
|
2014-05-14 03:16:51 +04:00
|
|
|
}
|
|
|
|
|
2014-06-03 01:47:35 +04:00
|
|
|
.logviewer-step {
|
2014-07-17 22:03:27 +04:00
|
|
|
border-radius: 2px;
|
2014-06-03 01:47:35 +04:00
|
|
|
overflow: hidden;
|
2014-07-04 07:23:35 +04:00
|
|
|
-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
|
|
|
}
|
|
|
|
|
2014-05-22 05:57:46 +04:00
|
|
|
.logviewer-step.selected {
|
|
|
|
color: #232323;
|
|
|
|
background-color: #FFF;
|
|
|
|
}
|
|
|
|
|
2014-05-14 03:16:51 +04:00
|
|
|
.logviewer-step.btn-success.selected {
|
|
|
|
border-color: #398439;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logviewer-step.btn-warning.selected {
|
|
|
|
border-color: #d58512;
|
2014-05-14 03:30:15 +04:00
|
|
|
}
|
|
|
|
|
2014-07-17 22:03:27 +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;
|
2014-07-04 07:23:35 +04:00
|
|
|
margin: 0em 0.6em 0em 0em;
|
2014-05-15 03:44:43 +04:00
|
|
|
}
|
|
|
|
|
2014-10-19 02:00:36 +04:00
|
|
|
.lv-log-msg {
|
2014-05-21 01:20:41 +04:00
|
|
|
position: fixed;
|
2014-10-19 02:00:36 +04:00
|
|
|
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
|
|
|
}
|
2014-09-12 01:52:48 +04:00
|
|
|
|
|
|
|
.lv-log-error {
|
2014-10-19 02:00:36 +04:00
|
|
|
border: 2px solid #ff0000;
|
2014-09-12 01:52:48 +04:00
|
|
|
}
|