Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Graphite theme Window opacity

    I've recently started using the Graphite theme and notice that the background opacity of Windows is set such that the text on the underlying screen can be seen. It is faint, but clearly visible. Is that intentional? If so, is there an easy way to change that globally?

    #2
    Yes, that's intended. You can see the opacity settings being applied in load_skin.js near "if (isc.Window)".

    Code:
            isc._edgeOpacity = isc.Browser.isChrome ? 100 : 90;
            
            isc.Window.addProperties({
                edgeOpacity:isc._edgeOpacity,
                maskEdgeCenterOnly: isc._edgeOpacity < 100,
    You can either edit it there or reverse the settings in a JSNI block at application startup.

    Comment

    Working...
    X