* Removed unused css files * Converted all UI elements to patternfly 4 * Implemented config page under same app * Replaced slider with patternfly `Progress` component
88 lines
1.3 KiB
CSS
88 lines
1.3 KiB
CSS
@import "~xterm/lib/xterm.css";
|
|
|
|
.player-wrap {
|
|
min-width: 672px;
|
|
height: auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.player-wrap .panel-body, .player-wrap .console-ct > .terminal {
|
|
padding: 0;
|
|
}
|
|
|
|
.dragnpan {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
#logs-view {
|
|
height: 300px;
|
|
overflow-y: scroll;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#recording-wrap {
|
|
height: 100%;
|
|
}
|
|
|
|
.logs-view-log-time {
|
|
display: inline-block;
|
|
width: 150px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#input-textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: monospace;
|
|
resize: none;
|
|
}
|
|
|
|
#input-player-wrap {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.panel-footer {
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
.search-result {
|
|
margin-left: 5px;
|
|
float: left;
|
|
}
|
|
|
|
.search-results {
|
|
float: left;
|
|
min-height: 25px;
|
|
}
|
|
|
|
.search-component {
|
|
float: left;
|
|
width: 33%;
|
|
}
|
|
|
|
.search-wrap {
|
|
min-height: 25px;
|
|
display:block;
|
|
clear:both;
|
|
}
|
|
|
|
.session_time {
|
|
margin-right:5px;
|
|
}
|
|
|
|
.pf-c-progress__indicator:after {
|
|
content: "";
|
|
position: relative;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 10px;
|
|
background-color: var(--pf-c-progress__indicator--BackgroundColor);
|
|
top: -2px;
|
|
left: 10px;
|
|
float: right;
|
|
}
|