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.
 
 
 

112 lines
1.4 KiB

  1. @import "../../../css/colors.less";
  2. .uiNodeInfo {
  3. position: absolute;
  4. right: 10px;
  5. top: 10px;
  6. padding: 10px;
  7. width: 250px;
  8. background-color: #373041;
  9. text-align: center;
  10. &.picking {
  11. height: calc(100% - 15px);
  12. }
  13. .heading-text {
  14. color: @white;
  15. margin-bottom: 15px;
  16. }
  17. .content {
  18. height: calc(100% - 15px);
  19. }
  20. .lbl {
  21. color: @white;
  22. &:not(:empty) {
  23. &.lblId:before {
  24. content: 'Id: ';
  25. }
  26. &.lblGroup:before {
  27. content: 'Group: ';
  28. }
  29. &.lblType:before {
  30. content: 'Type: ';
  31. }
  32. &.lblPos:before {
  33. content: 'Pos: ';
  34. }
  35. &.lblLinks:before {
  36. content: 'Links: ';
  37. }
  38. }
  39. }
  40. .stats {
  41. &:not(:empty) {
  42. margin-top: 15px;
  43. }
  44. .item {
  45. width: 100%;
  46. height: 28px;
  47. color: @white;
  48. background-color: @blackA;
  49. padding: 5px 0px 5px 0px;
  50. margin-bottom: 5px;
  51. cursor: pointer;
  52. &:hover {
  53. background-color: @grayC;
  54. }
  55. &:last-child {
  56. margin-bottom: 0px;
  57. }
  58. }
  59. }
  60. .nodeCount {
  61. color: @white;
  62. margin-top: 10px;
  63. &:before {
  64. content: 'Selected: ';
  65. }
  66. }
  67. .lookup {
  68. display: none;
  69. position: absolute;
  70. left: 0px;
  71. top: 0px;
  72. width: 100%;
  73. height: 100%;
  74. background-color: #373041;
  75. overflow: auto;
  76. .item {
  77. width: 100%;
  78. color: @white;
  79. background-color: @blackA;
  80. padding: 5px 0px 5px 0px;
  81. margin-bottom: 5px;
  82. cursor: pointer;
  83. &:hover {
  84. background-color: @grayC;
  85. }
  86. &:last-child {
  87. margin-bottom: 0px;
  88. }
  89. }
  90. }
  91. }