adc0b52e4031f8653e6cc3e44d73bc4a588de624f746e04e9a082d6ba9faf923931bb69baaf4fac2ff40217d27fb18bde7be7c0c41848278b76a4d263bb85b 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-dropdown {
  6. height: 100%;
  7. padding: 0;
  8. }
  9. .monaco-dropdown > .dropdown-label {
  10. cursor: pointer;
  11. height: 100%;
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .monaco-dropdown > .dropdown-label > .action-label.disabled {
  17. cursor: default;
  18. }
  19. .monaco-dropdown-with-primary {
  20. display: flex !important;
  21. flex-direction: row;
  22. border-radius: 5px;
  23. }
  24. .monaco-dropdown-with-primary > .action-container > .action-label {
  25. margin-right: 0;
  26. }
  27. .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
  28. font-size: 12px;
  29. padding-left: 0px;
  30. padding-right: 0px;
  31. line-height: 16px;
  32. margin-left: -3px;
  33. }
  34. .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  35. display: block;
  36. background-size: 16px;
  37. background-position: center center;
  38. background-repeat: no-repeat;
  39. }