Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_videolayout_default.scss 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. #videospace {
  2. display: block;
  3. position: absolute;
  4. top: 0px;
  5. left: 0px;
  6. right: 0px;
  7. overflow: hidden;
  8. }
  9. #remoteVideos {
  10. display: -webkit-box;
  11. display: -moz-box;
  12. display: -ms-flexbox;
  13. display: -webkit-flex;
  14. display: flex;
  15. flex-direction: row-reverse;
  16. flex-wrap: nowrap;
  17. justify-content: flex-start;
  18. position:absolute;
  19. text-align:right;
  20. height:196px;
  21. padding: 10px 10px 10px 5px;
  22. bottom: 0;
  23. left: 0;
  24. right: 0;
  25. width:auto;
  26. border:1px solid transparent;
  27. z-index: 5;
  28. transition: bottom 2s;
  29. overflow: visible !important;
  30. font-size: 0pt; /*!!!Removes the gap between the local video container and the remote videos.*/
  31. }
  32. #remotevideos.hidden {
  33. bottom: -196px;
  34. }
  35. .videocontainer {
  36. position: relative;
  37. text-align: center;
  38. }
  39. #remoteVideos .videocontainer {
  40. display: none;
  41. position: relative;
  42. background-color: black;
  43. background-size: contain;
  44. border-radius:1px;
  45. margin: 0 $thumbnailVideoMargin;
  46. border: 1px solid $defaultDarkColor;
  47. }
  48. /**
  49. * The toolbar of the video thumbnail.
  50. */
  51. .videocontainer__toolbar {
  52. position: absolute;
  53. bottom: 0;
  54. left: 0;
  55. z-index: 1;
  56. width: 100%;
  57. box-sizing: border-box; // Includes the padding in the 100% width.
  58. height: $thumbnailToolbarHeight;
  59. max-height: 100%;
  60. background-color: rgba(0, 0, 0, 0.5);
  61. padding: 0 5px 0 5px;
  62. }
  63. /**
  64. * Focused video thumbnail.
  65. */
  66. #remoteVideos .videocontainer.videoContainerFocused {
  67. cursor: hand;
  68. transition-duration: 0.5s;
  69. -webkit-transition-duration: 0.5s;
  70. -webkit-animation-name: greyPulse;
  71. -webkit-animation-duration: 2s;
  72. -webkit-animation-iteration-count: 1;
  73. border: 1px solid $videoThumbnailSelected;
  74. }
  75. #remoteVideos .videocontainer:hover,
  76. #remoteVideos .videocontainer.videoContainerFocused:hover {
  77. border: 1px solid $videoThumbnailHovered;
  78. }
  79. #localVideoWrapper {
  80. display:inline-block;
  81. }
  82. /* With TemasysWebRTC plugin <object/> element is used
  83. instead of <video/> */
  84. #remoteVideos .videocontainer>video,
  85. #remoteVideos .videocontainer>object {
  86. cursor: hand;
  87. border-radius:1px;
  88. object-fit: cover;
  89. overflow: hidden;
  90. }
  91. .flipVideoX {
  92. transform: scale(-1, 1);
  93. -moz-transform: scale(-1, 1);
  94. -webkit-transform: scale(-1, 1);
  95. -o-transform: scale(-1, 1);
  96. }
  97. #localVideoWrapper>video,
  98. #localVideoWrapper>object {
  99. cursor: hand;
  100. border-radius:1px !important;
  101. object-fit: cover;
  102. }
  103. #largeVideo,
  104. #largeVideoWrapper,
  105. #largeVideoContainer {
  106. overflow: hidden;
  107. text-align: center;
  108. }
  109. #largeVideo,
  110. #largeVideoWrapper
  111. {
  112. object-fit: cover;
  113. }
  114. #presentation,
  115. #sharedVideo,
  116. #etherpad,
  117. #localVideoWrapper>video,
  118. #localVideoWrapper>object,
  119. #localVideoWrapper,
  120. #largeVideoWrapper,
  121. #largeVideoWrapper>video,
  122. #largeVideoWrapper>object,
  123. .videocontainer>video,
  124. .videocontainer>object {
  125. position: absolute;
  126. left: 0;
  127. top: 0;
  128. z-index: 1;
  129. width: 100%;
  130. height: 100%;
  131. }
  132. #etherpad,
  133. #presentation {
  134. text-align: center;
  135. }
  136. #etherpad {
  137. z-index: 0;
  138. }
  139. /**
  140. * Positions video thumbnail display name and editor.
  141. */
  142. .videocontainer .displayname,
  143. .videocontainer .editdisplayname {
  144. display: inline-block;
  145. position: absolute;
  146. left: 30%;
  147. width: 40%;
  148. color: $participantNameColor;
  149. text-align: center;
  150. text-overflow: ellipsis;
  151. font-size: 12px;
  152. font-weight: 100;
  153. letter-spacing: 1px;
  154. overflow: hidden;
  155. white-space: nowrap;
  156. line-height: $thumbnailToolbarHeight;
  157. z-index: 2;
  158. }
  159. /**
  160. * Positions video thumbnail display name editor.
  161. */
  162. .videocontainer .editdisplayname {
  163. outline: none;
  164. border: none;
  165. background: none;
  166. box-shadow: none;
  167. padding: 0;
  168. }
  169. .videocontainer>span.status {
  170. display: inline-block;
  171. position: absolute;
  172. color: #FFFFFF;
  173. background: rgba(0,0,0,.7);
  174. text-align: center;
  175. text-overflow: ellipsis;
  176. width: 70%;
  177. height: 15%;
  178. left: 15%;
  179. bottom: 2%;
  180. padding: 5px;
  181. font-size: 10pt;
  182. overflow: hidden;
  183. white-space: nowrap;
  184. z-index: 2;
  185. border-radius:3px;
  186. }
  187. .connectionindicator
  188. {
  189. display: inline-block;
  190. position: absolute;
  191. top: 7px;
  192. right: 0;
  193. padding: 0px 5px;
  194. z-index: 3;
  195. width: 18px;
  196. height: 13px;
  197. }
  198. .connection.connection_empty
  199. {
  200. color: #8B8B8B;/*#FFFFFF*/
  201. overflow: hidden;
  202. }
  203. .connection.connection_full
  204. {
  205. color: #FFFFFF;/*#15A1ED*/
  206. overflow: hidden;
  207. }
  208. .connection
  209. {
  210. position: absolute;
  211. left: 0px;
  212. top: 0px;
  213. font-size: 8pt;
  214. border: 0px;
  215. width: 18px;
  216. height: 13px;
  217. }
  218. .connection_info
  219. {
  220. float: left;
  221. padding-bottom: 5px;
  222. }
  223. .connection_info > table
  224. {
  225. white-space: nowrap;
  226. }
  227. .connection_info, .connection_info > table
  228. {
  229. text-align: left;
  230. font-size: 11px;
  231. color: #ffffff;
  232. }
  233. #localVideoContainer>span.status:hover,
  234. #localVideoContainer .displayname:hover {
  235. cursor: text;
  236. }
  237. .videocontainer>span.status,
  238. .videocontainer .displayname {
  239. pointer-events: none;
  240. }
  241. .videocontainer .editdisplayname {
  242. height: auto;
  243. }
  244. #localDisplayName {
  245. pointer-events: auto !important;
  246. }
  247. .videocontainer>a.status,
  248. .videocontainer>a.displayname {
  249. display: inline-block;
  250. position: absolute;
  251. color: #FFFFFF;
  252. bottom: 0;
  253. right: 0;
  254. padding: 3px 5px;
  255. font-size: 9pt;
  256. cursor: pointer;
  257. z-index: 2;
  258. }
  259. /**
  260. * Video thumbnail toolbar icon.
  261. */
  262. .videocontainer .toolbar-icon {
  263. font-size: 8pt;
  264. text-align: center;
  265. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  266. color: #FFFFFF;
  267. width: 12px;
  268. line-height: $thumbnailToolbarHeight;
  269. height: $thumbnailToolbarHeight;
  270. padding: 0;
  271. border: 0;
  272. margin: 0px 5px 0px 0px;
  273. float: left;
  274. }
  275. /**
  276. * Toolbar icon internal i elements (font icons).
  277. */
  278. .toolbar-icon>i {
  279. line-height: $thumbnailToolbarHeight;
  280. }
  281. /**
  282. * Toolbar icons positioned on the right.
  283. */
  284. .toolbar-icon.right {
  285. float: right;
  286. margin: 0px 0px 0px 5px;
  287. }
  288. .videocontainer>span.indicator {
  289. position: absolute;
  290. top: 0px;
  291. left: 0px;
  292. @include circle($thumbnailIndicatorSize);
  293. box-sizing: border-box;
  294. line-height: $thumbnailIndicatorSize - 2*$thumbnailIndicatorBorder;
  295. z-index: 3;
  296. text-align: center;
  297. background: $dominantSpeakerBg;
  298. margin: 7px;
  299. display: inline-block;
  300. color: $thumbnailPictogramColor;
  301. font-size: 8pt;
  302. border: $thumbnailIndicatorBorder solid $thumbnailPictogramColor;
  303. }
  304. .videocontainer>#raisehandindicator {
  305. background: $raiseHandBg;
  306. }
  307. #indicatoricon {
  308. width: $thumbnailIndicatorSize - 2*$thumbnailIndicatorBorder;
  309. height: $thumbnailIndicatorSize - 2*$thumbnailIndicatorBorder;
  310. line-height: $thumbnailIndicatorSize - 2*$thumbnailIndicatorBorder;
  311. }
  312. #reloadPresentation {
  313. display: none;
  314. position: absolute;
  315. color: #FFFFFF;
  316. top: 0;
  317. right:0;
  318. padding: 10px 10px;
  319. font-size: 11pt;
  320. cursor: pointer;
  321. background: rgba(0, 0, 0, 0.3);
  322. border-radius: 5px;
  323. background-clip: padding-box;
  324. -webkit-border-radius: 5px;
  325. -webkit-background-clip: padding-box;
  326. z-index: 20; /*The reload button should appear on top of the header!*/
  327. }
  328. .audiolevel {
  329. display: inline-block;
  330. position: absolute;
  331. z-index: 0;
  332. border-radius:1px;
  333. pointer-events: none;
  334. }
  335. #dominantSpeaker {
  336. visibility: hidden;
  337. width: 300px;
  338. height: 300px;
  339. margin: auto;
  340. overflow: hidden;
  341. position: relative;
  342. }
  343. #dominantSpeakerAudioLevel {
  344. position: absolute;
  345. top: 0px;
  346. left: 0px;
  347. z-index: 2;
  348. visibility: inherit;
  349. }
  350. #mixedstream {
  351. display:none !important;
  352. }
  353. #dominantSpeakerAvatar {
  354. width: 200px;
  355. height: 200px;
  356. top: 50px;
  357. margin: auto;
  358. position: relative;
  359. border-radius: 100px;
  360. z-index: 3;
  361. visibility: inherit;
  362. background-color: #000000;
  363. }
  364. .userAvatar {
  365. @include circle(60px);
  366. @include absoluteAligning(60px, 60px);
  367. }
  368. .sharedVideoAvatar {
  369. height: 100%;
  370. width: 100%;
  371. object-fit: cover;
  372. }
  373. .noMic {
  374. position: absolute;
  375. border-radius: 8px;
  376. z-index: 1;
  377. width: 100%;
  378. height: 100%;
  379. background-image: url("../images/noMic.png");
  380. background-color: #000;
  381. background-repeat: no-repeat;
  382. background-position: center;
  383. }
  384. .noVideo {
  385. position: absolute;
  386. border-radius: 8px;
  387. z-index: 1;
  388. width: 100%;
  389. height: 100%;
  390. background-image: url("../images/noVideo.png");
  391. background-color: #000;
  392. background-repeat: no-repeat;
  393. background-position: center;
  394. }
  395. .videoMessageFilter {
  396. -webkit-filter: grayscale(.5) opacity(0.8);
  397. filter: grayscale(.5) opacity(0.8);
  398. }
  399. .videoProblemFilter {
  400. -webkit-filter: blur(10px) grayscale(.5) opacity(0.8);
  401. filter: blur(10px) grayscale(.5) opacity(0.8);
  402. }
  403. #videoConnectionMessage {
  404. display: none;
  405. position: absolute;
  406. width: 100%;
  407. top:50%;
  408. z-index: 1011;
  409. font-weight: 600;
  410. font-size: 14px;
  411. text-align: center;
  412. color: #FFF;
  413. opacity: .80;
  414. text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
  415. 0px 1px 1px rgba(0,0,0,0.3),
  416. 1px 0px 1px rgba(0,0,0,0.3),
  417. 0px 0px 1px rgba(0,0,0,0.3);
  418. }
  419. #videoResolutionLabel {
  420. display: none;
  421. position: absolute;
  422. top: 5px;
  423. right: 5px;
  424. background: rgba(0,0,0,.5);
  425. padding: 10px;
  426. color: rgba(255,255,255,.5);
  427. z-index: 1011;
  428. }
  429. .centeredVideoLabel {
  430. display: none;
  431. position: absolute;
  432. bottom: 45%;
  433. top: auto;
  434. right: auto;
  435. left: auto;
  436. line-height: 28px;
  437. height: 28px;
  438. width: auto;
  439. padding: 5px;
  440. margin-right: auto;
  441. margin-left: auto;
  442. background: rgba(0,0,0,.5);
  443. color: #FFF;
  444. z-index: 1011;
  445. border-radius: 2px;
  446. -webkit-transition: all 2s 2s linear;
  447. transition: all 2s 2s linear;
  448. }
  449. .moveToCorner {
  450. top: 5px;
  451. right: 50px; /*leave free space for the HD label*/
  452. margin-right: 0px;
  453. margin-left: auto;
  454. background: rgba(0,0,0,.3);
  455. color: rgba(255,255,255,.5);
  456. }
  457. .hidden {
  458. }