You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

58 lines
805 B

  1. @import "../../../css/colors.less";
  2. .uiContext {
  3. display: none;
  4. position: absolute;
  5. padding: 5px;
  6. z-index: 999999;
  7. border: 5px solid @blueD;
  8. background-color: fade(@blackD, 95%);
  9. padding: 5px;
  10. color: @white;
  11. text-align: center;
  12. line-height: 15px;
  13. overflow-y: auto;
  14. .list {
  15. width: 100%;
  16. height: 100%;
  17. .option {
  18. width: 100%;
  19. padding: 5px;
  20. color: @white;
  21. cursor: pointer;
  22. display: flex;
  23. justify-content: center;
  24. &:hover:not(.no-hover) {
  25. background-color: @blueC;
  26. }
  27. &.divider {
  28. line-height: 2px;
  29. padding: 0px;
  30. margin: 5px 0px;
  31. color: transparent;
  32. background-color: @grayD;
  33. }
  34. &.no-hover:not(.divider) {
  35. color: @grayC;
  36. }
  37. .hotkey {
  38. color: @blueA;
  39. &:not(:empty) {
  40. margin-left: 10px;
  41. }
  42. }
  43. }
  44. }
  45. }