Skip to content

Commit 14d51e1

Browse files
committed
semantic elements =>label
1 parent 800f20f commit 14d51e1

File tree

6 files changed

+52
-13
lines changed

6 files changed

+52
-13
lines changed

Ajax/Bootstrap.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@
2828
use Ajax\bootstrap\html\HtmlGridSystem;
2929
use Ajax\bootstrap\traits\BootstrapComponentsTrait;
3030

31+
/**
32+
* Bootstrap PHP library
33+
*
34+
* @author jcheron
35+
* @version 1.004
36+
* @license Apache 2 http://www.apache.org/licenses/
37+
*/
38+
3139
class Bootstrap extends BaseGui {
3240
use BootstrapComponentsTrait;
3341
public function __construct($autoCompile=true) {

Ajax/Jquery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Ajax\common\traits\JqueryActionsTrait;
88

99
/**
10-
* JQuery Phalcon library
10+
* JQuery library
1111
*
1212
* @author jcheron
1313
* @version 1.002

Ajax/JqueryUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Ajax\common\BaseGui;
1818

1919
/**
20-
* JQuery UI Phalcon library
20+
* JQuery UI library
2121
*
2222
* @author jcheron
2323
* @version 1.001

Ajax/Semantic.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@
2323
use Ajax\semantic\traits\SemanticHtmlModulesTrait;
2424
use Ajax\semantic\traits\SemanticHtmlViewsTrait;
2525

26-
class Semantic extends BaseGui {
26+
/**
27+
* Semantic PHP library
28+
*
29+
* @author jcheron
30+
* @version 1.004
31+
* @license Apache 2 http://www.apache.org/licenses/
32+
*/
33+
class Semantic extends BaseGui {
2734
use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait,
2835
SemanticHtmlModulesTrait,SemanticHtmlViewsTrait;
2936

Ajax/semantic/traits/SemanticHtmlElementsTrait.php

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ public function htmlButton($identifier, $value="", $cssStyle=null, $onClick=null
4646
}
4747

4848
/**
49-
*
49+
* Returns a group of Semantic buttons
50+
* @see http://phpmv-ui.kobject.net/index/direct/main/50
51+
* @see http://semantic-ui.com/elements/button.html#buttons
5052
* @param string $identifier
5153
* @param array $elements
5254
* @param boolean $asIcons
@@ -57,7 +59,9 @@ public function htmlButtonGroups($identifier, $elements=array(), $asIcons=false)
5759
}
5860

5961
/**
60-
* Creates an html container
62+
* Returns a new Semantic container
63+
* @see http://phpmv-ui.kobject.net/index/direct/main/34
64+
* @see http://semantic-ui.com/elements/container.html
6165
* @param string $identifier
6266
* @param string $content
6367
* @return HtmlContainer
@@ -67,7 +71,9 @@ public function htmlContainer($identifier, $content="") {
6771
}
6872

6973
/**
70-
*
74+
* Returns a new Semantic divider
75+
* @see http://phpmv-ui.kobject.net/index/direct/main/42
76+
* @see http://semantic-ui.com/elements/divider.html
7177
* @param string $identifier
7278
* @param string $content
7379
* @return HtmlDivider
@@ -77,7 +83,9 @@ public function htmlDivider($identifier, $content="", $tagName="div") {
7783
}
7884

7985
/**
80-
*
86+
* Returns a new Semantic header
87+
* @see http://phpmv-ui.kobject.net/index/direct/main/43
88+
* @see http://semantic-ui.com/elements/header.html
8189
* @param string $identifier
8290
* @param number $niveau
8391
* @param mixed $content
@@ -89,7 +97,9 @@ public function htmlHeader($identifier, $niveau=1, $content=NULL, $type="page")
8997
}
9098

9199
/**
92-
*
100+
* Returns a new Semantic icon
101+
* @see http://phpmv-ui.kobject.net/index/direct/main/44
102+
* @see http://semantic-ui.com/elements/icon.html
93103
* @param string $identifier
94104
* @param string $icon
95105
* @return HtmlIcon
@@ -99,6 +109,9 @@ public function htmlIcon($identifier, $icon) {
99109
}
100110

101111
/**
112+
* Returns a new Semantic image
113+
* @see http://phpmv-ui.kobject.net/index/direct/main/55
114+
* @see http://semantic-ui.com/elements/image.html
102115
* @param string $identifier
103116
* @param string $src
104117
* @param string $alt
@@ -110,7 +123,9 @@ public function htmlImage($identifier, $src="", $alt="", $size=NULL) {
110123
}
111124

112125
/**
113-
*
126+
* Returns a new Semantic group of images
127+
* @see http://phpmv-ui.kobject.net/index/direct/main/0
128+
* @see http://semantic-ui.com/elements/image.html#size
114129
* @param string $identifier
115130
* @param array $icons
116131
* @param string $size
@@ -121,7 +136,9 @@ public function htmlIconGroups($identifier, $icons=array(), $size="") {
121136
}
122137

123138
/**
124-
*
139+
* Returns a new Semantic html input
140+
* @see http://phpmv-ui.kobject.net/index/direct/main/45
141+
* @see http://semantic-ui.com/elements/input.html
125142
* @param string $identifier
126143
* @param string $type
127144
* @param string $value
@@ -133,7 +150,9 @@ public function htmlInput($identifier, $type="text", $value="", $placeholder="")
133150
}
134151

135152
/**
136-
*
153+
* Returns a new Semantic label
154+
* @see http://phpmv-ui.kobject.net/index/direct/main/46
155+
* @see http://semantic-ui.com/elements/label.html
137156
* @param string $identifier
138157
* @param string $content
139158
* @param string $tagName

documentation/html/extra-styles.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ body, table, div, p, dl {
2222
#projectnumber
2323
{
2424
color: rgb(255,255,255);
25-
font-size: 25px;
25+
text-shadow: rgba(0, 0, 0, 0.0980392) 0px 1px 0px;
26+
font-size: 20px;
2627
font-weight: 400;
2728
font-style: italic;
2829
margin: 0px;
@@ -64,7 +65,7 @@ body, table, div, p, dl {
6465
}
6566
#MSearchField{
6667
background: none;
67-
font: 400 9pt Roboto,sans-serif;
68+
font: 9pt Roboto,sans-serif;
6869
border: inherit;
6970
}
7071
#MSearchBox .left{
@@ -73,4 +74,8 @@ body, table, div, p, dl {
7374

7475
#MSearchBox .right{
7576
background: none;
77+
}
78+
79+
.SelectItem{
80+
font: 8pt Roboto,sans-serif;
7681
}

0 commit comments

Comments
 (0)