File tree Expand file tree Collapse file tree 2 files changed +39
-2
lines changed Expand file tree Collapse file tree 2 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 10
10
position : absolute ;
11
11
top : 0 ;
12
12
}
13
+
14
+ .history-tl-container {
15
+ display : block ;
16
+ margin : auto ;
17
+ position : relative ;
18
+ width : 100% ;
19
+ }
20
+
21
+ .history-tl-container ul .tl li {
22
+ border-left : 1px solid rgba (86 , 86 , 87 , .15 );
23
+ list-style : none ;
24
+ margin : auto ;
25
+ margin-left : 75px ;
26
+ min-height : 50px ;
27
+ padding : 0 0 10px 10px ;
28
+ position : relative ;
29
+ }
30
+
31
+ ul .tl li .timestamp {
32
+ color : #3b3939 ;
33
+ font-size : 13px ;
34
+ left : -20% ;
35
+ position : absolute ;
36
+ text-align : right ;
37
+ width : 100px ;
38
+ }
Original file line number Diff line number Diff line change 44
44
</InfinityLoader >
45
45
{{ /if }}
46
46
47
- <div class =" mt-8" >
47
+
48
+ <div class =" history-tl-container" >
49
+ <ul class =" tl" >
48
50
{{ #each this.model.session as |session |}}
49
- <Public::SessionItem @session ={{ session }} @timezone ={{ this.timezone }} />
51
+ <li >
52
+ <div class =" timestamp" >
53
+ {{ general-date session.startsAt session.event.timezone ' HH:mm' }} -
54
+ {{ general-date session.endsAt session.event.timezone ' HH:mm' }}
55
+ </div >
56
+ <div class =" item-title" >
57
+ <Public::SessionItem @session ={{ session }} @timezone ={{ this.timezone }} />
58
+ </div >
59
+ </li >
50
60
{{ else }}
51
61
<div class =" ui disabled header" >{{ t ' No Sessions exist for this time period' }} </div >
52
62
{{ /each }}
63
+ </ul >
53
64
<InfinityLoader @infinityModel ={{ this.model.session }} @triggerOffset ={{ 300 }} @eventDebounce ={{ 50 }} >
54
65
<div class =" center aligned five wide column" >
55
66
<div class =" ui loading very padded basic segment" >
You can’t perform that action at this time.
0 commit comments