mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
a950e9d095
* create new components for query side panel * add reusable icon component that uses svg for icons * integrate with new osquery_fleet_schema.json data * update UI to work with osquery_fleet_schema.json * add remark-gfm to safely support direct urls in markdown * move fleet ace into markdown component so we can render code with ace editor * add testing for new query sidebar * remove incomplete tests for query sidepanel
22 lines
513 B
SCSS
22 lines
513 B
SCSS
.fleet-markdown {
|
|
font-size: $x-small;
|
|
|
|
ul {
|
|
// We need 20px here to keep the list items in line with the left side of
|
|
// the container.
|
|
padding-left: 20px;
|
|
}
|
|
|
|
pre {
|
|
padding: 12px;
|
|
border: 1px solid $ui-blue-gray;
|
|
background-color: $ui-light-grey; // copy fleet ace background color
|
|
|
|
.ace_cursor {
|
|
// We have the !important here as there doesnt seen a way to programatically
|
|
// hide only the cursor in the editor.
|
|
display: none !important
|
|
}
|
|
}
|
|
}
|