[squeak-dev] The Trunk: System-cmm.1130.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jan 24 22:11:08 UTC 2020


Chris Muller uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-cmm.1130.mcz

==================== Summary ====================

Name: System-cmm.1130
Author: cmm
Time: 24 January 2020, 4:10:56.786823 pm
UUID: e3403284-49d1-4d18-9c7f-b0c051a3b4c4
Ancestors: System-cmm.1129

Fix Community (dark) theme balloons not easily seen due to matching color on MC and SqueakMap browsers.

=============== Diff against System-cmm.1129 ===============

Item was changed:
  ----- Method: CommunityTheme class>>addDarkDialogs: (in category 'instance creation') -----
  addDarkDialogs: aUserInterfaceTheme
  	"self createDark apply."
  	aUserInterfaceTheme
  		set: #borderColor for: #DialogWindow to: self dbSelection;
  		set: #color for: #DialogWindow to: (self dbBlue adjustSaturation: -0.20 brightness: -0.30);
  
  		set: #titleColor for: #DialogWindow to: self dbBlue twiceDarker;
  		set: #titleTextColor for: #DialogWindow to: Color veryLightGray;
  
  		set: #textColor for: #DialogWindow to: (Color gray: 0.9);
  
  		set: #okColor for: #DialogWindow to: self dbGreen;
  		set: #cancelColor for: #DialogWindow to: self dbOrange;
  		set: #buttonColor for: #DialogWindow to: Color darkGray;
  		set: #selectionModifier for: #DialogWindow to: [ [:c | self dbSelection twiceDarker ] ].
  	"The List Chooser is a dialog, too."
  	aUserInterfaceTheme
  		set: #addColor for: #ListChooser to: self dbBlue;
  		set: #disabledColor for: #ListChooser to: Color transparent.
  	"And the system progress bar."
  	aUserInterfaceTheme
  		set: #color for: #SystemProgressBarMorph to: Color transparent;
  		set: #barColor for: #SystemProgressBarMorph to: self dbSelection.
  	"And the balloon morphs."
  	aUserInterfaceTheme
  		set: #borderColor for: #NewBalloonMorph to: Color transparent ;
+ 		set: #color for: #NewBalloonMorph to: (self dbLabel alpha: 0.9) ;
- 		set: #color for: #NewBalloonMorph to: (self dbOrange twiceDarker alpha: 0.9) ;
  		set: #textColor for: #NewBalloonMorph to: Color white .!

Item was added:
+ ----- Method: CommunityTheme class>>dbLabel (in category 'colors by purpose') -----
+ dbLabel
+ 	"Short notes and labels are meant for human consumption."
+ 	^ self dbPink!



More information about the Squeak-dev mailing list