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.

videolayout_default.css 10KB

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