mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-26 02:16:16 -04:00
tests: Make the Mocha results area resizable
This commit is contained in:
parent
c4239b6059
commit
45ca82fd9f
6 changed files with 34 additions and 8 deletions
|
@ -6,8 +6,6 @@ body {
|
|||
padding: 0px;
|
||||
margin: 0px;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
@ -15,8 +13,21 @@ body {
|
|||
display: none;
|
||||
}
|
||||
|
||||
#split-view {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: 20% 10px 1fr;
|
||||
}
|
||||
|
||||
#separator {
|
||||
grid-column: 2;
|
||||
grid-row: 1/-1;
|
||||
cursor: col-resize;
|
||||
background-color: #999;
|
||||
}
|
||||
|
||||
#iframe-container {
|
||||
width: 80%;
|
||||
height: 100%;
|
||||
overflow: auto hidden;
|
||||
}
|
||||
|
@ -30,11 +41,8 @@ body {
|
|||
|
||||
#mocha {
|
||||
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
border-right: 2px solid #999;
|
||||
flex: 1 auto;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
width:20%;
|
||||
font-size:80%;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue