mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fix UI script content and output display height. (#14168)
relates to #13847 fix max height for script content and output in the script details modal. new max heights:  - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality
This commit is contained in:
parent
4cf2e6d570
commit
ccda98d769
3 changed files with 6 additions and 1 deletions
|
|
@ -0,0 +1 @@
|
|||
- fix script content and output formatting on the scripts detail modal.
|
||||
|
|
@ -0,0 +1 @@
|
|||
- fix the displayed max-height display for script content and output in the script details modal.
|
||||
|
|
@ -16,7 +16,8 @@
|
|||
|
||||
&__script-content-textarea {
|
||||
box-sizing: border-box;
|
||||
min-height: 300px;
|
||||
height: 300px;
|
||||
overflow-y: auto;
|
||||
font-family: "SourceCodePro";
|
||||
}
|
||||
|
||||
|
|
@ -51,5 +52,7 @@
|
|||
|
||||
&__output-textarea {
|
||||
font-family: "SourceCodePro";
|
||||
max-height: 150px;
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue