mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
51cfb07f64
The goal of this PR was to insert new colors, remove legacy colors, and update only the styles accordingly. The Nunito Sans Italic font was also added. Later PRs will include layout, copy, and style change to individual components. These later changes will more exactly resemble the current mockups.
181 lines
3.4 KiB
CSS
181 lines
3.4 KiB
CSS
.ace_editor.ace-kolide {
|
|
font-family: 'SourceCodePro', monospace;
|
|
font-size: 14px;
|
|
background-color: #FAFAFA;
|
|
color: #66696f;
|
|
border-radius: 4px;
|
|
border: solid 1px #DBE3E5;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.ace_editor.ace-kolide.ace_focus {
|
|
box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.16);
|
|
background: transparent;
|
|
}
|
|
|
|
.ace_editor.ace-kolide.ace_focus .ace_gutter {
|
|
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
|
|
}
|
|
.ace_editor.ace-kolide.ace_focus .ace_scroller {
|
|
border-bottom: solid 1px #c38dec;
|
|
}
|
|
|
|
.ace-kolide.ace_autocomplete .ace_content {
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.ace-kolide .ace_content {
|
|
padding-left: 6px;
|
|
height: 100% !important;
|
|
}
|
|
|
|
.ace-kolide .ace_gutter {
|
|
background: #fff;
|
|
color: #c38dec;
|
|
z-index: 1;
|
|
border-right: solid 1px #E3E3E3;
|
|
}
|
|
|
|
.ace-kolide .ace_gutter-active-line {
|
|
background-color: rgba(174, 109, 223, 0.15);
|
|
border-radius: 2px;
|
|
left: 4px;
|
|
right: 4px;
|
|
height: 18px !important;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.ace-kolide .ace_print-margin {
|
|
width: 1px;
|
|
background: #f6f6f6;
|
|
}
|
|
|
|
.ace-kolide .ace_scrollbar {
|
|
z-index: 1;
|
|
}
|
|
|
|
.ace-kolide .ace_cursor {
|
|
color: #aeafad
|
|
}
|
|
|
|
/* Hide cursor in read-only mode */
|
|
.ace-kolide .ace_hidden-cursors {
|
|
opacity:0
|
|
}
|
|
|
|
.ace-kolide .ace_marker-layer .ace_selection {
|
|
background: rgba(74, 144, 226, 0.13);
|
|
}
|
|
|
|
.ace-kolide.ace_multiselect .ace_selection.ace_start {
|
|
box-shadow: 0 0 3px 0px #ffffff;
|
|
}
|
|
|
|
.ace-kolide .ace_marker-layer .ace_step {
|
|
background: rgb(255, 255, 0)
|
|
}
|
|
|
|
.ace-kolide .ace_marker-layer .ace_bracket {
|
|
margin: -1px 0 0 -1px;
|
|
border: 1px solid #d1d1d1
|
|
}
|
|
|
|
.ace-kolide .ace_marker-layer .ace_selected-word {
|
|
border: 1px solid #d6d6d6
|
|
}
|
|
|
|
.ace-kolide .ace_invisible {
|
|
color: #d1d1d1
|
|
}
|
|
|
|
.ace-kolide .ace_keyword {
|
|
color: #ae6ddf;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.ace-kolide .ace_osquery-token{
|
|
border-radius: 3px;
|
|
background-color: #ae6ddf;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.ace-kolide .ace_identifier {
|
|
color: #ff5850;
|
|
}
|
|
|
|
.ace-kolide .ace_string {
|
|
color: #4fd061;
|
|
}
|
|
|
|
.ace-kolide .ace_meta,
|
|
.ace-kolide .ace_storage,
|
|
.ace-kolide .ace_storage.ace_type,
|
|
.ace-kolide .ace_support.ace_type {
|
|
color: #8959a8
|
|
}
|
|
|
|
.ace-kolide .ace_keyword.ace_operator {
|
|
color: #3e999f
|
|
}
|
|
|
|
.ace-kolide .ace_constant.ace_character,
|
|
.ace-kolide .ace_constant.ace_language,
|
|
.ace-kolide .ace_constant.ace_numeric,
|
|
.ace-kolide .ace_keyword.ace_other.ace_unit,
|
|
.ace-kolide .ace_support.ace_constant,
|
|
.ace-kolide .ace_variable.ace_parameter {
|
|
color: #f5871f
|
|
}
|
|
|
|
.ace-kolide .ace_constant.ace_other {
|
|
color: #666969
|
|
}
|
|
|
|
.ace-kolide .ace_invalid {
|
|
color: #ffffff;
|
|
background-color: #c82829
|
|
}
|
|
|
|
.ace-kolide .ace_invalid.ace_deprecated {
|
|
color: #ffffff;
|
|
background-color: #ae6ddf
|
|
}
|
|
|
|
.ace-kolide .ace_fold {
|
|
background-color: #4271ae;
|
|
border-color: #4d4d4c
|
|
}
|
|
|
|
.ace-kolide .ace_entity.ace_name.ace_function,
|
|
.ace-kolide .ace_support.ace_function,
|
|
.ace-kolide .ace_variable {
|
|
color: #4271ae
|
|
}
|
|
|
|
.ace-kolide .ace_support.ace_class,
|
|
.ace-kolide .ace_support.ace_type {
|
|
color: #c99e00
|
|
}
|
|
|
|
.ace-kolide .ace_heading,
|
|
.ace-kolide .ace_markup.ace_heading,
|
|
.ace-kolide .ace_string {
|
|
color: #4fd061
|
|
}
|
|
|
|
.ace-kolide .ace_entity.ace_name.ace_tag,
|
|
.ace-kolide .ace_entity.ace_other.ace_attribute-name,
|
|
.ace-kolide .ace_meta.ace_tag,
|
|
.ace-kolide .ace_string.ace_regexp,
|
|
.ace-kolide .ace_variable {
|
|
color: #c82829
|
|
}
|
|
|
|
.ace-kolide .ace_comment {
|
|
color: #8e908c
|
|
}
|
|
|
|
.ace-kolide .ace_indent-guide {
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y
|
|
}
|