Forum Discussion
Anonymous
3 years agoNot applicable
Bookmark Navigator .json Theme Schema
Hi All, Would anyone have a Bookmark Navigator json schema so I can incorporate it into a custom Theme? Essentially I'm looking for the Bookmark Navigator equivelent of what MarvinVitcu has v...
- 3 years ago
Here you go 🙂
"bookmarkNavigator" : { "*": { "border": [{ "show": false }], "title": [{ "show": false }], "visualHeader": [{ "show": false }], "outline": [{ "show": false },{ "$id": "default", "transparency": 0, "lineColor": {"solid":{"color":"#FFFFFF"}}, "weight": 1 },{ "$id": "hover", "transparency": 0, "lineColor": {"solid":{"color":"#FFFFFF"}}, "weight": 2 },{ "$id": "press", "transparency": 0, "lineColor": {"solid":{"color":"#FFFFFF"}}, "weight": 1 },{ "$id": "selected", "transparency": 0, "lineColor": {"solid":{"color":"#FFFFFF"}}, "weight": 2 }], "fill": [{ "show": false },{ "$id": "default", "transparency": 0, "fillColor": {"solid":{"color":"#FFFFFF"}} },{ "$id": "hover", "transparency": 0, "fillColor": {"solid":{"color":"#FFFFFF"}} },{ "$id": "press", "transparency": 0, "fillColor": {"solid":{"color":"#FFFFFF"}} },{ "$id": "selected", "transparency": 0, "fillColor": {"solid":{"color":"#FFFFFF"}} }], "text": [{ "show": true },{ "$id": "default", "fontFamily": "Arial", "fontColor": {"solid":{"color":"#FFFFFF"}}, "horizontalAlignment": "center", "verticalAlignment": "middle" },{ "$id": "hover", "fontFamily": "Arial Semibold", "fontColor": {"solid":{"color":"#FFFFFF"}} },{ "$id": "press", "fontFamily": "Arial", "fontColor": {"solid":{"color":"#FFFFFF"}} },{ "$id": "selected", "fontFamily": "Arial Semibold", "fontColor": {"solid":{"color":"#FFFFFF"}} }], "bookmarks" :[{ "allowDeselection": false }] } },
MarvinVitcu
3 years agoAdvocate I
Here you go 🙂
"bookmarkNavigator" : {
"*": {
"border": [{
"show": false
}],
"title": [{
"show": false
}],
"visualHeader": [{
"show": false
}],
"outline": [{
"show": false
},{
"$id": "default",
"transparency": 0,
"lineColor": {"solid":{"color":"#FFFFFF"}},
"weight": 1
},{
"$id": "hover",
"transparency": 0,
"lineColor": {"solid":{"color":"#FFFFFF"}},
"weight": 2
},{
"$id": "press",
"transparency": 0,
"lineColor": {"solid":{"color":"#FFFFFF"}},
"weight": 1
},{
"$id": "selected",
"transparency": 0,
"lineColor": {"solid":{"color":"#FFFFFF"}},
"weight": 2
}],
"fill": [{
"show": false
},{
"$id": "default",
"transparency": 0,
"fillColor": {"solid":{"color":"#FFFFFF"}}
},{
"$id": "hover",
"transparency": 0,
"fillColor": {"solid":{"color":"#FFFFFF"}}
},{
"$id": "press",
"transparency": 0,
"fillColor": {"solid":{"color":"#FFFFFF"}}
},{
"$id": "selected",
"transparency": 0,
"fillColor": {"solid":{"color":"#FFFFFF"}}
}],
"text": [{
"show": true
},{
"$id": "default",
"fontFamily": "Arial",
"fontColor": {"solid":{"color":"#FFFFFF"}},
"horizontalAlignment": "center",
"verticalAlignment": "middle"
},{
"$id": "hover",
"fontFamily": "Arial Semibold",
"fontColor": {"solid":{"color":"#FFFFFF"}}
},{
"$id": "press",
"fontFamily": "Arial",
"fontColor": {"solid":{"color":"#FFFFFF"}}
},{
"$id": "selected",
"fontFamily": "Arial Semibold",
"fontColor": {"solid":{"color":"#FFFFFF"}}
}],
"bookmarks" :[{
"allowDeselection": false
}]
}
},- Anonymous3 years agoNot applicable
Thank you so much MarvinVitcu! This is awesome.
I need to work out how to set the "Rounded corners" property of the navigator buttons. Do you know how to do this in json? I checked out the link in your other post (thanks for this too - great resource!) and I can see there are some "tabRoundCorner..." properties. Would you be able to share an example of the json to set the rounded corners?