hue.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. Licensed to Cloudera, Inc. under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. Cloudera, Inc. licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. .ace_hidden-cursors .ace_cursor {
  17. opacity: 0;
  18. }
  19. .ace-hue .ace_print-margin {
  20. width: 1px;
  21. background: #f6f6f6
  22. }
  23. .ace-hue {
  24. background-color: #FFFFFF;
  25. color: #4D4D4C
  26. }
  27. .ace-hue .ace_cursor {
  28. color: #AEAFAD
  29. }
  30. .ace-hue .ace_marker-layer .ace_selection {
  31. background: #D6D6D6
  32. }
  33. .ace-hue.ace_multiselect .ace_selection.ace_start {
  34. box-shadow: 0 0 3px 0px #FFFFFF;
  35. }
  36. .ace-hue .ace_marker-layer .ace_step {
  37. background: rgb(255, 255, 0)
  38. }
  39. .ace-hue .ace_marker-layer .ace_bracket {
  40. margin: -1px 0 0 -1px;
  41. border: 1px solid #D1D1D1
  42. }
  43. .ace-hue .ace_marker-layer .ace_selected-word {
  44. border: 1px solid #D6D6D6
  45. }
  46. .ace-hue .ace_marker-layer .ace_error-line {
  47. position: absolute;
  48. background-color: #f2dede;
  49. width: 100% !important;
  50. margin-left: -3px;
  51. }
  52. .ace-hue .ace_invisible {
  53. color: #D1D1D1
  54. }
  55. .ace-hue .ace_keyword,
  56. .ace-hue .ace_meta,
  57. .ace-hue .ace_storage,
  58. .ace-hue .ace_storage.ace_type,
  59. .ace-hue .ace_support.ace_type {
  60. color: #8959A8
  61. }
  62. .ace-hue .ace_keyword.ace_operator {
  63. color: #3E999F
  64. }
  65. .ace_gutter {
  66. background: #F1F1F1;
  67. }
  68. .ace_gutter > .ace_layer {
  69. width: 41px !important;
  70. border-left: 1px solid #DBE8F1;
  71. color: #737373;
  72. }
  73. .ace_gutter-cell.ace_error {
  74. background-color: #f2dede;
  75. border-left:1px solid #eed3d7;
  76. background-image: none !important;
  77. }
  78. .ace_gutter_cell {
  79. padding-left: 10px !important;
  80. }
  81. .ace-hue .ace_constant.ace_character,
  82. .ace-hue .ace_constant.ace_language,
  83. .ace-hue .ace_constant.ace_numeric,
  84. .ace-hue .ace_keyword.ace_other.ace_unit,
  85. .ace-hue .ace_support.ace_constant,
  86. .ace-hue .ace_variable.ace_parameter {
  87. color: #F5871F
  88. }
  89. .ace-hue .ace_constant.ace_other {
  90. color: #666969
  91. }
  92. .ace-hue .ace_invalid {
  93. color: #FFFFFF;
  94. background-color: #C82829
  95. }
  96. .ace-hue .ace_invalid.ace_deprecated {
  97. color: #FFFFFF;
  98. background-color: #8959A8
  99. }
  100. .ace-hue .ace_fold {
  101. background-color: #4271AE;
  102. border-color: #4D4D4C
  103. }
  104. .ace-hue .ace_entity.ace_name.ace_function,
  105. .ace-hue .ace_support.ace_function,
  106. .ace-hue .ace_variable {
  107. color: #4271AE
  108. }
  109. .ace-hue .ace_support.ace_class,
  110. .ace-hue .ace_support.ace_type {
  111. color: #C99E00
  112. }
  113. .ace-hue .ace_heading,
  114. .ace-hue .ace_markup.ace_heading,
  115. .ace-hue .ace_string {
  116. color: #718C00
  117. }
  118. .ace-hue .ace_entity.ace_name.ace_tag,
  119. .ace-hue .ace_entity.ace_other.ace_attribute-name,
  120. .ace-hue .ace_meta.ace_tag,
  121. .ace-hue .ace_string.ace_regexp,
  122. .ace-hue .ace_variable {
  123. color: #C82829
  124. }
  125. .ace-hue .ace_comment {
  126. color: #8E908C
  127. }
  128. .ace-hue .ace_indent-guide {
  129. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y
  130. }
  131. .ace-spinner, .ace-inline-button {
  132. position: absolute;
  133. z-index: 1030;
  134. }
  135. .ace-inline-button {
  136. opacity: 0.7;
  137. }
  138. .ace-inline-button:hover {
  139. opacity: 1;
  140. }
  141. .ace_tooltip {
  142. background: #F7F7F7 !important;
  143. border: none !important;
  144. color: #333;
  145. padding: 3px !important;
  146. }
  147. .ace_tooltip hr {
  148. margin: 3px !important;
  149. }
  150. .ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line, .ace_editor.ace_autocomplete .ace_marker-layer .ace_line-hover {
  151. background-color: #DBE8F1;
  152. z-index: 1;
  153. }