File tree 3 files changed +6
-1
lines changed
base/src/main/resources/web
lib/components/extensions-picker
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 107
107
--presetsTitleTextColor : var (--extensionsPickerCategoryTextColor );
108
108
--presetsCardBorderColor : #373668 ;
109
109
--presetsCardTextColor : var (--textColor );
110
+ --presetsCardBackgroundColor : transparent ;
110
111
111
112
// Copy to clipboard
112
113
--copyToClipboardBackgroundColor : #1f1f1f ;
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ const PresetsPanelDiv = styled.div`
30
30
31
31
.preset-card {
32
32
flex-basis: 292px;
33
+ background-color: var(--presetsCardBackgroundColor);
33
34
border: 1px solid var(--presetsCardBorderColor);
34
35
display: flex;
35
36
flex-direction: column;
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ const SelectedExtensionsDiv = styled.div`
18
18
color: var(--warningColor);
19
19
}
20
20
21
+ span {
22
+ }
23
+
21
24
22
25
}
23
26
@@ -119,7 +122,7 @@ export const SelectedExtensions = (props: {
119
122
Selected Extensions
120
123
{ props . extensions . length > 0 &&
121
124
< button className = "btn btn-light btn-clear" onClick = { clear } aria-label = "Clear extension selection" >
122
- < FaTrashAlt /> Clear selection
125
+ < FaTrashAlt /> Clear { layout === 'picker' && < span > and start from presets </ span > }
123
126
</ button > }
124
127
</ h4 >
125
128
{ props . extensions . length === 0 && (
You can’t perform that action at this time.
0 commit comments