Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
d348dee
refactor: move agenda_timezone.js code out of global scope
jennifer-richards Mar 23, 2022
f1dbcd6
refactor: separate function defs from adding to 'window'
jennifer-richards Mar 23, 2022
4f82d94
refactor: eliminate 'var' declarations and clean up lint
jennifer-richards Mar 23, 2022
a22a000
chore: remove unused CSS
jennifer-richards Mar 23, 2022
9dcee86
fix: add/maintain link to current session row on the agenda
jennifer-richards Mar 23, 2022
734e0a1
fix: move link to current session to the RH nav panel
jennifer-richards Mar 23, 2022
1d051ec
fix: nav to next session as "current" if no sessions ongoing
jennifer-richards Mar 23, 2022
6b5d0ff
fix: restore the horizontal line "current session" indicator
jennifer-richards Mar 23, 2022
2240827
refactor: clean up js and css for readability/accurate naming
jennifer-richards Mar 23, 2022
ad9634d
refactor: use $border-widths map; move inline style to ietf.scss
jennifer-richards Mar 24, 2022
1dc280d
fix: correct test for whether extra-nav elements are present
jennifer-richards Mar 24, 2022
b29ebfa
feat: clean up righthand panel nav formatting
jennifer-richards Mar 24, 2022
6d447b2
Merge branch 'feat/bs5' into jennifer/tix3697
jennifer-richards Mar 24, 2022
9c74c1a
Merge branch 'feat/bs5' into jennifer/tix3697
jennifer-richards Mar 24, 2022
8171f30
fix: eliminate race condition when selecting rows
jennifer-richards Apr 7, 2022
3244e0c
Merge remote-tracking branch 'origin/feat/bs5' into jennifer/tix3697
jennifer-richards Apr 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions ietf/static/css/ietf.scss
Original file line number Diff line number Diff line change
Expand Up @@ -922,12 +922,8 @@ td.position-empty {
padding-left: 0px !important;
}

.ongoing>td:first-child {
background-color: red !important;
}

.ongoing>td:last-child {
background-color: red !important;
#agenda-table tbody tr.current-session {
border-top: map.get($border-widths, 2) solid map.get($theme-colors, "info");
}

.timetooltip {
Expand Down Expand Up @@ -975,4 +971,9 @@ td.position-empty {

#current-time {
display: inline-block;
}

// righthand nav panel styling
#righthand-nav {
width: inherit;
}
Loading