|
@@ -17,8 +17,8 @@
|
17
|
17
|
flex-direction: column-reverse;
|
18
|
18
|
flex-wrap: nowrap;
|
19
|
19
|
position: relative;
|
20
|
|
- z-index: $zindex1; // Set z-index to make element visible
|
21
|
|
- width: $hideFilmstripButtonWidth;
|
|
20
|
+ z-index: $zindex1; // Set z-index to make element visible.
|
|
21
|
+ width: $filmstripToggleButtonWidth;
|
22
|
22
|
|
23
|
23
|
button {
|
24
|
24
|
font-size: 14px;
|
|
@@ -50,7 +50,7 @@
|
50
|
50
|
position:relative;
|
51
|
51
|
height:196px;
|
52
|
52
|
padding: 0;
|
53
|
|
- /*The filmstrip should not be covered by the left toolbar*/
|
|
53
|
+ /* The filmstrip should not be covered by the left toolbar. */
|
54
|
54
|
padding-left: $defaultToolbarSize + 5;
|
55
|
55
|
bottom: 0;
|
56
|
56
|
width:auto;
|
|
@@ -58,8 +58,8 @@
|
58
|
58
|
z-index: $filmstripVideosZ;
|
59
|
59
|
transition: bottom 2s;
|
60
|
60
|
overflow: visible !important;
|
61
|
|
- /*!!!Removes the gap between the local video container and the remote
|
62
|
|
- videos.*/
|
|
61
|
+ /*!!! Removes the gap between the local video container and the remote
|
|
62
|
+ videos. */
|
63
|
63
|
font-size: 0pt;
|
64
|
64
|
|
65
|
65
|
&.hidden {
|
|
@@ -79,8 +79,8 @@
|
79
|
79
|
}
|
80
|
80
|
|
81
|
81
|
/**
|
82
|
|
- * Focused video thumbnail.
|
83
|
|
- */
|
|
82
|
+ * Focused video thumbnail.
|
|
83
|
+ */
|
84
|
84
|
&.videoContainerFocused {
|
85
|
85
|
transition-duration: 0.5s;
|
86
|
86
|
-webkit-transition-duration: 0.5s;
|
|
@@ -97,8 +97,8 @@
|
97
|
97
|
}
|
98
|
98
|
|
99
|
99
|
/**
|
100
|
|
- * Hovered video thumbnail.
|
101
|
|
- */
|
|
100
|
+ * Hovered video thumbnail.
|
|
101
|
+ */
|
102
|
102
|
&:hover {
|
103
|
103
|
cursor: hand;
|
104
|
104
|
border: $thumbnailVideoBorder solid $videoThumbnailHovered;
|
|
@@ -110,7 +110,7 @@
|
110
|
110
|
}
|
111
|
111
|
}
|
112
|
112
|
|
113
|
|
- /* With TemasysWebRTC plugin <object/> element is used
|
|
113
|
+ /* With the TemasysWebRTC plugin <object/> element is used
|
114
|
114
|
instead of <video/> */
|
115
|
115
|
& > video,
|
116
|
116
|
& > object {
|
|
@@ -121,4 +121,13 @@
|
121
|
121
|
}
|
122
|
122
|
}
|
123
|
123
|
}
|
|
124
|
+
|
|
125
|
+ /**
|
|
126
|
+ * Style the filmstrip videos in filmstrip-only mode.
|
|
127
|
+ */
|
|
128
|
+ &__videos-filmstripOnly {
|
|
129
|
+ margin-top: auto;
|
|
130
|
+ margin-bottom: auto;
|
|
131
|
+ padding-right: $defaultToolbarSize;
|
|
132
|
+ }
|
124
|
133
|
}
|