Skip to content

Commit 9d66346

Browse files
authored
Fix CSS in JuMP-dev 2024 schedule (#129)
1 parent dc59f2c commit 9d66346

File tree

3 files changed

+23
-35
lines changed

3 files changed

+23
-35
lines changed

_includes/jump-dev-2024-schedule.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</tr>
1414
<tr>
1515
<td class="talk-table">09:00&nbsp;</td>
16-
<td class="talk-table talk-long"><div class="talk-title">The state of JuMP</div><div class="talk-speaker">Miles Lubin</div></td>
16+
<td class="talk-table"><div class="talk-title">The state of JuMP</div><div class="talk-speaker">Miles Lubin</div></td>
1717
<td class="talk-table"><div class="talk-title">Accelerating Automatic Differentiation with InfiniteExaModels.jl</div><div class="talk-speaker">Joshua Pulsipher</div></td>
1818
<td class="talk-table"></td>
1919
</tr>
2020
<tr>
2121
<td class="talk-table">09:15&nbsp;</td>
22-
<td class="talk-table talk-long"></td>
22+
<td class="talk-table"></td>
2323
<td class="talk-table"></td>
2424
<td class="talk-table"></td>
2525
</tr>
@@ -61,13 +61,13 @@
6161
</tr>
6262
<tr>
6363
<td class="talk-table">11:00&nbsp;</td>
64-
<td class="talk-table talk-long"><div class="talk-title">Applied optimization with JuMP at SINTEF</div><div class="talk-speaker">Truls Flatberg</div></td>
64+
<td class="talk-table"><div class="talk-title">Applied optimization with JuMP at SINTEF</div><div class="talk-speaker">Truls Flatberg</div></td>
6565
<td class="talk-table"><div class="talk-title">Invited talk: Unifying nonlinearly constrained nonconvex optimization</div><div class="talk-speaker">Charlie Vanaret</div></td>
6666
<td class="talk-table talk-organization"></td>
6767
</tr>
6868
<tr>
6969
<td class="talk-table">11:15&nbsp;</td>
70-
<td class="talk-table talk-long"></td>
70+
<td class="talk-table"></td>
7171
<td class="talk-table"></td>
7272
<td class="talk-table talk-organization"></td>
7373
</tr>
@@ -85,13 +85,13 @@
8585
</tr>
8686
<tr>
8787
<td class="talk-table">12:00&nbsp;</td>
88-
<td class="talk-table talk-long"><div class="talk-title">Solving the Market-to-Market Problem in Large Scale Power Systems</div><div class="talk-speaker">Jose Daniel Lara</div></td>
88+
<td class="talk-table"><div class="talk-title">Solving the Market-to-Market Problem in Large Scale Power Systems</div><div class="talk-speaker">Jose Daniel Lara</div></td>
8989
<td class="talk-table"><div class="talk-title">The New DisjunctiveProgramming.jl</div><div class="talk-speaker">Joshua Pulsipher</div></td>
9090
<td class="talk-table talk-organization"></td>
9191
</tr>
9292
<tr>
9393
<td class="talk-table">12:15&nbsp;</td>
94-
<td class="talk-table talk-long"></td>
94+
<td class="talk-table"></td>
9595
<td class="talk-table"><div class="talk-title">PiecewiseAffineApprox.jl</div><div class="talk-speaker">Lars Hellemo</div></td>
9696
<td class="talk-table talk-organization"></td>
9797
</tr>

assets/jump-dev-workshops/2024/schedule.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ type = "organization"
1010
[talks.1_09_00]
1111
speaker = "Miles Lubin"
1212
title = "The state of JuMP"
13-
type = "long"
1413

1514
[talks.1_09_15]
16-
type = "long"
1715

1816
[talks.1_09_30]
1917
speaker = "Andrew Rosemberg"
@@ -42,10 +40,8 @@ type = "break"
4240
[talks.1_11_00]
4341
speaker = "Truls Flatberg"
4442
title = "Applied optimization with JuMP at SINTEF"
45-
type = "long"
4643

4744
[talks.1_11_15]
48-
type = "long"
4945

5046
[talks.1_11_30]
5147
speaker = "Ni Wang"
@@ -58,10 +54,8 @@ title = "SpineOpt.jl: A highly adaptable modelling framework for multi-energy sy
5854
[talks.1_12_00]
5955
speaker = "Jose Daniel Lara"
6056
title = "Solving the Market-to-Market Problem in Large Scale Power Systems"
61-
type = "long"
6257

6358
[talks.1_12_15]
64-
type = "long"
6559

6660
[talks.1_12_30]
6761
title = "Lunch"

assets/styles.scss

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,25 @@ $linkColour: $julia_green;
1212

1313
$colour-notification-banner: #ffc107;
1414

15+
.talk-table {
16+
padding: 5px;
17+
vertical-align: top;
18+
}
19+
20+
.talk-break {
21+
background-color: #CB3C3333;
22+
}
23+
24+
.talk-organization {
25+
background-color: #9558B233;
26+
}
27+
1528
@import "alembic";
1629

30+
.talk-speaker {
31+
color: $captionColour;
32+
}
33+
1734
.typeset pre {
1835
line-height: 1rem;
1936
}
@@ -136,26 +153,3 @@ $colour-notification-banner: #ffc107;
136153
background: $backgroundColour;
137154
}
138155
}
139-
140-
141-
.talk-table {
142-
padding: 5px;
143-
vertical-align: top;
144-
}
145-
146-
// .talk-long {
147-
// vertical-align: top;
148-
// background-color: #38982633;
149-
// }
150-
151-
.talk-break {
152-
background-color: #CB3C3333;
153-
}
154-
155-
.talk-organization {
156-
background-color: #9558B233;
157-
}
158-
159-
.talk-speaker {
160-
color: $captionColour;
161-
}

0 commit comments

Comments
 (0)