2014-05-14 01:17:26 +04:00
|
|
|
body {
|
2014-05-14 03:30:15 +04:00
|
|
|
padding: 20px;
|
2014-05-14 01:17:26 +04:00
|
|
|
padding-top: 270px;
|
2014-05-14 03:30:15 +04:00
|
|
|
white-space: nowrap;
|
|
|
|
float: left;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
|
|
|
|
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%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-log-container {
|
2014-05-14 01:17:26 +04:00
|
|
|
height: auto;
|
2014-05-21 01:20:41 +04:00
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
overflow: auto;
|
|
|
|
right: 0px;
|
|
|
|
top: 270px;
|
|
|
|
left: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
padding: 20px;
|
|
|
|
background: #EFEFEF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-log-line {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-line-number {
|
|
|
|
background-color: #232323;
|
|
|
|
color: #EFEFEF;
|
|
|
|
padding: 2px 5px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
|
|
|
min-width: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-danger .lv-line-number {
|
|
|
|
background: #e74c3c !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lv-line-highlight {
|
|
|
|
background-color: LightGrey;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.run-data {
|
|
|
|
height: 270px;
|
2014-05-14 03:16:51 +04:00
|
|
|
width: 100%;
|
2014-05-14 01:17:26 +04:00
|
|
|
position: fixed;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
background-color: #FFF;
|
|
|
|
padding: 30px;
|
|
|
|
border-bottom: 1px solid #EFEFEF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.run-data .steps-data {
|
|
|
|
height: 210px;
|
|
|
|
overflow: auto;
|
|
|
|
border: 1px solid #EFEFEF;
|
2014-05-15 03:44:43 +04:00
|
|
|
padding: 10px;
|
2014-05-14 03:16:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.logviewer-step.btn-success.selected {
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #47a447;
|
|
|
|
border-color: #398439;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logviewer-step.btn-warning.selected {
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #ed9c28;
|
|
|
|
border-color: #d58512;
|
2014-05-14 03:30:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.lv-line-no.label {
|
|
|
|
border-radius: 0px;
|
2014-05-15 03:44:43 +04:00
|
|
|
}
|
|
|
|
|
2014-05-21 01:20:41 +04:00
|
|
|
.lv-log-loading {
|
|
|
|
position: fixed;
|
|
|
|
top: 280px;
|
|
|
|
left: 50%;
|
|
|
|
background: #FFF;
|
|
|
|
color: #585858;
|
|
|
|
width: 150px;
|
|
|
|
margin-left: -75px;
|
|
|
|
font-size: 2em;
|
2014-05-14 01:17:26 +04:00
|
|
|
}
|