Skip to content

Commit

Permalink
Replaced placeholder signs with sth more scientific
Browse files Browse the repository at this point in the history
  • Loading branch information
tdiam committed Feb 28, 2018
1 parent 0d7239f commit ca1aab7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 4 additions & 2 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -14121,9 +14121,10 @@ article.speakers section.content .nospeakers-container {
margin-bottom: 2rem;
}

article.speakers section.content .nospeakers-container .col > i.fa {
article.speakers section.content .nospeakers-container .col > span.empty-sign {
display: block;
font-size: 5rem;
line-height: 1.15;
}

article.speakers section.content .nospeakers-container p {
Expand Down Expand Up @@ -14306,9 +14307,10 @@ article.schedule .empty-row .cell-content {
text-align: center;
}

article.schedule .empty-row .cell-content > i.fa {
article.schedule .empty-row .cell-content > span.empty-sign {
display: block;
font-size: 5rem;
line-height: 1.1;
}

article.schedule .empty-row p {
Expand Down
6 changes: 4 additions & 2 deletions resources/assets/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1088,9 +1088,10 @@ article.speakers {
section.content .nospeakers-container {
padding: 1rem 0;
margin-bottom: 2rem;
.col > i.fa {
.col > span.empty-sign {
display: block;
font-size: 5rem;
line-height: 1.15;
}
p {
margin: .5rem 0;
Expand Down Expand Up @@ -1251,9 +1252,10 @@ article.schedule {
margin: 0 auto;
text-align: center;
}
.cell-content > i.fa {
.cell-content > span.empty-sign {
display: block;
font-size: 5rem;
line-height: 1.1;
}
p {
margin: .5rem 0;
Expand Down
8 changes: 4 additions & 4 deletions resources/views/schedule.twig
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<tr class="empty-row">
<td colspan="2">
<div class="cell-content">
<i class="fa fa-meh-o" aria-hidden="true"></i>
<span class="empty-sign">&empty;</span>
<p>
{{ trans('general.schedule.notalks') | raw }}
<i class="fa fa-arrow-circle-down" aria-hidden="true"></i>
Expand Down Expand Up @@ -177,7 +177,7 @@
<tr class="empty-row">
<td colspan="2">
<div class="cell-content">
<i class="fa fa-meh-o" aria-hidden="true"></i>
<span class="empty-sign">&empty;</span>
<p>
{{ trans('general.schedule.noperformances') | raw }}
<i class="fa fa-arrow-circle-down" aria-hidden="true"></i>
Expand Down Expand Up @@ -260,7 +260,7 @@
<tr class="empty-row">
<td colspan="2">
<div class="cell-content">
<i class="fa fa-meh-o" aria-hidden="true"></i>
<span class="empty-sign">&empty;</span>
<p>
{{ trans('general.schedule.noworkshops') | raw }}
<i class="fa fa-arrow-circle-down" aria-hidden="true"></i>
Expand Down Expand Up @@ -358,7 +358,7 @@
<tr class="empty-row">
<td colspan="4">
<div class="cell-content">
<i class="fa fa-meh-o" aria-hidden="true"></i>
<span class="empty-sign">&empty;</span>
<p>
{{ trans('general.schedule.noschedule') | raw }}
<i class="fa fa-arrow-circle-down" aria-hidden="true"></i>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/speakers.twig
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<div class="container-fluid nospeakers-container">
<div class="row">
<div class="col col-12 wow bounceInRight">
<i class="fa fa-meh-o" aria-hidden="true"></i>
<span class="empty-sign">&empty;</span>
<p>
{{ trans('general.speakers.nospeakers') | raw }}
<i class="fa fa-arrow-circle-down" aria-hidden="true"></i>
Expand Down

0 comments on commit ca1aab7

Please sign in to comment.