Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 1 | .serial-lan__wrapper { |
Michael Davis | 640d28a | 2017-08-15 16:58:07 -0500 | [diff] [blame] | 2 | overflow: hidden; |
Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 3 | .btn-export { |
| 4 | margin: 1.8em 0 1.8em 2em; |
| 5 | } |
| 6 | } |
| 7 | |
Michael Davis | 6bd0f26 | 2017-07-27 15:37:14 -0500 | [diff] [blame] | 8 | .serial-lan__copy { |
| 9 | padding: 1em 0; |
| 10 | } |
Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 11 | .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 Padath | 1255e0d | 2018-06-13 23:45:49 +0530 | [diff] [blame^] | 16 | //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 Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 20 | } |
| 21 | |
Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 22 | .serial-lan__actions { |
| 23 | float: right; |
Michael Davis | 6bd0f26 | 2017-07-27 15:37:14 -0500 | [diff] [blame] | 24 | .btn-pop-out, |
| 25 | .btn-export { |
Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 26 | text-decoration: none; |
Michael Davis | 6bd0f26 | 2017-07-27 15:37:14 -0500 | [diff] [blame] | 27 | font-size: .9em; |
Michael Davis | 640d28a | 2017-08-15 16:58:07 -0500 | [diff] [blame] | 28 | &:hover { |
| 29 | text-decoration: underline; |
| 30 | } |
Michael Davis | 6bd0f26 | 2017-07-27 15:37:14 -0500 | [diff] [blame] | 31 | &:visited { |
| 32 | color: $black; |
| 33 | } |
Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 34 | } |
Michael Davis | 640d28a | 2017-08-15 16:58:07 -0500 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | .serial-lan__header { |
| 38 | background: $white; |
| 39 | padding: 1.2em; |
| 40 | line-height: 0; |
| 41 | a {color: $black;} |
Jayashankar Padath | 1255e0d | 2018-06-13 23:45:49 +0530 | [diff] [blame^] | 42 | } |