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 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. #videoconference_page {
  2. min-height: 100%;
  3. }
  4. #videospace {
  5. display: block;
  6. min-height: 100%;
  7. position: absolute;
  8. top: 0px;
  9. left: 0px;
  10. right: 0px;
  11. overflow: hidden;
  12. }
  13. .video_blurred_container {
  14. height: 100%;
  15. filter: blur(40px);
  16. left: 0;
  17. overflow: hidden;
  18. position: absolute;
  19. top: 0;
  20. width: 100%;
  21. }
  22. .videocontainer {
  23. position: relative;
  24. text-align: center;
  25. &__background {
  26. @include topLeft();
  27. background-color: black;
  28. border-radius: $borderRadius;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. /**
  33. * The toolbar of the video thumbnail.
  34. */
  35. &__toolbar,
  36. &__toptoolbar {
  37. position: absolute;
  38. left: 0;
  39. pointer-events: none;
  40. z-index: $zindex10;
  41. width: 100%;
  42. box-sizing: border-box; // Includes the padding in the 100% width.
  43. /**
  44. * FIXME (lenny): Disabling pointer-events is a pretty big sin that
  45. * sidesteps the problems. There are z-index wars occurring within
  46. * videocontainer and AtlasKit Tooltips rely on their parent z-indexe
  47. * being higher than whatever they need to appear over. So set a higher
  48. * z-index for the tooltip containers but make any empty space not block
  49. * mouse overs for various mouseover triggers.
  50. */
  51. pointer-events: none;
  52. * {
  53. pointer-events: auto;
  54. }
  55. .indicator-container {
  56. display: inline-block;
  57. float: left;
  58. pointer-events: all;
  59. }
  60. }
  61. &__toolbar {
  62. bottom: 0;
  63. height: $thumbnailToolbarHeight;
  64. padding: 0 5px 0 5px;
  65. }
  66. &__toptoolbar {
  67. $toolbarIconMargin: 5px;
  68. top: 0;
  69. padding-bottom: 0;
  70. /**
  71. * Override text-align center as icons need to be left justified.
  72. */
  73. text-align: left;
  74. /**
  75. * Intentionally use margin on the icon itself as AtlasKit InlineDialog
  76. * positioning depends on the trigger (indicator icon).
  77. */
  78. .indicator {
  79. margin-left: 5px;
  80. margin-top: $toolbarIconMargin;
  81. }
  82. .indicator-container:nth-child(1) .indicator {
  83. margin-left: $toolbarIconMargin;
  84. }
  85. .indicator-container {
  86. display: inline-block;
  87. vertical-align: top;
  88. .popover-trigger {
  89. display: inline-block;
  90. }
  91. }
  92. .connection-indicator,
  93. .indicator {
  94. position: relative;
  95. font-size: 8px;
  96. text-align: center;
  97. line-height: $thumbnailIndicatorSize;
  98. padding: 0;
  99. @include circle($thumbnailIndicatorSize);
  100. box-sizing: border-box;
  101. z-index: $zindex3;
  102. background: $dominantSpeakerBg;
  103. color: $thumbnailPictogramColor;
  104. border: $thumbnailIndicatorBorder solid $thumbnailPictogramColor;
  105. .indicatoricon {
  106. @include absoluteAligning();
  107. }
  108. .connection {
  109. position: relative;
  110. display: inline-block;
  111. margin: 0 auto;
  112. left: 0;
  113. @include transform(translate(0, -50%));
  114. &_empty,
  115. &_lost
  116. {
  117. color: #8B8B8B;/*#FFFFFF*/
  118. overflow: hidden;
  119. }
  120. &_full
  121. {
  122. @include topLeft();
  123. color: #FFFFFF;/*#15A1ED*/
  124. overflow: hidden;
  125. }
  126. &_ninja
  127. {
  128. font-size: 1.5em;
  129. }
  130. }
  131. .icon-gsm-bars {
  132. cursor: pointer;
  133. font-size: 1em;
  134. }
  135. }
  136. .hide-connection-indicator {
  137. display: none;
  138. }
  139. }
  140. &__hoverOverlay {
  141. background: rgba(0,0,0,.6);
  142. border-radius: $borderRadius;
  143. position: relative;
  144. width: 100%;
  145. height: 100%;
  146. visibility: hidden;
  147. z-index: $zindex2;
  148. }
  149. &.audio-only {
  150. .videoThumbnailProblemFilter {
  151. filter: none;
  152. }
  153. }
  154. }
  155. #localVideoWrapper {
  156. display:inline-block;
  157. }
  158. .flipVideoX {
  159. transform: scale(-1, 1);
  160. -moz-transform: scale(-1, 1);
  161. -webkit-transform: scale(-1, 1);
  162. -o-transform: scale(-1, 1);
  163. }
  164. #localVideoWrapper video,
  165. #localVideoWrapper object {
  166. border-radius: $borderRadius !important;
  167. cursor: hand;
  168. object-fit: cover;
  169. }
  170. #largeVideo,
  171. #largeVideoWrapper,
  172. #largeVideoContainer {
  173. overflow: hidden;
  174. text-align: center;
  175. }
  176. #largeVideoWrapper {
  177. box-shadow: 0 0 20px -2px #444;
  178. }
  179. #largeVideo,
  180. #largeVideoWrapper
  181. {
  182. object-fit: cover;
  183. }
  184. #sharedVideo,
  185. #etherpad,
  186. #localVideoWrapper video,
  187. #localVideoWrapper object,
  188. #localVideoWrapper,
  189. #largeVideoWrapper,
  190. #largeVideoWrapper>video,
  191. #largeVideoWrapper>object,
  192. .videocontainer>video,
  193. .videocontainer>object {
  194. position: absolute;
  195. left: 0;
  196. top: 0;
  197. z-index: $zindex1;
  198. width: 100%;
  199. height: 100%;
  200. }
  201. #etherpad {
  202. text-align: center;
  203. }
  204. #etherpad {
  205. z-index: $zindex0;
  206. }
  207. /**
  208. * Positions video thumbnail display name and editor.
  209. */
  210. .videocontainer .displayname,
  211. .videocontainer .editdisplayname {
  212. display: inline-block;
  213. position: absolute;
  214. left: 10%;
  215. width: 80%;
  216. top: 50%;
  217. @include transform(translateY(-40%));
  218. color: $participantNameColor;
  219. text-align: center;
  220. text-overflow: ellipsis;
  221. font-size: 12px;
  222. font-weight: 100;
  223. overflow: hidden;
  224. white-space: nowrap;
  225. line-height: $thumbnailToolbarHeight;
  226. z-index: $zindex2;
  227. }
  228. /**
  229. * Positions video thumbnail display name editor.
  230. */
  231. .videocontainer .editdisplayname {
  232. outline: none;
  233. border: none;
  234. background: none;
  235. box-shadow: none;
  236. padding: 0;
  237. }
  238. #localVideoContainer .displayname:hover {
  239. cursor: text;
  240. }
  241. .videocontainer .displayname {
  242. pointer-events: none;
  243. padding: 0 3px 0 3px;
  244. }
  245. .videocontainer .editdisplayname {
  246. height: auto;
  247. }
  248. #localDisplayName {
  249. pointer-events: auto !important;
  250. }
  251. .videocontainer>a.displayname {
  252. display: inline-block;
  253. position: absolute;
  254. color: #FFFFFF;
  255. bottom: 0;
  256. right: 0;
  257. padding: 3px 5px;
  258. font-size: 9pt;
  259. cursor: pointer;
  260. z-index: $zindex2;
  261. }
  262. /**
  263. * Video thumbnail toolbar icon.
  264. */
  265. .videocontainer .toolbar-icon {
  266. font-size: 8pt;
  267. text-align: center;
  268. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  269. color: #FFFFFF;
  270. width: 12px;
  271. line-height: $thumbnailToolbarHeight;
  272. height: $thumbnailToolbarHeight;
  273. padding: 0;
  274. border: 0;
  275. margin: 0px 5px 0px 0px;
  276. }
  277. /**
  278. * Toolbar icon internal i elements (font icons).
  279. */
  280. .toolbar-icon>i {
  281. line-height: $thumbnailToolbarHeight;
  282. }
  283. /**
  284. * Toolbar icons positioned on the right.
  285. */
  286. .moderator-icon {
  287. display: inline-block;
  288. &.right {
  289. float: right;
  290. margin: 0px 0px 0px 5px;
  291. }
  292. .toolbar-icon {
  293. margin: 0;
  294. }
  295. }
  296. .raisehandindicator {
  297. background: $raiseHandBg;
  298. }
  299. .connection-indicator {
  300. background: $connectionIndicatorBg;
  301. &.status-high {
  302. background: green;
  303. }
  304. &.status-med {
  305. background: #FFD740;
  306. }
  307. &.status-lost {
  308. background: gray;
  309. }
  310. &.status-low {
  311. background: #BF2117;
  312. }
  313. &.status-other {
  314. background: $connectionIndicatorBg;
  315. }
  316. }
  317. .remote-video-menu-trigger,
  318. .remotevideomenu
  319. {
  320. display: inline-block;
  321. position: absolute;
  322. top: 0px;
  323. right: 0;
  324. z-index: $zindex2;
  325. width: 18px;
  326. height: 13px;
  327. color: #FFF;
  328. font-size: 10pt;
  329. >i{
  330. cursor: hand;
  331. }
  332. }
  333. .remote-video-menu-trigger {
  334. margin-top: 7px;
  335. }
  336. /**
  337. * Audio indicator on video thumbnails.
  338. */
  339. .videocontainer>span.audioindicator,
  340. .videocontainer>.audioindicator-container {
  341. position: absolute;
  342. display: inline-block;
  343. left: 6px;
  344. top: 50%;
  345. margin-top: -17px;
  346. width: 6px;
  347. height: 35px;
  348. z-index: $zindex2;
  349. border: none;
  350. .audiodot-top,
  351. .audiodot-bottom,
  352. .audiodot-middle {
  353. opacity: 0;
  354. display: inline-block;
  355. @include circle(5px);
  356. background: $audioLevelShadow;
  357. margin: 1px 0 1px 0;
  358. transition: opacity .25s ease-in-out;
  359. -moz-transition: opacity .25s ease-in-out;
  360. }
  361. span.audiodot-top::after,
  362. span.audiodot-bottom::after,
  363. span.audiodot-middle::after {
  364. content: "";
  365. display: inline-block;
  366. width: 5px;
  367. height: 5px;
  368. border-radius: 50%;
  369. -webkit-filter: blur(0.5px);
  370. filter: blur(0.5px);
  371. background: $audioLevelBg;
  372. }
  373. }
  374. #reloadPresentation {
  375. display: none;
  376. position: absolute;
  377. color: #FFFFFF;
  378. top: 0;
  379. right:0;
  380. padding: 10px 10px;
  381. font-size: 11pt;
  382. cursor: pointer;
  383. background: rgba(0, 0, 0, 0.3);
  384. border-radius: 5px;
  385. background-clip: padding-box;
  386. -webkit-border-radius: 5px;
  387. -webkit-background-clip: padding-box;
  388. z-index: $reloadZ; /*The reload button should appear on top of the header!*/
  389. }
  390. .audiolevel {
  391. display: inline-block;
  392. position: absolute;
  393. z-index: $zindex0;
  394. border-radius:1px;
  395. pointer-events: none;
  396. }
  397. #dominantSpeaker {
  398. visibility: hidden;
  399. width: 300px;
  400. height: 300px;
  401. margin: auto;
  402. position: relative;
  403. }
  404. #mixedstream {
  405. display:none !important;
  406. }
  407. #dominantSpeakerAvatar,
  408. .dynamic-shadow {
  409. width: 200px;
  410. height: 200px;
  411. }
  412. #dominantSpeakerAvatar {
  413. top: 50px;
  414. margin: auto;
  415. position: relative;
  416. border-radius: 100px;
  417. visibility: inherit;
  418. background-color: #000000;
  419. }
  420. .dynamic-shadow {
  421. border-radius: 50%;
  422. position: absolute;
  423. top: 50%;
  424. left: 50%;
  425. margin: -100px 0 0 -100px;
  426. transition: box-shadow 0.3s ease;
  427. }
  428. .userAvatar {
  429. @include maxSize(60px);
  430. @include absoluteAligning();
  431. border-radius: 50%;
  432. height: 50%;
  433. width: auto;
  434. }
  435. .sharedVideoAvatar {
  436. height: 100%;
  437. width: 100%;
  438. object-fit: cover;
  439. }
  440. .noMic {
  441. position: absolute;
  442. border-radius: 8px;
  443. z-index: $zindex1;
  444. width: 100%;
  445. height: 100%;
  446. background-image: url("../images/noMic.png");
  447. background-color: #000;
  448. background-repeat: no-repeat;
  449. background-position: center;
  450. }
  451. .noVideo {
  452. position: absolute;
  453. border-radius: 8px;
  454. z-index: $zindex1;
  455. width: 100%;
  456. height: 100%;
  457. background-image: url("../images/noVideo.png");
  458. background-color: #000;
  459. background-repeat: no-repeat;
  460. background-position: center;
  461. }
  462. .videoMessageFilter {
  463. -webkit-filter: grayscale(.5) opacity(0.8);
  464. filter: grayscale(.5) opacity(0.8);
  465. }
  466. .remoteVideoProblemFilter {
  467. -webkit-filter: grayscale(100%);
  468. filter: grayscale(100%);
  469. }
  470. .videoProblemFilter {
  471. -webkit-filter: blur(10px) grayscale(.5) opacity(0.8);
  472. filter: blur(10px) grayscale(.5) opacity(0.8);
  473. }
  474. .videoThumbnailProblemFilter {
  475. -webkit-filter: grayscale(100%);
  476. filter: grayscale(100%);
  477. }
  478. #remotePresenceMessage,
  479. #remoteConnectionMessage {
  480. position: absolute;
  481. width: auto;
  482. z-index: $zindex2;
  483. font-weight: 600;
  484. font-size: 14px;
  485. text-align: center;
  486. color: #FFF;
  487. left: 50%;
  488. transform: translate(-50%, 0);
  489. }
  490. #remotePresenceMessage .presence-label,
  491. #remoteConnectionMessage {
  492. opacity: .80;
  493. text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
  494. 0px 1px 1px rgba(0,0,0,0.3),
  495. 1px 0px 1px rgba(0,0,0,0.3),
  496. 0px 0px 1px rgba(0,0,0,0.3);
  497. background: rgba(0,0,0,.5);
  498. border-radius: 5px;
  499. padding: 5px;
  500. padding-left: 10px;
  501. padding-right: 10px;
  502. }
  503. #remotePresenceMessage .no-presence,
  504. #remoteConnectionMessage {
  505. display: none;
  506. }
  507. #localConnectionMessage {
  508. display: none;
  509. position: absolute;
  510. left: 0;
  511. width: 100%;
  512. top:50%;
  513. z-index: $zindex2;
  514. font-weight: 600;
  515. font-size: 14px;
  516. text-align: center;
  517. color: #FFF;
  518. opacity: .80;
  519. text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
  520. 0px 1px 1px rgba(0,0,0,0.3),
  521. 1px 0px 1px rgba(0,0,0,0.3),
  522. 0px 0px 1px rgba(0,0,0,0.3);
  523. }