Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
25 changes: 25 additions & 0 deletions client/agenda/AgendaDetailsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ async function fetchSessionMaterials () {
<style lang="scss">
@import "bootstrap/scss/functions";
@import "bootstrap/scss/variables";
@import "../shared/breakpoints";

.agenda-eventdetails {
width: 90vw;
Expand Down Expand Up @@ -403,5 +404,29 @@ async function fetchSessionMaterials () {
font-size: 16px;
}
}

.n-card-header {
@media screen and (max-width: $bs5-break-sm) {
display: block;
padding: 1em;
}
}

.n-card__content {
@media screen and (max-width: $bs5-break-sm) {
padding: 1em;

.detail-title {
display: block;
}

.nav-link,
.nav-link.active {
display: grid;
width: 1em;
border-width: 1em;
}
}
}
}
</style>
2 changes: 1 addition & 1 deletion dev/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/ietf-tools/datatracker-app-base:20251201T1548
FROM ghcr.io/ietf-tools/datatracker-app-base:20251219T2152
LABEL maintainer="IETF Tools Team <tools-discuss@ietf.org>"

ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion dev/build/TARGET_BASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20251201T1548
20251219T2152
2 changes: 1 addition & 1 deletion ietf/iesg/agenda.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def agenda_sections():
('4.2', {'title':"WG rechartering"}),
('4.2.1', {'title':"Under evaluation for IETF review", 'docs':[]}),
('4.2.2', {'title':"Proposed for approval", 'docs':[]}),
('5', {'title':"IAB news we can use"}),
('5', {'title':"IESG Liaison News"}),
('6', {'title':"Management issues"}),
('7', {'title':"Any Other Business (WG News, New Proposals, etc.)"}),
])
Expand Down
Loading