Skip to content

Commit

Permalink
css fix for mobile calendar
Browse files Browse the repository at this point in the history
  • Loading branch information
seibtph committed Nov 29, 2019
1 parent d0aafd7 commit f6f2a70
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Module/MateThemeSetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class MateThemeSetup extends \BackendModule
{
const VERSION = '2.3.3';
const VERSION = '2.3.4';

protected $strTemplate = 'be_mateTheme_setup';

Expand Down
29 changes: 27 additions & 2 deletions src/Resources/public/sass/mate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2090,6 +2090,14 @@ nav.pagination li {
color: #9c9c9c;
}

.event .recurring time {
background: none;
padding: 0;
color: #9c9c9c;
font-size: 14px;
font-weight: 300;
}

.layout_teaser, .layout_list.event {
.inner {
a.more {
Expand Down Expand Up @@ -3939,12 +3947,29 @@ mark {
}

.calendar {
thead tr:last-child, tbody {
thead tr:last-child {
display: none;
}

tr th {
tbody, tr, th, td {
display: block;
width: 100%;
}

.days.active {
width: 100%;
}

.days.today {
color: $secondary-text-color;
}

td:not(.active) {
display: none;
}

.header {
font-weight: 700;
}
}

Expand Down

0 comments on commit f6f2a70

Please sign in to comment.