File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
Morphic-Widgets-FastTable Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ FTSelectableMorph >> mouseLeave: evt [
43
43
44
44
{ #category : #accessing }
45
45
FTSelectableMorph >> mouseOverColor [
46
- ^ self theme backgroundColor darker darker
46
+ ^ self theme mouseOverColor
47
47
]
48
48
49
49
{ #category : #initialization }
Original file line number Diff line number Diff line change @@ -341,6 +341,11 @@ PharoDarkTheme >> menuItemDisabledTextColorFor: aMenuItem [
341
341
^ Color lightGray
342
342
]
343
343
344
+ { #category : #' accessing - colors' }
345
+ PharoDarkTheme >> mouseOverColor [
346
+ ^ self lightBackgroundColor
347
+ ]
348
+
344
349
{ #category : #initialization }
345
350
PharoDarkTheme >> newRadioMarkerForm [
346
351
" Answer a new checkbox marker form."
Original file line number Diff line number Diff line change @@ -2752,6 +2752,15 @@ UITheme >> morphTreeSplitterPressedFillStyleFor: aSplitter [
2752
2752
radial: false
2753
2753
]
2754
2754
2755
+ { #category : #' accessing - colors' }
2756
+ UITheme >> mouseOverColor [
2757
+ " This color is used when hovering a raw of a list / table.
2758
+ This color should be different from the default background color and from the raw alternate color
2759
+ (see FTTableContainerMorph>>#alternateRowsColor."
2760
+
2761
+ ^ self backgroundColor darker darker
2762
+ ]
2763
+
2755
2764
{ #category : #' fill-styles' }
2756
2765
UITheme >> multiFormFillStyleFrom: anArray cornerWidths: widthArray in: aRectangle [
2757
2766
" Answer a composite fill style from the given forms and central colour
You can’t perform that action at this time.
0 commit comments