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;
|
2015-05-12 20:09:44 +03:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
|
|
|
|
2015-07-27 19:06:21 +03:00
|
|
|
/* Boostrap navbar overrides for logviewer */
|
|
|
|
.navbar {
|
|
|
|
flex: none;
|
|
|
|
min-height: 41px; /* 40 for contained elements + lower bootstrap border */
|
|
|
|
border-top: 0; /* Shut off the top border */
|
|
|
|
border-radius: 0; /* Straight navbar */
|
|
|
|
margin-bottom: 10px; /* Breathing space for run-data */
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav > li > a {
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav > li > div {
|
|
|
|
padding: 10px 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav > li > span {
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-fluid {
|
|
|
|
padding-left: 5px; /* Align logo vertically to run-data table */
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-07-27 19:06:21 +03:00
|
|
|
/* Log Viewer */
|
|
|
|
|
|
|
|
#lv-logo {
|
|
|
|
padding: 10px 15px;
|
|
|
|
border: none;
|
|
|
|
background: #f8f8f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lv-successful-steps {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lv-successful-steps > input {
|
|
|
|
margin: 0;
|
2015-07-31 18:31:49 +03:00
|
|
|
vertical-align: middle;
|
2015-07-27 19:06:21 +03:00
|
|
|
}
|
2014-05-21 01:20:41 +04:00
|
|
|
|
|
|
|
.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 {
|
2015-05-12 20:09:44 +03:00
|
|
|
flex: 1;
|
2014-05-21 01:20:41 +04:00
|
|
|
overflow: auto;
|
2015-03-07 08:29:14 +03:00
|
|
|
font-family: monospace;
|
|
|
|
font-size: small;
|
|
|
|
background: #f8f8f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-log-container > div:nth-child(even) {
|
|
|
|
background: #fff;
|
2014-05-21 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2015-07-17 18:23:54 +03:00
|
|
|
/* Equal weight selector needs to follow the above nth-child() */
|
|
|
|
.lv-log-container > div.text-danger {
|
|
|
|
background: #fbe3e3;
|
2014-05-21 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2015-07-17 18:23:54 +03:00
|
|
|
.lv-log-line {
|
|
|
|
padding: 0 18px;
|
2014-05-21 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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%;
|
2015-05-12 20:09:44 +03:00
|
|
|
flex: none;
|
2014-05-14 01:17:26 +04:00
|
|
|
background-color: #FFF;
|
2015-07-03 19:44:07 +03:00
|
|
|
padding: 10px 5px;
|
2014-08-03 07:48:34 +04:00
|
|
|
display: table-row;
|
2015-07-03 19:44:07 +03:00
|
|
|
font-size: 11px;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
2015-03-08 20:30:15 +03:00
|
|
|
|
2015-01-04 07:28:16 +03:00
|
|
|
.run-data .break-word{
|
|
|
|
-ms-word-break: break-all;
|
|
|
|
word-break: break-all;
|
2014-05-14 01:17:26 +04:00
|
|
|
|
2015-01-04 07:28:16 +03:00
|
|
|
/* Non standard for webkit */
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
-moz-hyphens: auto;
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
2014-05-14 01:17:26 +04:00
|
|
|
.run-data .steps-data {
|
2015-07-27 19:06:21 +03:00
|
|
|
margin-bottom: 10px;
|
2014-08-03 07:48:34 +04:00
|
|
|
max-height: 210px;
|
2015-06-16 19:54:28 +03:00
|
|
|
min-width: 400px;
|
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;
|
2015-01-04 07:28:16 +03:00
|
|
|
white-space: normal;
|
2015-07-03 19:44:07 +03:00
|
|
|
font-size: 11px;
|
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
|
|
|
}
|
|
|
|
|
2015-06-16 19:54:28 +03:00
|
|
|
.logviewer-actionbtn span {
|
2015-07-31 18:31:49 +03:00
|
|
|
color: #777;
|
2014-07-17 22:03:27 +04:00
|
|
|
}
|
|
|
|
|
2015-07-31 18:31:49 +03:00
|
|
|
.actionbtn-icon {
|
2014-12-27 21:29:57 +03:00
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
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 {
|
2015-01-04 07:28:16 +03:00
|
|
|
position: relative;
|
2015-03-07 08:29:14 +03:00
|
|
|
padding: 26px 0 0 20px;
|
2014-10-19 02:00:36 +04:00
|
|
|
font-weight: bold;
|
2015-03-07 08:29:14 +03:00
|
|
|
font-family: sans-serif;
|
2015-07-03 19:44:07 +03:00
|
|
|
font-size: 11px;
|
2014-10-19 02:00:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
2015-07-03 19:44:07 +03:00
|
|
|
|
|
|
|
.job-header {
|
|
|
|
max-height: 240px;
|
|
|
|
overflow-y: auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom: 1px solid #ececec;
|
|
|
|
}
|
|
|
|
|
|
|
|
.job-header > table {
|
|
|
|
margin-bottom: 0;
|
2015-03-07 08:29:14 +03:00
|
|
|
}
|