This repository was archived by the owner on Apr 29, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
templates/conference/schedule Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,10 @@ a.navbar-brand:hover{
87
87
flex-wrap : wrap;
88
88
}
89
89
90
+ # days-navbar {
91
+ background-image : none;
92
+ }
93
+
90
94
# content_page {
91
95
min-height : 500px ;
92
96
margin : 40px 0 ;
Original file line number Diff line number Diff line change 259
259
260
260
< div class ="schedule__grid schedule__day--time " style ="--cols: 1; --rows: {{ schedule.grid.rows }}; ">
261
261
{% for time in schedule.grid.times %}
262
- < div class ="schedule__time " style ="
262
+ < div class ="schedule__time "
263
+ style ="
263
264
grid-row: {{ time.start_row }} / {{ time.end_row }};
264
265
grid-column: 1 / 1;
265
266
">
266
267
< a class ="schedule-time-display "
267
268
data-fulltime ="{{ time.time|utc|date:'Y-m-d H:i' }} "
268
269
name ="{{ time.time|utc|date:'H:i' }}-UTC "
270
+ id ="{{ time.time|utc|date:'H:i' }}-UTC "
269
271
href ="#{{ time.time|utc|date:'H:i' }}-UTC "> {{ time.time|utc|date:'H:i' }}</ a >
270
272
</ div >
271
273
{% endfor %}
420
422
421
423
$ ( document ) . ready ( function ( ) {
422
424
format_local_times ( ) ;
425
+ // Adjust notice
423
426
$ ( '#timezone' ) . text ( "Your Time" ) ;
427
+ // Scroll to anchor, if any
428
+ if ( location . hash )
429
+ location . href = location . hash ;
424
430
} ) ;
425
431
426
432
</ script >
You can’t perform that action at this time.
0 commit comments