hue.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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-hue .ace_constant.ace_character,
  66. .ace-hue .ace_constant.ace_language,
  67. .ace-hue .ace_constant.ace_numeric,
  68. .ace-hue .ace_keyword.ace_other.ace_unit,
  69. .ace-hue .ace_support.ace_constant,
  70. .ace-hue .ace_variable.ace_parameter {
  71. color: #F5871F
  72. }
  73. .ace-hue .ace_constant.ace_other {
  74. color: #666969
  75. }
  76. .ace-hue .ace_invalid {
  77. color: #FFFFFF;
  78. background-color: #C82829
  79. }
  80. .ace-hue .ace_invalid.ace_deprecated {
  81. color: #FFFFFF;
  82. background-color: #8959A8
  83. }
  84. .ace-hue .ace_fold {
  85. background-color: #4271AE;
  86. border-color: #4D4D4C
  87. }
  88. .ace-hue .ace_entity.ace_name.ace_function,
  89. .ace-hue .ace_support.ace_function,
  90. .ace-hue .ace_variable {
  91. color: #4271AE
  92. }
  93. .ace-hue .ace_support.ace_class,
  94. .ace-hue .ace_support.ace_type {
  95. color: #C99E00
  96. }
  97. .ace-hue .ace_heading,
  98. .ace-hue .ace_markup.ace_heading,
  99. .ace-hue .ace_string {
  100. color: #718C00
  101. }
  102. .ace-hue .ace_entity.ace_name.ace_tag,
  103. .ace-hue .ace_entity.ace_other.ace_attribute-name,
  104. .ace-hue .ace_meta.ace_tag,
  105. .ace-hue .ace_string.ace_regexp,
  106. .ace-hue .ace_variable {
  107. color: #C82829
  108. }
  109. .ace-hue .ace_comment {
  110. color: #8E908C
  111. }
  112. .ace-hue .ace_indent-guide {
  113. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y
  114. }
  115. .ace-spinner, .ace-inline-button {
  116. position: absolute;
  117. z-index: 1030;
  118. }
  119. .ace-inline-button {
  120. opacity: 0.7;
  121. }
  122. .ace-inline-button:hover {
  123. opacity: 1;
  124. }
  125. .ace_tooltip {
  126. background: #F7F7F7 !important;
  127. border: none !important;
  128. color: #333;
  129. padding: 3px !important;
  130. }
  131. .ace_tooltip hr {
  132. margin: 3px !important;
  133. }
  134. .ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line, .ace_editor.ace_autocomplete .ace_marker-layer .ace_line-hover {
  135. background-color: #DBE8F1;
  136. z-index: 1;
  137. }