Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.886.mcz==================== Summary ====================
Name: System-mt.886
Author: mt
Time: 14 August 2016, 10:15:15.115039 am
UUID: 4da4eed3-ab2d-854f-92a8-c8481f7af965
Ancestors: System-cmm.885
ProgressMorph is themed via SystemProgressMorph at the moment. There is no effect in writing theme settings for ProgressMorph in UI themes.
=============== Diff against System-cmm.885 ===============
Item was removed:
- ----- Method: CommunityTheme class>>addDarkProgressMorph: (in category 'instance creation') -----
- addDarkProgressMorph: aUserInterfaceTheme
- "self createDark apply."
- aUserInterfaceTheme
- set: #borderColor for: #ProgressMorph to: Color lightGray ;
- set: #color for: #ProgressMorph to: Color black .
- !
Item was changed:
----- Method: CommunityTheme class>>createDark (in category 'instance creation') -----
createDark
"self createDark apply."
| name |
name := 'Community (dark)'.
^ (self named: name) in: [:theme |
theme merge: (self named: 'Squeak') overwrite: true.
theme name: name.
"General morph stuff."
theme
set: #borderColor for: #ScrollPane to: (Color transparent) ;
set: #keyboardFocusColor for: #Morph to: (self dbSelection adjustSaturation: -0.3 brightness: 0.10);
set: #keyboardFocusWidth for: #Morph to: 2;
set: #softShadowColor for: #Morph to: (self dbSelection muchLighter alpha: 0.025);
set: #softShadowOffset for: #Morph to: (10@8 corner: 10@12);
set: #hardShadowColor for: #Morph to: (self dbSelection muchLighter alpha: 0.02);
set: #hardShadowOffset for: #Morph to: 1@1.
self
addDarkFonts: theme;
addDarkWindowColors: theme;
addDarkSyntaxHighlighting: theme;
addDarkScrollables: theme;
addDarkButtons: theme;
addDarkDialogs: theme;
+ addDarkMenusAndDockingBars: theme.
- addDarkMenusAndDockingBars: theme;
- addDarkProgressMorph: theme.
theme]!