Changeset 1887842
- Timestamp:
- 06/05/2018 10:40:38 PM (8 years ago)
- Location:
- bst-dsgvo-cookie
- Files:
-
- 23 added
- 3 edited
-
tags/1.2.6 (added)
-
tags/1.2.6/bst.php (added)
-
tags/1.2.6/includes (added)
-
tags/1.2.6/includes/admin-menu.php (added)
-
tags/1.2.6/includes/admin-seite.php (added)
-
tags/1.2.6/includes/css (added)
-
tags/1.2.6/includes/css/bst-mesage-flat-theme.css (added)
-
tags/1.2.6/includes/css/bst-mesage.css (added)
-
tags/1.2.6/includes/css/options-page.css (added)
-
tags/1.2.6/includes/css/style.css (added)
-
tags/1.2.6/includes/enqueue.php (added)
-
tags/1.2.6/includes/img (added)
-
tags/1.2.6/includes/img/eu-info.png (added)
-
tags/1.2.6/includes/js (added)
-
tags/1.2.6/includes/js/bst-message.js (added)
-
tags/1.2.6/includes/js/options-page.js (added)
-
tags/1.2.6/includes/js/scripts.js (added)
-
tags/1.2.6/includes/register-settings.php (added)
-
tags/1.2.6/languages (added)
-
tags/1.2.6/languages/de_DE.mo (added)
-
tags/1.2.6/languages/de_DE.po (added)
-
tags/1.2.6/readme.txt (added)
-
tags/1.2.6/uninstall.php (added)
-
trunk/bst.php (modified) (3 diffs)
-
trunk/includes/css/style.css (modified) (7 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bst-dsgvo-cookie/trunk/bst.php
r1886994 r1887842 4 4 * Plugin URI: https://bst-systemtechnik.de 5 5 * Description: Einfaches, responsives Cookie Pop-up ohne viel Schnick Schnack. EU-DSGVO konform. 6 * Version: 1.2. 56 * Version: 1.2.6 7 7 * Author: BST Systemtechnik (Autor: Arnold Margolf) 8 8 * Author URI: https://www.bst-systemtechnik.de … … 122 122 ?> 123 123 <div id="BSTDSGVOCookiInfo" style="display:none"> 124 <h1 style="font-size:28px ">Hinweispflicht zu Cookies</h1>124 <h1 style="font-size:28px;margin-top:0px;margin-bottom:5px;padding-top:0px;">Hinweispflicht zu Cookies</h1> 125 125 <p style="font-size:14px;line-height:18px;margin-bottom:5px">Webseitenbetreiber müssen, um Ihre Webseiten DSGVO konform zu publizieren, ihre Besucher auf die Verwendung von Cookies hinweisen und darüber informieren, dass bei weiterem Besuch der Webseite von der Einwilligung des Nutzers 126 126 in die Verwendung von Cookies ausgegangen wird.</p> … … 190 190 } 191 191 ?> 192 <a style="font-family:'<?php bst_value('font'); ?>'; color:<?php bst_value('link-color'); ?>;" href="<?php bst_value('policy-url'); ?>" class="bst-info-btn" target="<?php bst_value(' more-info'); ?>"><?php bst_value('more-info'); ?></a>192 <a style="font-family:'<?php bst_value('font'); ?>'; color:<?php bst_value('link-color'); ?>;" href="<?php bst_value('policy-url'); ?>" class="bst-info-btn" target="<?php bst_value('target'); ?>"><?php bst_value('more-info'); ?></a> 193 193 </div> 194 194 <div class="float"></div> -
bst-dsgvo-cookie/trunk/includes/css/style.css
r1886994 r1887842 37 37 .bst-wrapper { 38 38 margin:0 auto; 39 width:90%; 40 margin:0 auto; 41 padding-top:10px; 42 padding-bottom:5px; 39 width:90%; 40 padding-top:10px; 41 padding-bottom:10px; 43 42 44 43 } … … 133 132 134 133 .btn { 135 padding: 3px 10px ;134 padding: 3px 10px !important; 136 135 border: 0 none; 137 136 font-weight: normal; 138 137 font-size:14px; 139 138 letter-spacing: 1px; 139 140 140 } 141 141 … … 191 191 border-color: #0044cc #0044cc #002a80; 192 192 cursor: pointer; 193 margin: 0px !important; 194 193 195 } 194 196 … … 221 223 width:auto; 222 224 border-radius: 5px 0px 0px 0px; 225 color: #444; 223 226 224 227 } … … 270 273 271 274 272 .vex a:link {275 a.bst-popup-link:link { 273 276 274 277 color:#005FCC !important; 275 278 } 276 279 277 .vex a:visited {278 color:# 666!important;279 } 280 281 .vex a:hover {280 a.bst-popup-link:visited { 281 color:#005FCC !important; 282 } 283 284 a.bst-popup-link:hover { 282 285 color:#063799 !important; 283 286 … … 303 306 304 307 308 .bst-info:before { 309 position: absolute; 310 content: " "; 311 left:10px; 312 top:10px; 313 height:32px; 314 width:32px; 315 background: url( '../img/eu-info.png') no-repeat; 316 background-size: 32px 32px; 317 cursor: pointer; 318 } 319 320 321 .bst-info { 322 position:relative; 323 text-align:center; 324 padding-top:5px; 325 float:left; 326 width:32px ; 327 display: table-cell; 328 vertical-align: middle; 329 } 330 331 332 } 333 334 335 @media screen and (max-width: 800px) { 336 337 .bst-msg { 338 width:80%; 339 padding-bottom:10px; 340 margin-left:60px; 341 } 342 343 .bst-links { 344 position:relative; 345 padding-top:10px; 346 float:none; 347 width:100%; 348 margin:0 auto; 349 display: block; 350 vertical-align: middle; 351 } 352 305 353 .bst-info::before { 306 354 position: absolute; … … 326 374 } 327 375 328 329 } 330 331 332 @media screen and (max-width: 800px) { 333 334 .bst-msg { 335 width:80%; 336 padding-bottom:10px; 337 margin-left:60px; 338 } 339 340 .bst-links { 341 position:relative; 342 padding-top:10px; 343 float:none; 344 width:100%; 345 margin:0 auto; 346 display: block; 347 vertical-align: middle; 348 } 349 350 .bst-info::before { 351 position: absolute; 352 content: " "; 353 left:10px; 354 top:10px; 355 height:32px; 356 width:32px; 357 background: url( '../img/eu-info.png') no-repeat; 358 background-size: 32px 32px; 359 cursor: pointer; 360 } 361 362 363 .bst-info { 364 position:relative; 365 text-align:center; 366 padding-top:5px; 367 float:left; 368 width:32px ; 369 display: table-cell; 370 vertical-align: middle; 371 } 372 373 374 } 375 376 376 377 } 378 379 -
bst-dsgvo-cookie/trunk/readme.txt
r1886994 r1887842 6 6 Tested up to: 4.9.6 7 7 Requires PHP: 5.6 8 Stable tag: 1.2. 58 Stable tag: 1.2.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.