Skip to content

Commit 11be654

Browse files
authored
Merge pull request #189 from RRZE-Webteam/dev
v1.22.9
2 parents dc255de + 610e873 commit 11be654

6 files changed

+13
-5
lines changed

assets/css/_flexslider.scss

+5
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,11 @@ aside .content-slider.flexslider,
604604
//width: 100%;
605605
}
606606
}
607+
.teaserregion {
608+
@media (min-width: 768px) {
609+
min-width: 50%;
610+
}
611+
}
607612
}
608613
}
609614

assets/css/rrze-elements.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/rrze-elements.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

includes/Main.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ public function enqueueScripts()
8383

8484
wp_register_style(
8585
'rrze-elements',
86-
plugins_url('assets/css/rrze-elements.css', plugin_basename($this->pluginFile))
86+
plugins_url('assets/css/rrze-elements.css', plugin_basename($this->pluginFile)),
87+
[],
88+
RRZE_ELEMENTS_VERSION
8789
);
8890
}
8991
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rrze-elements",
3-
"version": "1.22.8",
3+
"version": "1.22.9",
44
"description": "RRZE Elements: Gestalterische Erweiterungen für Webauftritte.",
55
"main": "rrze-elements.php",
66
"textdomain": "rrze-elements",

rrze-elements.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: RRZE Elements
55
Plugin URI: https://github.com/RRZE-Webteam/rrze-elements
66
Description: Advanced design elements for WordPress websites.
7-
Version: 1.22.8
7+
Version: 1.22.9
88
Author: RRZE Webteam
99
Author URI: https://blogs.fau.de/webworking/
1010
License: GNU General Public License v2
@@ -23,6 +23,7 @@
2323

2424
const RRZE_PHP_VERSION = '7.4';
2525
const RRZE_WP_VERSION = '5.9';
26+
const RRZE_ELEMENTS_VERSION = '1.22.9';
2627

2728
spl_autoload_register(function ($class) {
2829
$prefix = __NAMESPACE__;

0 commit comments

Comments
 (0)