您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_toolbars.scss 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. .toolbar {
  2. background-color: rgba(0,0,0,0.5);
  3. position: relative;
  4. z-index: 900;
  5. height: 100%;
  6. pointer-events: auto;
  7. }
  8. #mainToolbarContainer{
  9. display: block;
  10. position: absolute;
  11. text-align: center;
  12. top:0;
  13. left:0;
  14. right:0;
  15. z-index:10;
  16. pointer-events: none;
  17. min-height: 100px;
  18. transform: translateY(-100%);
  19. -webkit-transform: translateY(-100%);
  20. }
  21. #subject {
  22. position: relative;
  23. z-index: 3;
  24. width: auto;
  25. padding: 5px;
  26. margin-left: 40%;
  27. margin-right: 40%;
  28. text-align: center;
  29. background: linear-gradient(to bottom, rgba(255,255,255,.85) , rgba(255,255,255,.35));
  30. box-shadow: 0 0 2px #000000, 0 0 10px #000000;
  31. border-bottom-left-radius: 12px;
  32. border-bottom-right-radius: 12px;
  33. }
  34. #mainToolbar {
  35. height: $defaultToolbarSize;
  36. display: inline-block;
  37. position: relative;
  38. top: 30px;
  39. margin-left: auto;
  40. margin-right: auto;
  41. width: auto;
  42. border-radius: 4px;
  43. }
  44. #mainToolbar .first {
  45. border-bottom-left-radius: 4px;
  46. border-top-left-radius: 4px;
  47. }
  48. #mainToolbar .last {
  49. border-bottom-right-radius: 4px;
  50. border-top-right-radius: 4px;
  51. }
  52. #extendedToolbar {
  53. display: flex;
  54. display: -webkit-box;
  55. display: -moz-box;
  56. display: -ms-flexbox;
  57. display: -webkit-flex;
  58. width: $defaultToolbarSize;
  59. height: 100%;
  60. top: 0px;
  61. left: 0px;
  62. padding-top: 10px;
  63. flex-direction: column;
  64. flex-wrap: nowrap;
  65. justify-content: flex-start;
  66. align-items: center;
  67. transform: translateX(-100%);
  68. -webkit-transform: translateX(-100%);
  69. }
  70. #extendedToolbarPanel {
  71. display: inline-block;
  72. position:absolute;
  73. top: 0px;
  74. left: $defaultToolbarSize;
  75. width:0%;
  76. height: 100%;
  77. max-width: 200px;
  78. background-color: rgba(0,0,0,0.8);
  79. z-index: 800;
  80. overflow: hidden;
  81. .extendedToolbarPanel__inner {
  82. display: none;
  83. width: 200px;
  84. color: #FFF;
  85. > div.title {
  86. text-align: left;
  87. padding: 10px;
  88. margin: 2px;
  89. font-size: 12pt;
  90. }
  91. }
  92. }
  93. #toolbar_button_hangup {
  94. color: #ff0000;
  95. font-size: 2.2em !important;
  96. }
  97. #toolbar_button_etherpad {
  98. display: none;
  99. }
  100. #toolbar_button_chat,
  101. #chatBottomButton,
  102. #contactListButton,
  103. #numberOfParticipants,
  104. #toolbar_button_record {
  105. -webkit-transition: all .5s ease-in-out;
  106. -moz-transition: all .5s ease-in-out;
  107. transition: all .5s ease-in-out;
  108. }
  109. /*#ffde00*/
  110. #toolbar_button_chat.active,
  111. #contactListButton.glowing,
  112. #chatBottomButton.glowing {
  113. -webkit-text-shadow: -1px 0 10px #21B9FC,
  114. 0 1px 10px #21B9FC,
  115. 1px 0 10px #21B9FC,
  116. 0 -1px 10px #21B9FC;
  117. -moz-text-shadow: 1px 0 10px #21B9FC,
  118. 0 1px 10px #21B9FC,
  119. 1px 0 10px #21B9FC,
  120. 0 -1px 10px #21B9FC;
  121. text-shadow: -1px 0 10px #21B9FC,
  122. 0 1px 10px #21B9FC,
  123. 1px 0 10px #21B9FC,
  124. 0 -1px 10px #21B9FC;
  125. }
  126. #numberOfParticipants {
  127. position: absolute;
  128. top: 5px;
  129. line-height: 13px;
  130. font-weight: bold;
  131. font-size: 11px;
  132. }
  133. #contactListButton.active #numberOfParticipants {
  134. color: #21B9FC;
  135. }
  136. #mainToolbar a.button:last-child::after {
  137. content: none;
  138. }
  139. #bottomToolbar {
  140. display:block;
  141. position: absolute;
  142. right: 0;
  143. margin-right: 5px;
  144. bottom: 40px;
  145. width: 29px;
  146. border-radius: 1px;
  147. color: #FFF;
  148. background: rgba(0,0,0,0.5);
  149. z-index: 6; /*+1 from #remoteVideos*/
  150. }
  151. .bottomToolbarButton {
  152. display: inline-block;
  153. position: relative;
  154. color: #FFFFFF;
  155. top: 0;
  156. padding-top: 6px;
  157. margin: 2px;
  158. width: 25px;
  159. height: 20px;
  160. cursor: pointer;
  161. font-size: 10pt;
  162. text-align: center;
  163. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  164. z-index: 1;
  165. }
  166. .toolbar_span>span {
  167. display: inline-block;
  168. position: absolute;
  169. font-size: 7pt;
  170. color: #ffffff;
  171. text-align:center;
  172. cursor: pointer;
  173. }
  174. .bottomToolbar_span>span {
  175. display: inline-block;
  176. position: absolute;
  177. font-size: 7pt;
  178. color: #ffffff;
  179. text-align: center;
  180. cursor: pointer;
  181. }
  182. .button {
  183. display: inline-block;
  184. position: relative;
  185. color: #FFFFFF;
  186. top:0px;
  187. width: 50px;
  188. height: 50px;
  189. cursor: pointer;
  190. text-align: center;
  191. z-index: 1;
  192. font-size: 1.44em !important;
  193. line-height: 50px !important;
  194. vertical-align: middle;
  195. }
  196. .button[disabled] {
  197. opacity: 0.5;
  198. }
  199. a.button:hover,
  200. a.bottomToolbarButton:hover {
  201. cursor: pointer;
  202. background: rgba(0, 0, 0, 0.8);
  203. }
  204. a.button>#avatar {
  205. width: 30px;
  206. border-radius: 50%;
  207. padding-top: 10px;
  208. padding-bottom: 10px;
  209. }
  210. #feedbackButton {
  211. margin-top: auto;
  212. }
  213. @include keyframes(slideInX) {
  214. 100% { transform: translateX(0%); }
  215. }
  216. .slideInX {
  217. @include animation('slideInX .5s forwards');
  218. }
  219. @include keyframes(slideOutX) {
  220. 0% { transform: translateX(0%); }
  221. 100% { transform: translateX(-100%); }
  222. }
  223. .slideOutX {
  224. @include animation('slideOutX .5s forwards');
  225. }
  226. @include keyframes(slideInY) {
  227. 100% { transform: translateY(0%); }
  228. }
  229. .slideInY {
  230. @include animation('slideInY .5s forwards');
  231. }
  232. @include keyframes(slideOutY) {
  233. 0% { transform: translateY(0%); }
  234. 100% { transform: translateY(-100%); }
  235. }
  236. .slideOutY {
  237. @include animation('slideOutY .5s forwards');
  238. }
  239. @include keyframes(slideInExt) {
  240. from { width: 0%; }
  241. to { width: 20%; }
  242. }
  243. .slideInExt {
  244. @include animation("slideInExt .5s forwards");
  245. }
  246. @include keyframes(slideOutExt) {
  247. from { width: 20%; }
  248. to { width: 0%; }
  249. }
  250. .slideOutExt {
  251. @include animation("slideOutExt .5s forwards");
  252. }