mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
test: fix layout so pad is 820px large, so is not considered as mobile
This commit is contained in:
parent
21afd538aa
commit
87fb23149d
1 changed files with 15 additions and 12 deletions
|
@ -6,6 +6,9 @@ body {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#console {
|
#console {
|
||||||
|
@ -14,33 +17,30 @@ body {
|
||||||
|
|
||||||
#iframe-container {
|
#iframe-container {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
min-width: 820px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#iframe-container iframe {
|
#iframe-container iframe {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position:absolute;
|
|
||||||
min-width:500px;
|
|
||||||
max-width:800px;
|
|
||||||
left:50%;
|
|
||||||
width:100%;
|
width:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mocha {
|
#mocha {
|
||||||
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
border-right: 2px solid #999;
|
border-right: 2px solid #999;
|
||||||
width: 50%;
|
flex: 1 auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: absolute;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
float:left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#mocha #report {
|
#mocha #report {
|
||||||
margin-top: 50px;
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mocha ul, #mocha li {
|
#mocha li {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -175,6 +175,10 @@ body {
|
||||||
-webkit-box-shadow: 0 1px 3px #eee;
|
-webkit-box-shadow: 0 1px 3px #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#report ul {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#report.pass .test.fail {
|
#report.pass .test.fail {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -191,12 +195,11 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#stats {
|
#stats {
|
||||||
position: fixed;
|
padding: 10px;
|
||||||
top: 15px;
|
|
||||||
right: 52%;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: #888;
|
color: #888;
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#stats .progress {
|
#stats .progress {
|
||||||
|
|
Loading…
Reference in a new issue