@@ -76,6 +76,12 @@ input:disabled {
7676 100% { transform : rotate (360deg ); }
7777}
7878
79+ /* Safari */
80+ @-webkit-keyframes spin {
81+ 0% { -webkit-transform : rotate (0deg ); }
82+ 100% { -webkit-transform : rotate (360deg ); }
83+ }
84+
7985.identity {
8086 color : # ca5010
8187}
@@ -268,8 +274,25 @@ ul {
268274 box-shadow : 0px 0px 0px 3px # ca5010 ;
269275}
270276
271- .spinner-border {
272- color : # ca5010 ;
277+ .remote-video-container {
278+ position : relative;
279+ }
280+
281+ .remote-video-loading-spinner {
282+ border : 12px solid # f3f3f3 ;
283+ border-radius : 50% ;
284+ border-top : 12px solid # ca5010 ;
285+ width : 100px ;
286+ height : 100px ;
287+ -webkit-animation : spin 2s linear infinite; /* Safari */
288+ animation : spin 2s linear infinite;
289+ position : absolute;
290+ margin : auto;
291+ top : 0 ;
292+ bottom : 0 ;
293+ left : 0 ;
294+ right : 0 ;
295+ transform : translate (-50% , -50% );
273296}
274297
275298.icon-text-large {
@@ -708,6 +731,18 @@ ul {
708731 margin-left : -3rem !important ;
709732}
710733
734+ div .callDebugInfoJSONStringDiv {
735+ background-color : # 292827 ;
736+ /* height: 500px;
737+ width: 1350px; */
738+ height : auto;
739+ width : auto;
740+ max-width : 1350px ;
741+ max-height : 500px ;
742+ overflow-y : auto;
743+ overflow-x : auto;
744+ }
745+
711746/*********************************
712747* Small screen *
713748*********************************/
@@ -727,16 +762,21 @@ ul {
727762 .call-input-panel {
728763 padding : 0 ;
729764 }
730- }
731765
732- div .callDebugInfoJSONStringDiv {
733- background-color : # 292827 ;
734- /* height: 500px;
735- width: 1350px; */
736- height : auto;
737- width : auto;
738- max-width : 1350px ;
739- max-height : 500px ;
740- overflow-y : auto;
741- overflow-x : auto;
766+ .remote-video-loading-spinner {
767+ border : 8px solid # f3f3f3 ;
768+ border-radius : 50% ;
769+ border-top : 8px solid # ca5010 ;
770+ width : 60px ;
771+ height : 60px ;
772+ -webkit-animation : spin 2s linear infinite; /* Safari */
773+ animation : spin 2s linear infinite;
774+ position : absolute;
775+ margin : auto;
776+ top : 0 ;
777+ bottom : 0 ;
778+ left : 0 ;
779+ right : 0 ;
780+ transform : translate (-50% , -50% );
781+ }
742782}
0 commit comments