1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
| .sharePopup{
| position: absolute;
| &.top{
| bottom: 0;
| }
| &.bottom{
| top: 0;
| }
| right: 0;
| pointer-events: none;
|
| .sharePopupContainer{
| pointer-events: auto;
| position: relative;
| display: block;
| left: -26px;
| min-width: 232px;
|
| &.top{
| top: -43px;
| }
| &.bottom{
| top: 153px;
| left: -46px;
| }
|
| &.popover.top > .arrow{
| left: auto;
| right: 60px;
| }
| &.popover.bottom > .arrow{
| left: 25px;
| }
|
| h3.popover-title{
| padding-top: 8px;
| display: flex;
| justify-content: space-between;
| }
|
| .checkboxes{
| display: flex;
| justify-content: space-between;
| }
|
| .btn-qr{
| max-height: 32px;
| }
|
| .checkbox{
| margin-top: 0;
| &.last{
| margin-left: 12px;
| }
| }
|
| .fa-sync{
| margin-left: -25px;
| margin-right: 5px;
| }
|
| .share-links{
| & > div{
| margin-top: 8px;
| &:first-child{
| margin-top: 4px;
| }
| }
| max-height: 0;
| overflow: hidden;
| transition: max-height 1s ease-in-out;
|
| &.show{
| max-height: 800px;
| height: auto;
| }
| }
| }
| }
|
|