diff --git a/properties.schema b/properties.schema index 9f54ebf8..1a091ff1 100644 --- a/properties.schema +++ b/properties.schema @@ -801,7 +801,7 @@ "_backgroundRepeat": { "type": "string", "required": false, - "default": "", + "default": "no-repeat", "inputType": {"type":"Select", "options":["repeat","repeat-x","repeat-y","no-repeat"]}, "title": "Set if/how the background image repeats", "help": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically." @@ -809,7 +809,7 @@ "_backgroundSize": { "type": "string", "required": false, - "default": "", + "default": "cover", "inputType": {"type":"Select", "options":["auto","cover","contain","100% 100%"]}, "title": "Set the size of the background image", "help": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container." @@ -817,7 +817,7 @@ "_backgroundPosition": { "type": "string", "required": false, - "default": "", + "default": "center top", "inputType": {"type":"Select", "options":["left top","left center","left bottom","center top","center center","center bottom","right top","right center","right bottom"]}, "title": "Set the position of the background image", "help": "The first value is the horizontal position and the second value is the vertical." @@ -945,7 +945,7 @@ "_backgroundRepeat": { "type": "string", "required": false, - "default": "", + "default": "no-repeat", "inputType": {"type":"Select", "options":["repeat","repeat-x","repeat-y","no-repeat"]}, "title": "Set if/how the background image repeats", "help": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically." @@ -953,7 +953,7 @@ "_backgroundSize": { "type": "string", "required": false, - "default": "", + "default": "cover", "inputType": {"type":"Select", "options":["auto","cover","contain","100% 100%"]}, "title": "Set the size of the background image", "help": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container." @@ -961,7 +961,7 @@ "_backgroundPosition": { "type": "string", "required": false, - "default": "", + "default": "center top", "inputType": {"type":"Select", "options":["left top","left center","left bottom","center top","center center","center bottom","right top","right center","right bottom"]}, "title": "Set the position of the background image", "help": "The first value is the horizontal position and the second value is the vertical." @@ -1098,7 +1098,7 @@ "_backgroundRepeat": { "type": "string", "required": false, - "default": "", + "default": "no-repeat", "inputType": {"type":"Select", "options":["repeat","repeat-x","repeat-y","no-repeat"]}, "title": "Set if/how the background image repeats", "help": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically." @@ -1106,7 +1106,7 @@ "_backgroundSize": { "type": "string", "required": false, - "default": "", + "default": "cover", "inputType": {"type":"Select", "options":["auto","cover","contain","100% 100%"]}, "title": "Set the size of the background image", "help": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container." @@ -1114,7 +1114,7 @@ "_backgroundPosition": { "type": "string", "required": false, - "default": "", + "default": "center top", "inputType": {"type":"Select", "options":["left top","left center","left bottom","center top","center center","center bottom","right top","right center","right bottom"]}, "title": "Set the position of the background image", "help": "The first value is the horizontal position and the second value is the vertical." @@ -1249,7 +1249,7 @@ "_backgroundRepeat": { "type": "string", "required": false, - "default": "", + "default": "no-repeat", "inputType": {"type":"Select", "options":["repeat","repeat-x","repeat-y","no-repeat"]}, "title": "Set if/how the background image repeats", "help": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically." @@ -1257,7 +1257,7 @@ "_backgroundSize": { "type": "string", "required": false, - "default": "", + "default": "cover", "inputType": {"type":"Select", "options":["auto","cover","contain","100% 100%"]}, "title": "Set the size of the background image", "help": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container." @@ -1265,7 +1265,7 @@ "_backgroundPosition": { "type": "string", "required": false, - "default": "", + "default": "center top", "inputType": {"type":"Select", "options":["left top","left center","left bottom","center top","center center","center bottom","right top","right center","right bottom"]}, "title": "Set the position of the background image", "help": "The first value is the horizontal position and the second value is the vertical." diff --git a/schema/article.schema.json b/schema/article.schema.json index a09dca3e..42fe8bfe 100644 --- a/schema/article.schema.json +++ b/schema/article.schema.json @@ -115,9 +115,8 @@ "type": "string", "title": "Repeat", "description": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically", - "default": "", + "default": "no-repeat", "enum": [ - "", "repeat", "repeat-x", "repeat-y", @@ -129,9 +128,8 @@ "type": "string", "title": "Size", "description": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container", - "default": "", + "default": "cover", "enum": [ - "", "auto", "cover", "contain", @@ -143,9 +141,8 @@ "type": "string", "title": "Position", "description": "The first value is the horizontal position and the second value is the vertical", - "default": "", + "default": "center top", "enum": [ - "", "left top", "left center", "left bottom", diff --git a/schema/block.schema.json b/schema/block.schema.json index 4b95243f..c2b4fa36 100644 --- a/schema/block.schema.json +++ b/schema/block.schema.json @@ -115,9 +115,8 @@ "type": "string", "title": "Repeat", "description": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically", - "default": "", + "default": "no-repeat", "enum": [ - "", "repeat", "repeat-x", "repeat-y", @@ -129,9 +128,8 @@ "type": "string", "title": "Size", "description": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container", - "default": "", + "default": "cover", "enum": [ - "", "auto", "cover", "contain", @@ -143,9 +141,8 @@ "type": "string", "title": "Position", "description": "The first value is the horizontal position and the second value is the vertical", - "default": "", + "default": "center top", "enum": [ - "", "left top", "left center", "left bottom", diff --git a/schema/contentobject.schema.json b/schema/contentobject.schema.json index 7b2ad067..6606b48d 100644 --- a/schema/contentobject.schema.json +++ b/schema/contentobject.schema.json @@ -69,9 +69,8 @@ "type": "string", "title": "Repeat", "description": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically", - "default": "", + "default": "no-repeat", "enum": [ - "", "repeat", "repeat-x", "repeat-y", @@ -83,9 +82,8 @@ "type": "string", "title": "Size", "description": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container", - "default": "", + "default": "cover", "enum": [ - "", "auto", "cover", "contain", @@ -97,9 +95,8 @@ "type": "string", "title": "Position", "description": "The first value is the horizontal position and the second value is the vertical", - "default": "", + "default": "center top", "enum": [ - "", "left top", "left center", "left bottom", @@ -252,9 +249,8 @@ "type": "string", "title": "Repeat", "description": "Repeat-x: The background image is repeated only horizontally. Repeat-y: The background image is repeated only vertically", - "default": "", + "default": "no-repeat", "enum": [ - "", "repeat", "repeat-x", "repeat-y", @@ -266,9 +262,8 @@ "type": "string", "title": "Size", "description": "Auto: The background image is displayed in its original size. Cover: Resize the background image to cover the entire container, even if it has to stretch or crop the image. Contain: Resize the background image to make sure the image is fully visible. 100% 100%: Resize the background image to match the dimensions of the container", - "default": "", + "default": "cover", "enum": [ - "", "auto", "cover", "contain", @@ -280,9 +275,8 @@ "type": "string", "title": "Position", "description": "The first value is the horizontal position and the second value is the vertical", - "default": "", + "default": "center top", "enum": [ - "", "left top", "left center", "left bottom",