Merge pull request #2311 from Haokun-Chen/2234

add responsiveness to job output panel
This commit is contained in:
Haokun Chen 2018-06-26 10:22:53 -04:00 committed by GitHub
commit b7ff3aa8fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View File

@ -133,11 +133,19 @@
}
}
&-wrapper {
display: flex;
height: 100%;
max-height: 644px;
flex-direction: column;
}
&-container {
flex: 1;
display: flex;
flex-direction: column;
font-family: monospace;
height: 100%;
height: auto;
overflow-y: scroll;
font-size: 15px;
border: 1px solid @at-gray-b7;
@ -148,7 +156,6 @@
border-radius: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
max-height: ~"calc(100vh - 350px)";
}
&-borderHeader {

View File

@ -7,6 +7,7 @@
</at-panel>
<at-panel class="at-Stdout" ng-class="{'at-Stdout--fullscreen': vm.isPanelExpanded}">
<div class="at-Stdout-wrapper">
<div class="at-Panel-headingTitle">
{{ vm.title }}
</div>
@ -53,5 +54,6 @@
<div class="at-u-clear"></div>
</div>
</div>
</at-panel>
</div>