Skip to content

Commit 5f0f9f4

Browse files
committed
add w3-block
1 parent 17045a8 commit 5f0f9f4

4 files changed

Lines changed: 7 additions & 2 deletions

File tree

src/html/attr/Attr.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Attr {
4040
public const CHALLENGE = 'challenge';
4141
#charset <meta>, <script> Specifies the character encoding
4242
public const CHARSET = 'charset';
43-
public const CHARSET_UTF_8 = 'UTF-8';
43+
public const CHARSET_UTF_8 = 'utf-8';
4444
#checked <input> Specifies that an <input> element should be pre-selected when the page loads (for type="checkbox" or type="radio")
4545
public const CHECKED = 'checked';
4646
#cite <blockquote>, <del>, <ins>, <q> Specifies a URL which explains the quote/deleted/inserted text

src/html/dom/HTMLElement.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
use \DOMDocument;
9-
use \DOMNode;
109
use \DOMElement;
1110
use \DOMComment;
1211

src/sys/Config.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
use Exception;
55

66
class Config{
7+
/*
8+
Seit dem die Config im Vendor-Folder landet stimmt hier nichts mehr was Pfade angeht.
9+
*/
710
protected static $configpath = '../conf/config.php';
811
public function __construct() {
912
}

src/w3css/W3css.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ class W3css{
175175
public const BORDER_PALE_BLUE = 'w3-border-pale-blue ';
176176
public const HOVER_PALE_BLUE = 'w3-hover-pale-blue ';
177177
public const HOVER_BORDER_PALE_BLUE = 'w3-hover-border-pale-blue ';
178+
178179
public const CONTAINER = 'w3-container ';
179180
public const PANEL = 'w3-panel ';
180181
public const BADGE = 'w3-badge ';
@@ -326,4 +327,6 @@ class W3css{
326327
public const LEFTBAR = 'w3-leftbar ';
327328
public const RIGHTBAR = 'w3-rightbar ';
328329
public const TOPBAR = 'w3-topbar ';
330+
331+
public const BLOCK = 'w3-block ';
329332
}

0 commit comments

Comments
 (0)