jekyll-theme-conference 3.0.1 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77630ecb9f0ae81a9f53c52bf08d86fda4be6a75e92668e95f0a5f48ed270748
4
- data.tar.gz: 32ff767339f60c06bff39b86cbf2d1126f1c149ab797a26f1b1ec9fcdfc49223
3
+ metadata.gz: 2db4dc4680aa85647500757325334eb2e5e4db739cf56247839bed4ebcbd281c
4
+ data.tar.gz: aecfefef9ad494d5ed8069e5fd1ce504ca1a3c33b21b8a150bb73c9e4bf37f40
5
5
  SHA512:
6
- metadata.gz: 6b0edcba1a9c41fc6365312f1cba5056ce66dd351283a9af19266d558fe27dac3b01d2fa0f83a0567eacc293f91489b1af7922e868325f23b19996a6608b0ec9
7
- data.tar.gz: 18c8a4f2e500b45d1e4ddba54eeb466b4b2b3d7bf9171554c15403f8e58812f7f06bd06f1864e25cf9b792811fcd6b0ad16c1448088d727b6c57ac1246dea23b
6
+ metadata.gz: 10b0fe0bf595f54070bf936326d5498b7d0c79a8668f61251f5695bff52ea281a69889af57ebed2e3904d4d6f2323ea5447b479078a554c03c633861858e2fc2
7
+ data.tar.gz: ad815822f66b57d2f2a3919ee0f3d5771d6898c427cb275e38259fa2849eeeeb3ab1002ba9d92e95cd7cf766711c08523356e7f75d717776885c33279f4458b9
@@ -30,11 +30,11 @@
30
30
  {%- endif %}
31
31
 
32
32
  <div class="sticky-top syncscroll overflow-hidden" name="sync-table">
33
- <table class="table mb-0">
33
+ <table class="table mb-0 mx-auto">
34
34
  <thead>
35
35
  <tr>
36
- <th scope="col" class="text-right">#<span class="invisible">I0</span></th>
37
- <th class="p-0" scope="col"></th>
36
+ <th scope="col" class="col-title text-right">#<span class="invisible">I0</span></th>
37
+ <th class="col-space p-0" scope="col"></th>
38
38
  {%- assign nbr_rooms = d.rooms | size -%}
39
39
  {%- for r in d.rooms -%}
40
40
  {%- assign room = site.rooms | where: 'name', r.name | first %}
@@ -48,7 +48,7 @@
48
48
  {%- endif -%}
49
49
  </th>
50
50
  {%- unless forloop.last %}
51
- <th class="p-0" scope="col"></th>
51
+ <th class="col-space p-0" scope="col"></th>
52
52
  {%- endunless -%}
53
53
  {%- endfor %}
54
54
  </tr>
@@ -57,7 +57,7 @@
57
57
  </div>
58
58
 
59
59
  <div class="syncscroll overflow-y-hidden" name="sync-table">
60
- <table class="table">
60
+ <table class="table mx-auto">
61
61
  <tbody>
62
62
  {%- include partials/get_day_time.html -%}
63
63
 
@@ -85,17 +85,17 @@
85
85
  <tr>
86
86
 
87
87
  {%- if current_min == 0 -%}
88
- <th scope="row" class="text-right" style="z-index: {{ z-index-max }}">
88
+ <th scope="row" class="col-title text-right" style="z-index: {{ z-index-max }}">
89
89
  {{- current_time -}}
90
90
  </th>
91
91
  {%- elsif site.conference.program.show_alltimes -%}
92
- <th scope="row" class="text-right text-muted font-weight-normal" style="z-index: {{ z-index-max }}">
92
+ <th scope="row" class="col-title text-right text-muted font-weight-normal" style="z-index: {{ z-index-max }}">
93
93
  :{{ current_min }}
94
94
  </th>
95
95
  {%- else -%}
96
- <th scope="row" style="z-index: {{ z-index-max }}"></th>
96
+ <th scope="row" class="col-title" style="z-index: {{ z-index-max }}"></th>
97
97
  {%- endif %}
98
- <td class="p-0"></td>
98
+ <td class="col-space p-0"></td>
99
99
 
100
100
  {%- for r in d.rooms -%}
101
101
  {%- assign room = site.rooms | where: 'name', r.name | first -%}
@@ -135,7 +135,7 @@
135
135
 
136
136
  {%- assign talk_nbr_steps = talk_duration_min | divided_by: site.conference.program.time_steps -%}
137
137
  {%- include partials/get_main_category.html -%}
138
- <td rowspan="{{ talk_nbr_steps }}" class="alert alert-{{ main_cat_color }} shadow-sm" style="z-index: {{ z-index-max | minus: i }}">
138
+ <td rowspan="{{ talk_nbr_steps }}" class="alert alert-{{ main_cat_color }} shadow-sm overflow-hidden" style="z-index: {{ z-index-max | minus: i }}">
139
139
 
140
140
  {%- assign live_button_styleclass = "mb-2" %}
141
141
  {%- include partials/show_live_button.html %}
@@ -161,7 +161,7 @@
161
161
  {%- endunless -%}
162
162
 
163
163
  {%- if forloop.last != true %}
164
- <td class="p-0"></td>
164
+ <td class="col-space p-0"></td>
165
165
  {%- endif -%}
166
166
 
167
167
  {%- endfor %}
@@ -130,22 +130,24 @@ ul.btn-group {
130
130
  // First row defines width for all columns
131
131
  table-layout: fixed;
132
132
 
133
- // Table width
134
- min-width: 100%;
133
+ // Columns define table width
134
+ width: auto;
135
135
 
136
136
  // Column widths
137
- tr {
137
+ th, td {
138
+ // Width of columns with content (default)
139
+ width: 220px;
140
+ min-width: 220px;
141
+
138
142
  // Spacing between columns
139
- > :nth-child(even) {
143
+ &.col-space {
140
144
  width: 10px;
141
- }
142
- // Width of columns with content
143
- > :nth-child(odd) {
144
- width: 180px;
145
+ min-width: 10px;
145
146
  }
146
147
  // Width of first column containing timestamps
147
- > :nth-child(1) {
148
+ &.col-title {
148
149
  width: 4.5em;
150
+ min-width: 4.5em;
149
151
  }
150
152
  }
151
153
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-conference
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lorenz Schmid
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-08 00:00:00.000000000 Z
11
+ date: 2020-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll