2016-07-18 14:54:06 +00:00
|
|
|
/* MATERIAL */
|
|
|
|
.vertical-repeater {
|
2016-07-23 01:03:03 +00:00
|
|
|
height: 100%;
|
2016-07-25 04:58:32 +00:00
|
|
|
min-height: 400px;
|
2016-07-18 14:54:06 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2016-07-19 10:38:29 +00:00
|
|
|
.status {
|
|
|
|
width: 3%;
|
|
|
|
}
|
2016-07-18 14:54:06 +00:00
|
|
|
.status.green{
|
2016-07-22 08:13:56 +00:00
|
|
|
background-color: rgb(49, 196, 113);
|
2016-07-18 14:54:06 +00:00
|
|
|
}
|
|
|
|
.status.red{
|
2016-07-22 08:13:56 +00:00
|
|
|
background-color: red;
|
2016-07-19 10:38:29 +00:00
|
|
|
}
|
2016-07-22 15:41:09 +00:00
|
|
|
.status.orange {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
2016-07-25 13:33:17 +00:00
|
|
|
.status.grey {
|
|
|
|
background-color: grey;
|
|
|
|
}
|
2016-07-22 11:34:36 +00:00
|
|
|
.status.round{
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
}
|
2016-07-25 13:33:17 +00:00
|
|
|
.status.rectangle{
|
|
|
|
width: 8px;
|
|
|
|
height: 20px;
|
|
|
|
float: right;
|
|
|
|
}
|
2016-07-19 10:38:29 +00:00
|
|
|
.sideNavBox {
|
|
|
|
margin-bottom: 0px;
|
2016-07-22 10:16:33 +00:00
|
|
|
}
|
2016-07-22 11:34:36 +00:00
|
|
|
.right-text {
|
|
|
|
text-align: right;
|
2016-07-23 01:03:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header_logo > a {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2016-07-24 04:10:53 +00:00
|
|
|
|
|
|
|
.glyphicon-chevron-right{
|
|
|
|
|
|
|
|
background-color: #3caed2;
|
|
|
|
padding-top: 4px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-right: 13px;
|
|
|
|
padding-left: 13px;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glyphicon-chevron-left{
|
|
|
|
|
|
|
|
background-color: #3caed2;
|
|
|
|
padding-top: 4px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-right: 13px;
|
|
|
|
padding-left: 13px;
|
|
|
|
color: white;
|
|
|
|
}
|
2016-07-24 06:11:00 +00:00
|
|
|
.md-button.active {
|
|
|
|
background-color: rgba(158,158,158,0.2);
|
|
|
|
}
|
|
|
|
md-list-item.active._md-button-wrap.ng-scope._md.md-clickable{
|
|
|
|
background-color: rgba(158,158,158,0.2);
|
2016-07-27 10:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logTable {
|
|
|
|
font-family: Consolas, Helvetica;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.4;
|
|
|
|
color: #333;
|
|
|
|
word-wrap: break-word;
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.logTable tbody tr {
|
|
|
|
min-height: 18px;
|
|
|
|
}
|
|
|
|
.logTable tbody tr td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.logTableNumber {
|
|
|
|
width: 30px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
color: rgba(0,0,0,0.3);
|
|
|
|
text-align: center;
|
|
|
|
border: solid #eee;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
.logTableCode {
|
|
|
|
overflow: visible;
|
|
|
|
position: relative;
|
|
|
|
padding-right: 5px !important;
|
|
|
|
padding-left: 10px !important;
|
|
|
|
vertical-align: top;
|
|
|
|
border: solid #eee;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
.logTableCodeOdd {
|
|
|
|
background-color: #f7f7f7;
|
2016-07-25 11:59:53 +00:00
|
|
|
}
|