blob: c4dd9ac26388b5e521bfd24be984fb11649da1ab [file] [log] [blame]
Michael Davis8b522062017-05-05 09:21:07 -05001.serial-lan__wrapper {
Michael Davis640d28a2017-08-15 16:58:07 -05002 overflow: hidden;
Michael Davis8b522062017-05-05 09:21:07 -05003 .btn-export {
4 margin: 1.8em 0 1.8em 2em;
5 }
6}
7
Michael Davis6bd0f262017-07-27 15:37:14 -05008.serial-lan__copy {
9 padding: 1em 0;
10}
Michael Davis8b522062017-05-05 09:21:07 -050011.serial-lan__terminal {
12 position: relative;
13 width: 101%; //extra 1% to fix redraw issue with terminal window
14 height: 400px;
15 border: 1em solid #19273c;
Jayashankar Padath1255e0d2018-06-13 23:45:49 +053016 //TODO: Need to move from hterm to xterm as iframe used is adding the extra
17 //scroll bar. Also need to rework on the height setting along with $window
18 //directive.
19 overflow-x: hidden;
Michael Davis8b522062017-05-05 09:21:07 -050020}
21
Michael Davis8b522062017-05-05 09:21:07 -050022.serial-lan__actions {
23 float: right;
Michael Davis6bd0f262017-07-27 15:37:14 -050024 .btn-pop-out,
25 .btn-export {
Michael Davis8b522062017-05-05 09:21:07 -050026 text-decoration: none;
Michael Davis6bd0f262017-07-27 15:37:14 -050027 font-size: .9em;
Michael Davis640d28a2017-08-15 16:58:07 -050028 &:hover {
29 text-decoration: underline;
30 }
Michael Davis6bd0f262017-07-27 15:37:14 -050031 &:visited {
32 color: $black;
33 }
Michael Davis8b522062017-05-05 09:21:07 -050034 }
Michael Davis640d28a2017-08-15 16:58:07 -050035}
36
37.serial-lan__header {
38 background: $white;
39 padding: 1.2em;
40 line-height: 0;
41 a {color: $black;}
Jayashankar Padath1255e0d2018-06-13 23:45:49 +053042}