e07a9a69812a917919aee21a80b92028dc031829c4215b96344bdb8d199f5cf9f98a71ae423ce568568b75aa1e72e638e80d654471b73dd5aabda07b176dda 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. /* ---------- Find input ---------- */
  6. .monaco-findInput {
  7. position: relative;
  8. }
  9. .monaco-findInput .monaco-inputbox {
  10. font-size: 13px;
  11. width: 100%;
  12. }
  13. .monaco-findInput > .controls {
  14. position: absolute;
  15. top: 3px;
  16. right: 2px;
  17. }
  18. .vs .monaco-findInput.disabled {
  19. background-color: #E1E1E1;
  20. }
  21. /* Theming */
  22. .vs-dark .monaco-findInput.disabled {
  23. background-color: #333;
  24. }
  25. /* Highlighting */
  26. .monaco-findInput.highlight-0 .controls,
  27. .hc-light .monaco-findInput.highlight-0 .controls {
  28. animation: monaco-findInput-highlight-0 100ms linear 0s;
  29. }
  30. .monaco-findInput.highlight-1 .controls,
  31. .hc-light .monaco-findInput.highlight-1 .controls {
  32. animation: monaco-findInput-highlight-1 100ms linear 0s;
  33. }
  34. .hc-black .monaco-findInput.highlight-0 .controls,
  35. .vs-dark .monaco-findInput.highlight-0 .controls {
  36. animation: monaco-findInput-highlight-dark-0 100ms linear 0s;
  37. }
  38. .hc-black .monaco-findInput.highlight-1 .controls,
  39. .vs-dark .monaco-findInput.highlight-1 .controls {
  40. animation: monaco-findInput-highlight-dark-1 100ms linear 0s;
  41. }
  42. @keyframes monaco-findInput-highlight-0 {
  43. 0% { background: rgba(253, 255, 0, 0.8); }
  44. 100% { background: transparent; }
  45. }
  46. @keyframes monaco-findInput-highlight-1 {
  47. 0% { background: rgba(253, 255, 0, 0.8); }
  48. /* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
  49. 99% { background: transparent; }
  50. }
  51. @keyframes monaco-findInput-highlight-dark-0 {
  52. 0% { background: rgba(255, 255, 255, 0.44); }
  53. 100% { background: transparent; }
  54. }
  55. @keyframes monaco-findInput-highlight-dark-1 {
  56. 0% { background: rgba(255, 255, 255, 0.44); }
  57. /* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
  58. 99% { background: transparent; }
  59. }