snippetSession.css 894 B

12345678910111213141516171819
  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. .monaco-editor .snippet-placeholder {
  6. min-width: 2px;
  7. outline-style: solid;
  8. outline-width: 1px;
  9. background-color: var(--vscode-editor-snippetTabstopHighlightBackground, transparent);
  10. outline-color: var(--vscode-editor-snippetTabstopHighlightBorder, transparent);
  11. }
  12. .monaco-editor .finish-snippet-placeholder {
  13. outline-style: solid;
  14. outline-width: 1px;
  15. background-color: var(--vscode-editor-snippetFinalTabstopHighlightBackground, transparent);
  16. outline-color: var(--vscode-editor-snippetFinalTabstopHighlightBorder, transparent);
  17. }