renameInputField.css 717 B

123456789101112131415161718192021222324252627
  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 .rename-box {
  6. z-index: 100;
  7. color: inherit;
  8. }
  9. .monaco-editor .rename-box.preview {
  10. padding: 3px 3px 0 3px;
  11. }
  12. .monaco-editor .rename-box .rename-input {
  13. padding: 3px;
  14. width: calc(100% - 6px);
  15. }
  16. .monaco-editor .rename-box .rename-label {
  17. display: none;
  18. opacity: .8;
  19. }
  20. .monaco-editor .rename-box.preview .rename-label {
  21. display: inherit;
  22. }