Use of CSS constants in script.

In Sciter you can define CSS constants using @const declarations like this: <style> @const TEST_STR:”test”; @const TEST_COLOR: rgb(128,0,0); @const TEST_NUMBER: 128; </style> and use them not only in CSS ( as @TEST_COLOR for example ) but also in script using accessor like this: var test_str = self.style.constant(“TEST_STR”); If you think that self.style.constant is too narrative…

Can I get checkboxes back somehow?

I think it is something wrong with modern variations of checkboxes. Consider this iOS version: It is not clear is it in “On” state or you need to click on “On” label to switch it on? But people from Windows 8 usability team went even further with their version: Am I the only one who…