Skip to content

Commit

Permalink
Merge pull request #55 from contao-themes-net/2.0.8
Browse files Browse the repository at this point in the history
2.0.8
  • Loading branch information
MDevster authored Sep 21, 2023
2 parents 828c102 + b12dfdf commit fc18614
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 49 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ Types of changes
Security in case of vulnerabilities.
)

## [2.0.7](https://github.com/contao-themes-net/mate-theme-bundle/tree/2.0.7) – 2023-08-01
# [2.0.8](https://github.com/contao-themes-net/odd-theme-bundle/tree/2.0.8) – 2023-09-21

- [Fixed] Fix video element
- [Fixed] Fix estate header image height

## [2.0.7](https://github.com/contao-themes-net/odd-theme-bundle/tree/2.0.7) – 2023-08-01

- [Fixed] Fix paths for multi domain setup

## [2.0.6](https://github.com/contao-themes-net/mate-theme-bundle/tree/2.0.6) – 2023-03-09
## [2.0.6](https://github.com/contao-themes-net/odd-theme-bundle/tree/2.0.6) – 2023-03-09

- [Fixed] warning in debug mode in slider template

Expand Down
2 changes: 1 addition & 1 deletion src/Module/OddThemeSetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class OddThemeSetup extends \BackendModule
{
const VERSION = '2.0.7';
const VERSION = '2.0.8';

protected $strTemplate = 'be_oddtheme_setup';

Expand Down
6 changes: 1 addition & 5 deletions src/Resources/public/fontawesome/js/all.min.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions src/Resources/public/fontawesome/js/brands.min.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions src/Resources/public/fontawesome/js/fontawesome.min.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions src/Resources/public/fontawesome/js/regular.min.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions src/Resources/public/fontawesome/js/solid.min.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions src/Resources/public/fontawesome/js/v4-shims.min.js

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions src/Resources/public/scss/maklermodul.scss
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@ a.show-filter.btn, .hide-filter.btn {
height: calc(100vh - 115px);
font-family: $mainFont;

.ce_image {
height: 100%;
}

h1, h2, h3, h4, h5, h6 {
background: rgba(25, 25, 25, 0.8);
padding: 15px 30px;
Expand All @@ -233,6 +237,11 @@ a.show-filter.btn, .hide-filter.btn {
font-weight: 400;
text-transform: none;
}

img {
height: 100%;
object-fit: cover;
}
}

#estate_list {
Expand Down Expand Up @@ -323,7 +332,7 @@ a.show-filter.btn, .hide-filter.btn {

li {
margin: 2px;

a {
background: $oddColor2;
color: #fff;
Expand Down Expand Up @@ -585,4 +594,4 @@ a.show-filter.btn, .hide-filter.btn {
width: 100%;
}
}
}
}
30 changes: 16 additions & 14 deletions src/Resources/public/scss/parts/elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -205,22 +205,24 @@ h6 {
}
}

.ce_youtube {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;

iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
.ce_youtube, .ce_player {
figure {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
}

.ce_youtube iframe, .ce_player video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

hr {
border: 0;
border-top: 3px solid $oddColor2;
Expand Down Expand Up @@ -381,4 +383,4 @@ blockquote {
}
}
}
}
}

0 comments on commit fc18614

Please sign in to comment.