af3c612e4cdc3d377561d0421f1cd3beceb6a7fdcee3b4e8dcaad4b55c4900a86e0d7a9a8a5075dff4224b96ca3733d5eaf5db39794b18c1b4d29055c25325 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. .quick-input-widget {
  6. font-size: 13px;
  7. }
  8. .quick-input-widget .monaco-highlighted-label .highlight,
  9. .quick-input-widget .monaco-highlighted-label .highlight {
  10. color: #0066BF;
  11. }
  12. .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight,
  13. .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
  14. color: #9DDDFF;
  15. }
  16. .vs-dark .quick-input-widget .monaco-highlighted-label .highlight,
  17. .vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
  18. color: #0097fb;
  19. }
  20. .hc-black .quick-input-widget .monaco-highlighted-label .highlight,
  21. .hc-black .quick-input-widget .monaco-highlighted-label .highlight {
  22. color: #F38518;
  23. }
  24. .hc-light .quick-input-widget .monaco-highlighted-label .highlight,
  25. .hc-light .quick-input-widget .monaco-highlighted-label .highlight {
  26. color: #0F4A85;
  27. }
  28. .monaco-keybinding > .monaco-keybinding-key {
  29. background-color: rgba(221, 221, 221, 0.4);
  30. border: solid 1px rgba(204, 204, 204, 0.4);
  31. border-bottom-color: rgba(187, 187, 187, 0.4);
  32. box-shadow: inset 0 -1px 0 rgba(187, 187, 187, 0.4);
  33. color: #555;
  34. }
  35. .hc-black .monaco-keybinding > .monaco-keybinding-key {
  36. background-color: transparent;
  37. border: solid 1px rgb(111, 195, 223);
  38. box-shadow: none;
  39. color: #fff;
  40. }
  41. .hc-light .monaco-keybinding > .monaco-keybinding-key {
  42. background-color: transparent;
  43. border: solid 1px #0F4A85;
  44. box-shadow: none;
  45. color: #292929;
  46. }
  47. .vs-dark .monaco-keybinding > .monaco-keybinding-key {
  48. background-color: rgba(128, 128, 128, 0.17);
  49. border: solid 1px rgba(51, 51, 51, 0.6);
  50. border-bottom-color: rgba(68, 68, 68, 0.6);
  51. box-shadow: inset 0 -1px 0 rgba(68, 68, 68, 0.6);
  52. color: #ccc;
  53. }