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
|
|
|
.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 */
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:15:08 +03:00
|
|
|
.navbar .dropdown-menu {
|
|
|
|
max-height: 600px;
|
|
|
|
overflow: auto;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2015-07-27 19:06:21 +03:00
|
|
|
.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
|
|
|
|
2015-08-11 22:54:31 +03:00
|
|
|
/* Override the position of the shared notification partial */
|
|
|
|
#notification-box {
|
|
|
|
top: 285px;
|
|
|
|
}
|
|
|
|
|
2014-05-21 01:20:41 +04:00
|
|
|
.lv-line-no {
|
|
|
|
width: 3em;
|
|
|
|
}
|
|
|
|
|
2015-09-03 04:32:02 +03:00
|
|
|
.lv-line-text {
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
2015-09-08 20:52:30 +03:00
|
|
|
.lv-line-num {
|
|
|
|
white-space: pre;
|
|
|
|
float: left;
|
|
|
|
align-items: center;
|
|
|
|
border-right: solid thin #e6e6e6;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-o-user-select: none;
|
|
|
|
color: rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-line-num:hover {
|
|
|
|
color: black;
|
|
|
|
background-color: #F8EEC7;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2014-05-21 01:20:41 +04:00
|
|
|
.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;
|
2015-09-08 20:52:30 +03:00
|
|
|
overflow-x: 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() */
|
2015-09-08 20:52:30 +03:00
|
|
|
.lv-log-container > .lv-log-line > .text-danger {
|
2015-07-17 18:23:54 +03:00
|
|
|
background: #fbe3e3;
|
2014-05-21 01:20:41 +04:00
|
|
|
}
|
|
|
|
|
2015-09-08 20:52:30 +03:00
|
|
|
.lv-log-container > div.lv-log-line > div.lv-line-text.lv-selected-lines {
|
|
|
|
background: #F8EEC7;
|
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
|
|
|
}
|
|
|
|
|
2015-08-11 20:09:44 +03:00
|
|
|
div.lv-step {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-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
|
|
|
}
|
|
|
|
|
2015-08-11 20:09:44 +03:00
|
|
|
.lv-step.selected {
|
2014-05-22 05:57:46 +04:00
|
|
|
background-color: #FFF;
|
|
|
|
}
|
|
|
|
|
2015-08-11 20:09:44 +03:00
|
|
|
.lv-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;
|
|
|
|
}
|
|
|
|
|
2015-08-11 22:54:31 +03:00
|
|
|
.actionbtn-warning {
|
|
|
|
margin-right: 1px;
|
|
|
|
padding: 2px;
|
|
|
|
background-color: #fcf8e3;
|
|
|
|
border: 1px solid #fbd890;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: #8a6d3b;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|