
Intégrer un petit éditeur de texte dans l’éditeur de zone DNS, pour améliorer l’expérience utilisateur. Par défaut, cet éditeur ne fournit pas de règles de coloration syntaxique pour les fichiers de zones DNS. Il faut donc un build custom qui l’ajoute. On refait complètement la page de l’éditeur de zones pour que ce soit un peu plus joli, et on active la coloration syntaxique pour le DNS.
165 lines
2.7 KiB
CSS
165 lines
2.7 KiB
CSS
.ace-one-dark .ace_gutter {
|
|
background: #282c34;
|
|
color: #6a6f7a
|
|
}
|
|
|
|
.ace-one-dark .ace_print-margin {
|
|
width: 1px;
|
|
background: #e8e8e8
|
|
}
|
|
|
|
.ace-one-dark {
|
|
background-color: #282c34;
|
|
color: #abb2bf
|
|
}
|
|
|
|
.ace-one-dark .ace_cursor {
|
|
color: #528bff
|
|
}
|
|
|
|
.ace-one-dark .ace_marker-layer .ace_selection {
|
|
background: #3d4350
|
|
}
|
|
|
|
.ace-one-dark.ace_multiselect .ace_selection.ace_start {
|
|
box-shadow: 0 0 3px 0 #282c34;
|
|
border-radius: 2px
|
|
}
|
|
|
|
.ace-one-dark .ace_marker-layer .ace_step {
|
|
background: #c6dbae
|
|
}
|
|
|
|
.ace-one-dark .ace_marker-layer .ace_bracket {
|
|
margin: -1px 0 0 -1px;
|
|
border: 1px solid #747369
|
|
}
|
|
|
|
.ace-one-dark .ace_marker-layer .ace_active-line {
|
|
background: rgba(76, 87, 103, .19)
|
|
}
|
|
|
|
.ace-one-dark .ace_gutter-active-line {
|
|
background-color: rgba(76, 87, 103, .19)
|
|
}
|
|
|
|
.ace-one-dark .ace_marker-layer .ace_selected-word {
|
|
border: 1px solid #3d4350
|
|
}
|
|
|
|
.ace-one-dark .ace_fold {
|
|
background-color: #61afef;
|
|
border-color: #abb2bf
|
|
}
|
|
|
|
.ace-one-dark .ace_keyword {
|
|
color: #c678dd
|
|
}
|
|
|
|
.ace-one-dark .ace_keyword.ace_operator {
|
|
color: #c678dd
|
|
}
|
|
|
|
.ace-one-dark .ace_keyword.ace_other.ace_unit {
|
|
color: #d19a66
|
|
}
|
|
|
|
.ace-one-dark .ace_constant.ace_language {
|
|
color: #d19a66
|
|
}
|
|
|
|
.ace-one-dark .ace_constant.ace_numeric {
|
|
color: #d19a66
|
|
}
|
|
|
|
.ace-one-dark .ace_constant.ace_character {
|
|
color: #56b6c2
|
|
}
|
|
|
|
.ace-one-dark .ace_constant.ace_other {
|
|
color: #56b6c2
|
|
}
|
|
|
|
.ace-one-dark .ace_support.ace_function {
|
|
color: #61afef
|
|
}
|
|
|
|
.ace-one-dark .ace_support.ace_constant {
|
|
color: #d19a66
|
|
}
|
|
|
|
.ace-one-dark .ace_support.ace_class {
|
|
color: #e5c07b
|
|
}
|
|
|
|
.ace-one-dark .ace_support.ace_type {
|
|
color: #e5c07b
|
|
}
|
|
|
|
.ace-one-dark .ace_storage {
|
|
color: #c678dd
|
|
}
|
|
|
|
.ace-one-dark .ace_storage.ace_type {
|
|
color: #c678dd
|
|
}
|
|
|
|
.ace-one-dark .ace_invalid {
|
|
color: #fff;
|
|
background-color: #f2777a
|
|
}
|
|
|
|
.ace-one-dark .ace_invalid.ace_deprecated {
|
|
color: #272b33;
|
|
background-color: #d27b53
|
|
}
|
|
|
|
.ace-one-dark .ace_string {
|
|
color: #98c379
|
|
}
|
|
|
|
.ace-one-dark .ace_string.ace_regexp {
|
|
color: #e06c75
|
|
}
|
|
|
|
.ace-one-dark .ace_comment {
|
|
font-style: italic;
|
|
color: #5c6370
|
|
}
|
|
|
|
.ace-one-dark .ace_variable {
|
|
color: #e06c75
|
|
}
|
|
|
|
.ace-one-dark .ace_variable.ace_parameter {
|
|
color: #d19a66
|
|
}
|
|
|
|
.ace-one-dark .ace_meta.ace_tag {
|
|
color: #e06c75
|
|
}
|
|
|
|
.ace-one-dark .ace_entity.ace_other.ace_attribute-name {
|
|
color: #e06c75
|
|
}
|
|
|
|
.ace-one-dark .ace_entity.ace_name.ace_function {
|
|
color: #61afef
|
|
}
|
|
|
|
.ace-one-dark .ace_entity.ace_name.ace_tag {
|
|
color: #e06c75
|
|
}
|
|
|
|
.ace-one-dark .ace_markup.ace_heading {
|
|
color: #98c379
|
|
}
|
|
|
|
.ace-one-dark .ace_indent-guide {
|
|
background: url("../one_dark-1.png") right repeat-y
|
|
}
|
|
|
|
.ace-one-dark .ace_indent-guide-active {
|
|
background: url("../one_dark-2.png") right repeat-y;
|
|
}
|