Skip to content

Commit 6232c2a

Browse files
committed
Added scrolling to scriptingArea
1 parent 06179e5 commit 6232c2a

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

resources/css/blocks.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ body {
9595
min-width: 40px;
9696
min-height: 18px; }
9797

98+
.e-body > .c-footer {
99+
margin-bottom: 15px; }
100+
98101
.c-header {
99102
border-bottom-left-radius: 0px;
100103
box-shadow: -1px -1px 0px #A9A9A9;
@@ -187,5 +190,3 @@ body {
187190
background-color: white;
188191
color: black;
189192
cursor: text; }
190-
191-
/*# sourceMappingURL=blocks.css.map */

resources/css/blocks.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ body {
100100
min-width:40px;
101101
min-height:18px;
102102
}
103+
.e-body > .c-footer {
104+
margin-bottom: 15px;
105+
}
103106
.c-header {
104107
border-bottom-left-radius:0px;
105108
box-shadow: -1px -1px 0px #A9A9A9;
@@ -197,4 +200,4 @@ body {
197200
color:black;
198201
cursor:text;
199202
}
200-
}
203+
}

resources/css/style.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ body {
9696
min-width: 40px;
9797
min-height: 18px; }
9898

99+
.e-body > .c-footer {
100+
margin-bottom: 15px; }
101+
99102
.c-header {
100103
border-bottom-left-radius: 0px;
101104
box-shadow: -1px -1px 0px #A9A9A9;
@@ -293,7 +296,7 @@ html, body {
293296
.scriptingArea {
294297
height: calc(100% - 200px - 12px);
295298
min-width: 100%;
296-
overflow: visible;
299+
overflow: scroll;
297300
position: relative;
298301
background: linear-gradient(rgba(68, 76, 84, 0.6), rgba(68, 76, 84, 0.6)), url("../img/diagonalTexture.png");
299302
z-index: 1; }
@@ -611,5 +614,3 @@ html, body {
611614
@media (max-width: 450px) {
612615
.advanceWrap {
613616
display: none; } }
614-
615-
/*# sourceMappingURL=style.css.map */

resources/css/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ html, body {
2828
.scriptingArea {
2929
height: calc(100% - 200px - 12px);
3030
min-width: 100%;
31-
overflow: visible;
31+
overflow: scroll;
3232
position: relative;
3333

3434
//for some reason this is cutting off the hat block ::after element...

0 commit comments

Comments
 (0)