Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

videolayout_default.css 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  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. border: 1px solid #212425;
  40. /**
  41. * Some browsers don't have full support of the object-fit property for the
  42. * video element and when we set video object-fit to "cover" the video
  43. * actually overflows the boundaries of its container, so it's important
  44. * to indicate that the "overflow" should be hidden.
  45. */
  46. overflow: hidden;
  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>div.remotevideomenu {
  132. position: absolute;
  133. color: #FFFFFF;
  134. top: 0;
  135. left: 0;
  136. padding: 5px 0px;
  137. width: 25px;
  138. font-size: 11pt;
  139. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  140. border: 0px;
  141. z-index: 2;
  142. text-align: center;
  143. }
  144. #remoteVideos .videocontainer>span.focusindicator {
  145. display: inline-block;
  146. }
  147. #remoteVideos .videocontainer>div.remotevideomenu {
  148. display: block;
  149. }
  150. .videocontainer>span.displayname,
  151. .videocontainer>input.displayname {
  152. display: none;
  153. position: absolute;
  154. color: #FFFFFF;
  155. background: rgba(0,0,0,.7);
  156. text-align: center;
  157. text-overflow: ellipsis;
  158. width: 70%;
  159. height: 20%;
  160. left: 15%;
  161. top: 40%;
  162. padding: 5px;
  163. font-size: 11pt;
  164. overflow: hidden;
  165. white-space: nowrap;
  166. z-index: 2;
  167. border-radius:3px;
  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>span.displayname:hover {
  235. cursor: text;
  236. }
  237. .videocontainer>span.status,
  238. .videocontainer>span.displayname {
  239. pointer-events: none;
  240. }
  241. .videocontainer>input.displayname {
  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. .videocontainer>span.audioMuted {
  260. display: inline-block;
  261. position: absolute;
  262. color: #FFFFFF;
  263. top: 0;
  264. padding: 8px 5px;
  265. width: 25px;
  266. font-size: 8pt;
  267. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  268. border: 0px;
  269. z-index: 3;
  270. text-align: center;
  271. }
  272. .videocontainer>span.videoMuted {
  273. display: inline-block;
  274. position: absolute;
  275. color: #FFFFFF;
  276. top: 0;
  277. right: 0;
  278. padding: 8px 5px;
  279. width: 25px;
  280. font-size: 8pt;
  281. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  282. border: 0px;
  283. z-index: 3;
  284. }
  285. .videocontainer>span.indicator {
  286. bottom: 0px;
  287. left: 0px;
  288. width: 25px;
  289. height: 25px;
  290. z-index: 3;
  291. text-align: center;
  292. border-radius: 50%;
  293. background: #21B9FC;
  294. margin: 5px;
  295. display: inline-block;
  296. position: absolute;
  297. color: #FFFFFF;
  298. font-size: 11pt;
  299. border: 0px;
  300. }
  301. #indicatoricon {
  302. padding-top: 5px;
  303. }
  304. #reloadPresentation {
  305. display: none;
  306. position: absolute;
  307. color: #FFFFFF;
  308. top: 0;
  309. right:0;
  310. padding: 10px 10px;
  311. font-size: 11pt;
  312. cursor: pointer;
  313. background: rgba(0, 0, 0, 0.3);
  314. border-radius: 5px;
  315. background-clip: padding-box;
  316. -webkit-border-radius: 5px;
  317. -webkit-background-clip: padding-box;
  318. z-index: 20; /*The reload button should appear on top of the header!*/
  319. }
  320. #header{
  321. display:none;
  322. position:absolute;
  323. text-align:center;
  324. top:0;
  325. left:0;
  326. right:0;
  327. z-index:10;
  328. pointer-events: none;
  329. min-height: 100px;
  330. }
  331. #subject {
  332. position: relative;
  333. z-index: 3;
  334. width: auto;
  335. padding: 5px;
  336. margin-left: 40%;
  337. margin-right: 40%;
  338. text-align: center;
  339. background: linear-gradient(to bottom, rgba(255,255,255,.85) , rgba(255,255,255,.35));
  340. box-shadow: 0 0 2px #000000, 0 0 10px #000000;
  341. border-bottom-left-radius: 12px;
  342. border-bottom-right-radius: 12px;
  343. display: none;
  344. }
  345. .audiolevel {
  346. display: inline-block;
  347. position: absolute;
  348. z-index: 0;
  349. border-radius:1px;
  350. pointer-events: none;
  351. }
  352. #dominantSpeaker {
  353. visibility: hidden;
  354. width: 300px;
  355. height: 300px;
  356. margin: auto;
  357. overflow: hidden;
  358. position: relative;
  359. }
  360. #dominantSpeakerAudioLevel {
  361. position: absolute;
  362. top: 0px;
  363. left: 0px;
  364. z-index: 2;
  365. visibility: inherit;
  366. }
  367. #mixedstream {
  368. display:none !important;
  369. }
  370. #dominantSpeakerAvatar {
  371. width: 200px;
  372. height: 200px;
  373. top: 50px;
  374. margin: auto;
  375. position: relative;
  376. border-radius: 100px;
  377. z-index: 3;
  378. visibility: inherit;
  379. background-color: #000000;
  380. }
  381. .userAvatar {
  382. height: 100%;
  383. position: absolute;
  384. left: 0;
  385. border-radius: 2px;
  386. }
  387. .sharedVideoAvatar {
  388. height: 100%;
  389. width: 100%;
  390. object-fit: cover;
  391. }
  392. .noMic {
  393. position: absolute;
  394. border-radius: 8px;
  395. z-index: 1;
  396. width: 100%;
  397. height: 100%;
  398. background-image: url("../images/noMic.png");
  399. background-color: #000;
  400. background-repeat: no-repeat;
  401. background-position: center;
  402. }
  403. .noVideo {
  404. position: absolute;
  405. border-radius: 8px;
  406. z-index: 1;
  407. width: 100%;
  408. height: 100%;
  409. background-image: url("../images/noVideo.png");
  410. background-color: #000;
  411. background-repeat: no-repeat;
  412. background-position: center;
  413. }
  414. .videoMessageFilter {
  415. -webkit-filter: grayscale(.5) opacity(0.8);
  416. filter: grayscale(.5) opacity(0.8);
  417. }
  418. .videoProblemFilter {
  419. -webkit-filter: blur(10px) grayscale(.5) opacity(0.8);
  420. filter: blur(10px) grayscale(.5) opacity(0.8);
  421. }
  422. #videoConnectionMessage {
  423. display: none;
  424. position: absolute;
  425. width: 100%;
  426. top:50%;
  427. z-index: 1011;
  428. font-weight: 600;
  429. font-size: 14px;
  430. text-align: center;
  431. color: #FFF;
  432. opacity: .80;
  433. text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
  434. 0px 1px 1px rgba(0,0,0,0.3),
  435. 1px 0px 1px rgba(0,0,0,0.3),
  436. 0px 0px 1px rgba(0,0,0,0.3);
  437. }
  438. #videoResolutionLabel {
  439. display: none;
  440. position: absolute;
  441. top: 5px;
  442. right: 5px;
  443. background: rgba(0,0,0,.5);
  444. padding: 10px;
  445. color: rgba(255,255,255,.5);
  446. z-index: 1011;
  447. }
  448. .centeredVideoLabel {
  449. display: none;
  450. position: absolute;
  451. bottom: 45%;
  452. top: auto;
  453. right: auto;
  454. left: auto;
  455. line-height: 28px;
  456. height: 28px;
  457. width: auto;
  458. padding: 5px;
  459. margin-right: auto;
  460. margin-left: auto;
  461. background: rgba(0,0,0,.5);
  462. color: #FFF;
  463. z-index: 1011;
  464. border-radius: 2px;
  465. -webkit-transition: all 2s 2s linear;
  466. transition: all 2s 2s linear;
  467. }
  468. .moveToCorner {
  469. top: 5px;
  470. right: 50px; /*leave free space for the HD label*/
  471. margin-right: 0px;
  472. margin-left: auto;
  473. background: rgba(0,0,0,.3);
  474. color: rgba(255,255,255,.5);
  475. }
  476. .hidden {
  477. }