captureMenu.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .captureMenuComponent {
  2. position: absolute;
  3. top: 10px;
  4. left: 50%;
  5. margin-left: -200px;
  6. height: 40px;
  7. width: 400px;
  8. background-color: #222;
  9. opacity: 0.6;
  10. visibility: hidden;
  11. display: none;
  12. color: #f9f9f9;
  13. font-family: Consolas, monaco, monospace;
  14. font-size: 14px;
  15. font-weight: 500; }
  16. .captureMenuComponent.active {
  17. visibility: visible;
  18. display: block; }
  19. .canvasListComponent {
  20. float: left;
  21. width: 50%;
  22. height: 100%; }
  23. .canvasListComponent [commandName=onCanvasSelection] {
  24. vertical-align: center;
  25. margin: 10px;
  26. line-height: 40px; }
  27. .canvasListComponent [commandName=onCanvasSelection]:hover {
  28. color: #c9c9c9;
  29. cursor: pointer;
  30. transition: color 0.3s;
  31. -webkit-transition: color 0.3s;
  32. -moz-transition: color 0.3s; }
  33. .canvasListComponent ul {
  34. margin: 0px;
  35. padding: 0px;
  36. list-style: none;
  37. position: absolute;
  38. top: 40px;
  39. width: 400px;
  40. background-color: #222; }
  41. .canvasListComponent ul li {
  42. margin: 10px; }
  43. .canvasListComponent ul li:hover {
  44. color: #c9c9c9;
  45. cursor: pointer;
  46. transition: color 0.3s;
  47. -webkit-transition: color 0.3s;
  48. -moz-transition: color 0.3s; }
  49. .captureMenuActionsComponent {
  50. float: left;
  51. width: 30%;
  52. height: 100%;
  53. margin-top: 7.5px; }
  54. .captureMenuActionsComponent div {
  55. float: left; }
  56. .captureMenuActionsComponent [commandName=onCaptureRequested] {
  57. border-radius: 50%;
  58. background: #222;
  59. border: 2px solid red;
  60. width: 21px;
  61. height: 21px; }
  62. .captureMenuActionsComponent [commandName=onCaptureRequested]:hover {
  63. background: red;
  64. cursor: pointer;
  65. transition: background 0.3s;
  66. -webkit-transition: background 0.3s;
  67. -moz-transition: background 0.3s; }
  68. .captureMenuActionsComponent [commandName=onPlayRequested], .captureMenuActionsComponent [commandName=onPlayNextFrameRequested] {
  69. width: 21px;
  70. height: 21px;
  71. border: 2px solid #f9f9f9;
  72. border-radius: 50%;
  73. margin-left: 9px; }
  74. .captureMenuActionsComponent [commandName=onPlayRequested]:before, .captureMenuActionsComponent [commandName=onPlayNextFrameRequested]:before {
  75. content: '';
  76. position: absolute;
  77. display: inline-block;
  78. margin-top: 6px;
  79. margin-left: 4px;
  80. width: 7px;
  81. height: 7px;
  82. border-top: 2px solid #f9f9f9;
  83. border-right: 2px solid #f9f9f9;
  84. background-color: #f9f9f9;
  85. -moz-transform: rotate(45deg);
  86. -webkit-transform: rotate(45deg);
  87. transform: rotate(45deg);
  88. z-index: -20; }
  89. .captureMenuActionsComponent [commandName=onPlayRequested]:after, .captureMenuActionsComponent [commandName=onPlayNextFrameRequested]:after {
  90. content: '';
  91. position: absolute;
  92. display: inline-block;
  93. width: 8px;
  94. height: 20px;
  95. background-color: #222;
  96. z-index: -10; }
  97. .captureMenuActionsComponent [commandName=onPlayRequested]:hover, .captureMenuActionsComponent [commandName=onPlayNextFrameRequested]:hover {
  98. cursor: pointer;
  99. border: 2px solid #c9c9c9;
  100. transition: border 0.3s;
  101. -webkit-transition: border 0.3s;
  102. -moz-transition: border 0.3s; }
  103. .captureMenuActionsComponent [commandName=onPauseRequested] {
  104. width: 21px;
  105. height: 21px;
  106. border: 2px solid #f9f9f9;
  107. border-radius: 50%;
  108. margin-left: 9px; }
  109. .captureMenuActionsComponent [commandName=onPauseRequested]:before {
  110. content: '';
  111. position: absolute;
  112. display: inline-block;
  113. width: 2px;
  114. height: 13px;
  115. margin-left: 12px;
  116. margin-top: 4px;
  117. background-color: #f9f9f9; }
  118. .captureMenuActionsComponent [commandName=onPauseRequested]:after {
  119. content: '';
  120. position: absolute;
  121. display: inline-block;
  122. width: 2px;
  123. height: 13px;
  124. margin-left: 7px;
  125. margin-top: 4px;
  126. background-color: #f9f9f9; }
  127. .captureMenuActionsComponent [commandName=onPauseRequested]:hover {
  128. cursor: pointer;
  129. border: 2px solid #c9c9c9;
  130. transition: border 0.3s;
  131. -webkit-transition: border 0.3s;
  132. -moz-transition: border 0.3s; }
  133. .captureMenuActionsComponent [commandName=onPlayNextFrameRequested]:before {
  134. background-color: #222; }
  135. .fpsCounterComponent {
  136. float: left;
  137. width: 20%;
  138. vertical-align: center;
  139. line-height: 40px;
  140. white-space: nowrap; }
  141. /*# sourceMappingURL=captureMenu.css.map */