| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- /*
- Licensed to Cloudera, Inc. under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. Cloudera, Inc. licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- .ace_hidden-cursors .ace_cursor {
- opacity: 0;
- }
- .ace-hue .ace_print-margin {
- width: 1px;
- background: #f6f6f6
- }
- .ace-hue {
- background-color: #FFFFFF;
- color: #4D4D4C
- }
- .ace-hue .ace_cursor {
- color: #AEAFAD
- }
- .ace-hue .ace_marker-layer .ace_selection {
- background: #D6D6D6
- }
- .ace-hue.ace_multiselect .ace_selection.ace_start {
- box-shadow: 0 0 3px 0px #FFFFFF;
- }
- .ace-hue .ace_marker-layer .ace_step {
- background: rgb(255, 255, 0)
- }
- .ace-hue .ace_marker-layer .ace_bracket {
- margin: -1px 0 0 -1px;
- border: 1px solid #D1D1D1
- }
- .ace-hue .ace_marker-layer .ace_selected-word {
- border: 1px solid #D6D6D6
- }
- .ace-hue .ace_marker-layer .ace_error-line {
- position: absolute;
- background-color: #f2dede;
- width: 100% !important;
- margin-left: -3px;
- }
- .ace-hue .ace_marker-layer .ace_warning-line {
- position: absolute;
- background-color: #fcf8e3;
- width: 100% !important;
- margin-left: -3px;
- }
- .ace-hue .ace_invisible {
- color: #BBB
- }
- .ace-hue .ace_keyword,
- .ace-hue .ace_meta,
- .ace-hue .ace_storage,
- .ace-hue .ace_storage.ace_type,
- .ace-hue .ace_support.ace_type {
- color: #8959A8
- }
- .ace-hue .ace_keyword.ace_operator {
- color: #3E999F
- }
- .ace_gutter {
- background: #F1F1F1;
- }
- .ace_gutter > .ace_layer {
- border-left: 1px solid #DBE8F1;
- color: #737373;
- }
- .ace_gutter-cell.ace_error {
- background-color: #f2dede;
- border-left:1px solid #d6616b;
- background-image: none !important;
- }
- .ace_gutter-cell.ace_warning {
- background-color: #fcf8e3;
- border-left:1px solid #f0c36d;
- background-image: none !important;
- }
- .ace_gutter-cell {
- padding-left: 0 !important;
- padding-right: 3px !important;
- }
- .ace-hue .ace_constant.ace_character,
- .ace-hue .ace_constant.ace_language,
- .ace-hue .ace_constant.ace_numeric,
- .ace-hue .ace_keyword.ace_other.ace_unit,
- .ace-hue .ace_support.ace_constant,
- .ace-hue .ace_variable.ace_parameter {
- color: #F5871F
- }
- .ace-hue .ace_constant.ace_other {
- color: #666969
- }
- .ace-hue .ace_invalid {
- color: #FFFFFF;
- background-color: #C82829
- }
- .ace-hue .ace_invalid.ace_deprecated {
- color: #FFFFFF;
- background-color: #8959A8
- }
- .ace-hue .ace_fold {
- background-color: #4271AE;
- border-color: #4D4D4C
- }
- .ace-hue .ace_entity.ace_name.ace_function,
- .ace-hue .ace_support.ace_function,
- .ace-hue .ace_variable {
- color: #4271AE
- }
- .ace-hue .ace_support.ace_class,
- .ace-hue .ace_support.ace_type {
- color: #C99E00
- }
- .ace-hue .ace_heading,
- .ace-hue .ace_markup.ace_heading,
- .ace-hue .ace_string {
- color: #718C00
- }
- .ace-hue .ace_entity.ace_name.ace_tag,
- .ace-hue .ace_entity.ace_other.ace_attribute-name,
- .ace-hue .ace_meta.ace_tag,
- .ace-hue .ace_string.ace_regexp,
- .ace-hue .ace_variable {
- color: #C82829
- }
- .ace-hue .ace_comment {
- color: #8E908C
- }
- .ace-hue .ace_indent-guide {
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y
- }
- .ace-spinner, .ace-inline-button {
- position: absolute;
- z-index: 1030;
- }
- .ace-inline-button {
- opacity: 0.7;
- }
- .ace-inline-button:hover {
- opacity: 1;
- }
- .ace_tooltip {
- background: #F7F7F7 !important;
- border: none !important;
- color: #333;
- padding: 3px !important;
- }
- .ace_tooltip hr {
- margin: 3px !important;
- }
- .ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line, .ace_editor.ace_autocomplete .ace_marker-layer .ace_line-hover {
- background-color: #DBE8F1;
- z-index: 1;
- }
|