Upgrade skin.json schema to manifest_version 2

Bug: T242469
Change-Id: Idb96560efc8517ee8d353e856eb3a272af51ed4c
This commit is contained in:
Ammar Abdulhamid 2020-01-11 05:40:49 +01:00
parent 24b72c8bfa
commit 672dd7b9a8
1 changed files with 22 additions and 9 deletions

View File

@ -39,7 +39,10 @@
"ResourceModules": { "ResourceModules": {
"skins.vector.styles": { "skins.vector.styles": {
"class": "Vector\\ResourceLoaderLessModule", "class": "Vector\\ResourceLoaderLessModule",
"targets": [ "desktop", "mobile" ], "targets": [
"desktop",
"mobile"
],
"styles": { "styles": {
"screen.less": { "screen.less": {
"media": "screen" "media": "screen"
@ -47,12 +50,14 @@
"screen-hd.less": { "screen-hd.less": {
"media": "screen and ( min-width: 982px )" "media": "screen and ( min-width: 982px )"
}, },
"print.less": {} "print.less": []
} }
}, },
"skins.vector.styles.responsive": { "skins.vector.styles.responsive": {
"targets": [ "desktop", "mobile" ], "targets": [
"desktop",
"mobile"
],
"styles": [ "styles": [
"responsive.less" "responsive.less"
] ]
@ -98,10 +103,18 @@
} }
}, },
"config": { "config": {
"VectorUseSimpleSearch": true, "VectorUseSimpleSearch": {
"VectorUseIconWatch": true, "value": true
"VectorResponsive": false, },
"VectorPrintLogo": false "VectorUseIconWatch": {
"value": true
},
"VectorResponsive": {
"value": false
},
"VectorPrintLogo": {
"value": false
}
}, },
"manifest_version": 1 "manifest_version": 2
} }