##// END OF EJS Templates
Prevent terminal from scrolling
Jonathan Frederic -
Show More
@@ -0,0 +1,7 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
5 body {
6 overflow: hidden;
7 }
@@ -41,5 +41,6 b' label {'
41
41
42 // Our own global variables for all pages go here
42 // Our own global variables for all pages go here
43 @global-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
43 @global-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
44 @global-shadow-dark: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
44 @page-header-padding: 20px;
45 @page-header-padding: 20px;
45
46
@@ -4,7 +4,7 b''
4 color: white;
4 color: white;
5 background: black;
5 background: black;
6 border-radius: @border-radius-base;
6 border-radius: @border-radius-base;
7 box-shadow: 0px 4px 11px 0px gray;
7 .box-shadow(@global-shadow-dark);
8 padding: @code_padding;
8 padding: @code_padding;
9
9
10 &, dummy-screen {
10 &, dummy-screen {
@@ -9,6 +9,11 b' data-ws-path="{{ws_path}}"'
9
9
10 {% endblock %}
10 {% endblock %}
11
11
12 {% block stylesheet %}
13 {{super()}}
14
15 <link rel="stylesheet" href="{{ static_url("terminal/css/override.css") }}" type="text/css" />
16 {% endblock %}
12
17
13 {% block site %}
18 {% block site %}
14
19
General Comments 0
You need to be logged in to leave comments. Login now