diff --git a/server/documents/modules/form.html.eco b/server/documents/modules/form.html.eco index 3658dcd81..4c6614f63 100755 --- a/server/documents/modules/form.html.eco +++ b/server/documents/modules/form.html.eco @@ -131,7 +131,7 @@ type : 'UI Behavior'
Validation rules are found in settings.rules, to add new global validation rules, modify $.fn.form.settings.rules to include your function.
To pass parameters to a rule, use bracket notation in your settings object. For example type: 'not[dog]'
- +
@@ -366,7 +366,7 @@ type : 'UI Behavior' All the following behaviors can be called using the syntax $('.foo').form('behavior name', argumentOne, argumentTwo) -
Name Arguments
+
@@ -404,7 +404,7 @@ type : 'UI Behavior'
Form settings modify the form validation behavior
-
submit Submits selected form
+
@@ -458,7 +458,7 @@ type : 'UI Behavior'
Callbacks specify a function to occur after a specific behavior.
-
Setting Default
+
@@ -495,7 +495,7 @@ type : 'UI Behavior'
Templates are used to construct elements
Templates are found in settings.template, to modify templates across all forms, modify $.fn.form.settings.templates to include your function. They must return html.
-
Setting Context
+
@@ -521,7 +521,7 @@ type : 'UI Behavior' DOM Settings
DOM settings specify how this module should interface with the DOM
-
Template Arguments
+
@@ -587,7 +587,7 @@ type : 'UI Behavior'
Debug settings controls debug output to the console
-
Setting Default
+
diff --git a/server/layouts/default.html.eco b/server/layouts/default.html.eco index f4a117bc5..abe15f33a 100755 --- a/server/layouts/default.html.eco +++ b/server/layouts/default.html.eco @@ -30,7 +30,7 @@ - <% if 'zzz' in @getEnvironments(): %> + <% if 'development' in @getEnvironments(): %> diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 7526fabbe..2ca644fc9 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -293,6 +293,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.primary.button { box-shadow: @coloredBoxShadow; } .ui.primary.buttons .button:hover, @@ -324,6 +326,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.secondary.button { box-shadow: @coloredBoxShadow; } .ui.secondary.buttons .button:hover, @@ -1125,6 +1129,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.black.button { box-shadow: @coloredBoxShadow; } .ui.black.buttons .button:hover, @@ -1182,6 +1188,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.blue.button { box-shadow: @coloredBoxShadow; } .ui.blue.buttons .button:hover, @@ -1240,6 +1248,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.green.button { box-shadow: @coloredBoxShadow; } .ui.green.buttons .button:hover, @@ -1297,6 +1307,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.orange.button { box-shadow: @coloredBoxShadow; } .ui.orange.buttons .button:hover, @@ -1353,6 +1365,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.pink.button { box-shadow: @coloredBoxShadow; } .ui.pink.buttons .button:hover, @@ -1409,6 +1423,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.purple.button { box-shadow: @coloredBoxShadow; } .ui.purple.buttons .button:hover, @@ -1465,6 +1481,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.red.button { box-shadow: @coloredBoxShadow; } .ui.red.buttons .button:hover, @@ -1522,6 +1540,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.teal.button { box-shadow: @coloredBoxShadow; } .ui.teal.buttons .button:hover, @@ -1579,6 +1599,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.yellow.button { box-shadow: @coloredBoxShadow; } .ui.yellow.buttons .button:hover, @@ -1638,6 +1660,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.positive.button { box-shadow: @coloredBoxShadow; } .ui.positive.buttons .button:hover, @@ -1673,6 +1697,8 @@ color: @invertedTextColor; text-shadow: @invertedTextShadow; background-image: @coloredBackgroundImage; +} +.ui.negative.button { box-shadow: @coloredBoxShadow; } .ui.negative.buttons .button:hover, diff --git a/src/themes/packages/default/collections/message.variables b/src/themes/packages/default/collections/message.variables index 490689bd8..da1746c7e 100755 --- a/src/themes/packages/default/collections/message.variables +++ b/src/themes/packages/default/collections/message.variables @@ -57,7 +57,7 @@ @iconSize: 2em; @iconOpacity: 0.8; @iconDistance: 1.5em; -@iconVerticalAlign: top; +@iconVerticalAlign: middle; /* Attached */ @attachedOffset: -1px;
Setting Default