|
|
@@ -1,16 +1,56 @@
|
|
|
1
|
+%align-right {
|
|
|
2
|
+ @include flex();
|
|
|
3
|
+ flex-direction: row-reverse;
|
|
|
4
|
+ flex-wrap: nowrap;
|
|
|
5
|
+ justify-content: flex-start;
|
|
|
6
|
+}
|
|
|
7
|
+
|
|
1
|
8
|
.filmstrip {
|
|
2
|
|
- &__videos {
|
|
|
9
|
+ position: absolute;
|
|
|
10
|
+ bottom: 0;
|
|
|
11
|
+ right: 0;
|
|
|
12
|
+ padding: 10px 10px 17px 5px;
|
|
|
13
|
+ @extend %align-right;
|
|
|
14
|
+
|
|
|
15
|
+ &__toolbar {
|
|
3
|
16
|
@include flex();
|
|
4
|
|
- flex-direction: row-reverse;
|
|
|
17
|
+ flex-direction: column-reverse;
|
|
5
|
18
|
flex-wrap: nowrap;
|
|
6
|
|
- justify-content: flex-start;
|
|
|
19
|
+ position: relative;
|
|
|
20
|
+ z-index: 1; // Set z-index to make element visible
|
|
|
21
|
+ width: 20px;
|
|
|
22
|
+
|
|
|
23
|
+ button {
|
|
|
24
|
+ font-size: 14px;
|
|
|
25
|
+ line-height: 1.2;
|
|
|
26
|
+ text-align: center;
|
|
|
27
|
+ background: transparent;
|
|
|
28
|
+ opacity: 0.7;
|
|
|
29
|
+ height: auto;
|
|
|
30
|
+ width: 100%;
|
|
|
31
|
+ padding: 0;
|
|
|
32
|
+ margin: 0 1px;
|
|
|
33
|
+ border: none;
|
|
|
34
|
+ outline: none;
|
|
|
35
|
+
|
|
|
36
|
+ -webkit-appearance: none;
|
|
|
37
|
+
|
|
|
38
|
+ &:hover {
|
|
|
39
|
+ opacity: 1;
|
|
|
40
|
+ }
|
|
|
41
|
+
|
|
|
42
|
+ i {
|
|
|
43
|
+ cursor: pointer;
|
|
|
44
|
+ }
|
|
|
45
|
+ }
|
|
|
46
|
+ }
|
|
7
|
47
|
|
|
8
|
|
- position:absolute;
|
|
9
|
|
- text-align:right;
|
|
|
48
|
+ &__videos {
|
|
|
49
|
+ @extend %align-right;
|
|
|
50
|
+ position:relative;
|
|
10
|
51
|
height:196px;
|
|
11
|
|
- padding: 10px 10px 17px 5px;
|
|
|
52
|
+ padding: 0;
|
|
12
|
53
|
bottom: 0;
|
|
13
|
|
- right: 0;
|
|
14
|
54
|
width:auto;
|
|
15
|
55
|
border: 2px solid transparent;
|
|
16
|
56
|
z-index: 5;
|
|
|
@@ -69,8 +109,4 @@
|
|
69
|
109
|
}
|
|
70
|
110
|
}
|
|
71
|
111
|
}
|
|
72
|
|
-}
|
|
73
|
|
-
|
|
74
|
|
-.filmstripToolbar + #remoteVideos {
|
|
75
|
|
- padding-right: 24px;
|
|
76
|
112
|
}
|