SmartClient Version: SNAPSHOT_v12.1d_2019-04-25/AllModules Development Only (built 2019-04-25)
Chrome on OSX
Hello, I've just noticed that 12.1 lacks a proper style for disabled tabs, at least in Tahoe and Stratus skins.
Corners aren't round in Tahoe:

The border (at least) seems missing in Stratus:
Chrome on OSX
Hello, I've just noticed that 12.1 lacks a proper style for disabled tabs, at least in Tahoe and Stratus skins.
Code:
isc.TabSet.create({
ID: "topTabSet",
autoDraw: true,
tabBarPosition: "top",
width: 400,
height: 200,
tabs: [
{title: "Blue", icon: "pieces/16/pawn_blue.png", iconSize:16,
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_blue.png"})},
{title: "Green", icon: "pieces/16/pawn_green.png", iconSize:16,
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_green.png"})}
]
}).disableTab(0)
The border (at least) seems missing in Stratus:
Comment