2 Commits
1.0.4 ... main

Author SHA1 Message Date
root
1dbbb82d92 Release 1.0.7 2026-04-14 21:11:25 +02:00
root
077cf2fd4c Release 1.0.5 2026-04-14 16:27:18 +02:00
2 changed files with 10 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
right: 1rem; right: 1rem;
z-index: 99999; z-index: 99999;
display: flex; display: flex;
pointer-events: none;
gap: 1rem; gap: 1rem;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
@@ -28,6 +29,12 @@
.kgv-cookie-banner.is-visible { .kgv-cookie-banner.is-visible {
opacity: 1; opacity: 1;
transform: translateY(0); transform: translateY(0);
pointer-events: auto;
}
.kgv-cookie-banner[hidden] {
display: none !important;
pointer-events: none;
} }
.kgv-cookie-banner__text p { .kgv-cookie-banner__text p {

View File

@@ -3,13 +3,14 @@
* Plugin Name: KGV Cookie * Plugin Name: KGV Cookie
* Plugin URI: https://apex-project.de/ * Plugin URI: https://apex-project.de/
* Description: Einfaches Cookie-Banner mit Einwilligungsverwaltung fuer KGV-Webseiten. * Description: Einfaches Cookie-Banner mit Einwilligungsverwaltung fuer KGV-Webseiten.
* Version: 1.0.4 * Version: 1.0.7
* Author: Ronny Grobel * Author: Ronny Grobel
* Text Domain: kgv-cookie * Text Domain: kgv-cookie
* Author URI: https://apex-project.de/ * Author URI: https://apex-project.de/
* Plugin URI: https://apex-project.de/ * Plugin URI: https://apex-project.de/
* Update URI: https://git.apex-project.de/Wordpress_Plugins/KGV-Cookie * Update URI: https://git.apex-project.de/Wordpress_Plugins/KGV-Cookie
* Gitea Plugin URI: https://git.apex-project.de/Wordpress_Plugins/KGV-Cookie * Gitea Plugin URI: https://git.apex-project.de/Wordpress_Plugins/KGV-Cookie
* Requires Plugins: KGV-Updater
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
@@ -17,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
} }
final class KGV_Cookie_Plugin { final class KGV_Cookie_Plugin {
const VERSION = '1.0.4'; const VERSION = '1.0.7';
const OPTION_KEY = 'kgv_cookie_settings'; const OPTION_KEY = 'kgv_cookie_settings';
const COOKIE_NAME = 'kgv_cookie_consent'; const COOKIE_NAME = 'kgv_cookie_consent';