Font Cheat SheetType | Class Name | Font Size (px) | Font Size (%) | H1 | x3-large | 28px | 215.4% | H2 | x2-large | 24px | 182.5% | H3 | x-large | 19px, Bold | 146.5% | H4 | large | 16 px, Bold | 123.1% | H5 | med-large | 16 px | 123.1% | H6 | medium | 15px | 116% | H7 | med-small | 14px, Bold | 108% | H8 | small | 14 px | 108% |
Button FieldsField | Description | Default Value | tag | The HTML tag name. | button | button | core, stick, form, exclusive, edit, task, table. | core | type | submit, reset, button. | submit (if tag is button or input) | label | The label text . | Label Text | class | The extra class name . | disabled | Disabled or not. | false | href | href attribute. | # (if tag is a) | target | Target attribute. | _self (if tag is a)(_self, _blank or some target) | title | Title attribute. | # (if tag is a) | tabindex | Tabindex attribute. | name | The form name attribute. | value | The value attribute. |
Exclusive Button$var = button(
array(
"button" => "exclusive",
"name" => "button-name",
"value" => $value,
"href" => $url ,
"label" => $lang["key"],
"class" => "class-name",
"disabled" => FALSE
)
);
Description:
For no content module, Promotional page
| | Form Button$var = button(
array(
"button" => "core",
"name" => "button-name",
"value" => $value,
"type" => "submit",
"label" => $lang["key"],
"class" => "class-name",
"disabled" => FALSE
)
);
Description :
Page/Popup action button
Task Button$var = button(
array(
"button" => "task",
"name" => "button-name",
"value" => $value,
"href" => $url,
"label" => $lang["key"],
"class" => "class-name",
"disabled" => FALSE,
)
);
Description :
Page main functional button
Stick Button$var = button(
array(
"button" => "stick",
"name" => "button-name",
"value" => $value,
"label" => $lang["key"],
"href" => $url,
"class" => "class-name",
"disabled" => FALSE
)
);
Description :
Page sub functional button (Stick Viewport)
| | Table Button$var = button(
array(
"button" => "table",
"href" => $url,
"name" => "button-name",
"value" => $value,
"label" => $lang["key"],
"class" => "label-name",
"disabled" => FALSE
)
);
Description :
Page sub sub functional button
Core Button$var = button(
array(
"button" => "core",
"name" => "button-name",
"target" => "_blank",
"href" => $url,
"label" => $lang["label-name"],
"class" => "class-name",
"disabled" => FALSE
)
);
Description :
For user badge
Edit ButtonIt seems no longer used.
Description :
Edit button
|
Created By
Metadata
Favourited By
Comments
No comments yet. Add yours below!
Add a Comment
Related Cheat Sheets