[Frontend] Proper classes added to text input configs

Fixes #1108
This commit is contained in:
Charles Hacskaylo
2016-08-10 10:10:25 -07:00
parent b48ca99119
commit 1a284ac9dc
4 changed files with 8 additions and 5 deletions

View File

@@ -129,7 +129,7 @@ define([
{ {
"name": "Period", "name": "Period",
"control": "textfield", "control": "textfield",
"cssclass": "l-small l-numeric", "cssclass": "l-input-sm l-numeric",
"key": "period", "key": "period",
"required": true, "required": true,
"property": [ "property": [

View File

@@ -139,6 +139,7 @@ define([
"dialog": { "dialog": {
"control": "textfield", "control": "textfield",
"name": "Image URL", "name": "Image URL",
"cssclass": "l-input-lg",
"required": true "required": true
} }
}, },
@@ -213,12 +214,12 @@ define([
{ {
"name": "Horizontal grid (px)", "name": "Horizontal grid (px)",
"control": "textfield", "control": "textfield",
"cssclass": "l-small l-numeric" "cssclass": "l-input-sm l-numeric"
}, },
{ {
"name": "Vertical grid (px)", "name": "Vertical grid (px)",
"control": "textfield", "control": "textfield",
"cssclass": "l-small l-numeric" "cssclass": "l-input-sm l-numeric"
} }
], ],
"pattern": "^(\\d*[1-9]\\d*)?$", "pattern": "^(\\d*[1-9]\\d*)?$",

View File

@@ -169,6 +169,7 @@ define([
"dialog": { "dialog": {
"control": "textfield", "control": "textfield",
"name": "Image URL", "name": "Image URL",
"cssclass": "l-input-lg",
"required": true "required": true
} }
}, },
@@ -329,12 +330,12 @@ define([
{ {
"name": "Horizontal grid (px)", "name": "Horizontal grid (px)",
"control": "textfield", "control": "textfield",
"cssclass": "l-small l-numeric" "cssclass": "l-input-sm l-numeric"
}, },
{ {
"name": "Vertical grid (px)", "name": "Vertical grid (px)",
"control": "textfield", "control": "textfield",
"cssclass": "l-small l-numeric" "cssclass": "l-input-sm l-numeric"
} }
], ],
"pattern": "^(\\d*[1-9]\\d*)?$", "pattern": "^(\\d*[1-9]\\d*)?$",

View File

@@ -55,6 +55,7 @@ define(
key: "url", key: "url",
control: "textfield", control: "textfield",
name: "Image URL", name: "Image URL",
"cssclass": "l-input-lg",
required: true required: true
} }
] ]