mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 06:34:17 +00:00
fosdem specifc (REVERT after conference!): add more room per row so everything fits on one screen
This commit is contained in:
parent
c0bb5ee237
commit
e6438eba15
2 changed files with 36 additions and 2 deletions
33
configs/conferences/fosdem/main.less
Normal file
33
configs/conferences/fosdem/main.less
Normal file
|
@ -0,0 +1,33 @@
|
|||
@import "../../../assets/css/_structure.less";
|
||||
|
||||
/*
|
||||
@brand-primary: @magenta;
|
||||
@well-bg: @dark;
|
||||
@navbar-default-bg: @grey-lighter;
|
||||
@btn-default-bg: @cyan;
|
||||
@panel-default-heading-bg: @dark;
|
||||
@panel-default-text: @blue;
|
||||
@panel-bg: @dark;
|
||||
@schedule-bg: @dark;
|
||||
@schedule-selected-room: #006b6b;
|
||||
@schedule-now-bg: fade(@red, 40%);
|
||||
*/
|
||||
|
||||
clappr-watermark {
|
||||
z-index: -1000;
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.overview {
|
||||
.container {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
body .schedule {
|
||||
.room, .block {
|
||||
height: 130px;
|
||||
}
|
||||
}
|
|
@ -39,7 +39,7 @@
|
|||
foreach($rooms as $room):
|
||||
$is_wide = 0;
|
||||
/* when the count is odd and this is the last item - make it full width */
|
||||
if (($count % 2 == 1) && ($idx == $count - 1)) {
|
||||
if (false && ($count % 2 == 1) && ($idx == $count - 1)) {
|
||||
$is_wide = 1;
|
||||
}
|
||||
elseif ($room->requestsWide()) {
|
||||
|
@ -63,7 +63,8 @@
|
|||
col-xs-12
|
||||
<? else: ?>
|
||||
narrow
|
||||
col-md-6
|
||||
col-md-4
|
||||
col-lg-2
|
||||
<? endif ?>
|
||||
|
||||
<? if($room->hasPreview()): ?>
|
||||
|
|
Loading…
Reference in a new issue