@ -28,6 +28,9 @@ var css = csjs`
padding : . 5 em ;
font - weight : bold ;
}
. crow label {
cursor : pointer ;
}
. crowNoFlex {
overflow : auto ;
clear : both ;
@ -81,6 +84,15 @@ function SettingsTab (container, appAPI, appEvents, opts) {
< div > < input id = "optimize" type = "checkbox" > < / d i v >
< span class = "${css.checkboxText}" > Enable Optimization < / s p a n >
< / d i v >
< h4 class = "${css.heading}" > Themes < / h 4 >
< div class = "${css.crow}" >
< div > < input class = "${css.col1}" name = "theme" id = "themeLight" type = "radio" > < / d i v >
< label for = "themeLight" > Light Theme < / l a b e l >
< / d i v >
< div class = "${css.crow}" >
< div > < input class = "${css.col1}" name = "theme" id = "themeDark" type = "radio" > < / d i v >
< label for = "themeDark" > Dark Theme < / l a b e l >
< / d i v >
< hr >
< div class = "${css.crowNoFlex}" >
< div > Plugin ( < i title = "Do not use this feature yet" class = "fa fa-exclamation-triangle" aria - hidden = "true" > < / i > < s p a n > D o n o t u s e t h i s a l p h a f e a t u r e i f y o u a r e n o t s u r e w h a t y o u a r e d o i n g ! < / s p a n > ) < / d i v >
@ -89,15 +101,6 @@ function SettingsTab (container, appAPI, appEvents, opts) {
< input onclick = $ { loadPlugin } type = "button" value = "Load" class = "${css.pluginLoad}" >
< / d i v >
< / d i v >
< h4 class = "${css.heading}" > Themes < / h 4 >
< div class = "${css.crow}" >
< div > < input class = "${css.col1}" name = "theme" id = "themeLight" type = "radio" > < / d i v >
< span class = "${css.radioText}" > Light Theme < / s p a n >
< / d i v >
< div class = "${css.crow}" >
< div > < input class = "${css.col1}" name = "theme" id = "themeDark" type = "radio" > < / d i v >
< span class = "${css.radioText}" > Dark Theme < / s p a n >
< / d i v >
< / d i v >
`