Skip to content

Commit aa2a321

Browse files
NGPixelholloway
andauthored
fix(agenda): strikethrough cancelled and rescheduled events (ietf-tools#8694)
* fix(agenda): strikethrough cancelled and rescheduled events * fix(agenda): rescheduled + canceled badges width on mobile * fix(agenda): use em for canceled / rescheduled badge on mobile * fix: deleting badge width/display:block CSS --------- Co-authored-by: Matthew Holloway <matthew@staff.ietf.org>
1 parent 752bc21 commit aa2a321

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

client/agenda/AgendaDetailsModal.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ async function fetchSessionMaterials () {
327327
border-radius: 5px;
328328
329329
.badge {
330-
width: 30px;
331330
font-size: .7em;
332331
background-color: $yellow-200;
333332
border-bottom: 1px solid $yellow-500;

client/agenda/AgendaScheduleCalendar.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ function close () {
330330
}
331331
332332
.badge {
333-
width: 30px;
334333
font-size: .7em;
335334
border: 1px solid #CCC;
336335
text-transform: uppercase;

client/agenda/AgendaScheduleList.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,8 +1097,6 @@ onBeforeUnmount(() => {
10971097
}
10981098
10991099
@media screen and (max-width: $bs5-break-md) {
1100-
width: 30px;
1101-
display: block;
11021100
margin: 2px 0 0 0;
11031101
}
11041102
}
@@ -1321,6 +1319,11 @@ onBeforeUnmount(() => {
13211319
13221320
&.agenda-table-cell-room {
13231321
border-right: 1px solid darken($red-100, 5%) !important;
1322+
text-decoration: line-through;
1323+
}
1324+
1325+
&.agenda-table-cell-name > a, &.agenda-table-cell-name > span {
1326+
text-decoration: line-through;
13241327
}
13251328
13261329
&:last-child {
@@ -1348,6 +1351,11 @@ onBeforeUnmount(() => {
13481351
13491352
&.agenda-table-cell-room {
13501353
border-right: 1px solid darken($orange-100, 5%) !important;
1354+
text-decoration: line-through;
1355+
}
1356+
1357+
&.agenda-table-cell-name > a, &.agenda-table-cell-name > span {
1358+
text-decoration: line-through;
13511359
}
13521360
13531361
&:last-child {

0 commit comments

Comments
 (0)