@@ -7,10 +7,13 @@ $file-brand-warning: #eca51c;
7
7
$file-color-danger-lighter : #f9d9dc ;
8
8
$file-brand-danger : #e33f4e ;
9
9
$file-gray-light : #6c7180 ;
10
+ $file-gray-darker : #3b4251 ;
10
11
$file-brand-success : #3cb33d ;
11
12
12
13
$file-action-icon-hover : #2a39b8 ;
13
14
$file-action-icon-active : #264ae5 ;
15
+ $file-dropzone-color : #8f620b ;
16
+ $file-progress-background-color : #f0f1f2 ;
14
17
15
18
$file-icon : url (../assets/file-icon.svg );
16
19
$file-warning-icon : url (../assets/warning-icon.svg );
@@ -92,7 +95,7 @@ Place your custom CSS here
92
95
.dropzone-message {
93
96
font-size : 12px ;
94
97
line-height : 17px ;
95
- color : #8f620b ;
98
+ color : var ( --file-dropzone-color , $file-dropzone-color ) ;
96
99
97
100
padding-left : 18px ;
98
101
margin-bottom : 1em ;
@@ -187,7 +190,7 @@ Place your custom CSS here
187
190
.entry-details-main-name {
188
191
flex : 1 ;
189
192
font-weight : 600 ;
190
- color : #3b4251 ;
193
+ color : var ( --gray-darker , $file-gray-darker ) ;
191
194
text-overflow : ellipsis ;
192
195
overflow : hidden ;
193
196
white-space : nowrap ;
@@ -222,7 +225,7 @@ Place your custom CSS here
222
225
background-image : var (--file-remove-icon-hover , $file-remove-icon-hover );
223
226
}
224
227
.file-action-icon {
225
- color : $file-action-icon-hover ;
228
+ color : var ( --file-action-icon-hover , $file-action-icon-hover ) ;
226
229
}
227
230
}
228
231
@@ -231,7 +234,7 @@ Place your custom CSS here
231
234
background-image : var (--file-remove-icon-active , $file-remove-icon-active );
232
235
}
233
236
.file-action-icon {
234
- color : $file-action-icon-active ;
237
+ color : var ( --file-action-icon-active , $file-action-icon-active ) ;
235
238
}
236
239
}
237
240
@@ -262,7 +265,7 @@ Place your custom CSS here
262
265
263
266
height : 4px ;
264
267
border-radius : 2px ;
265
- background-color : #f0f1f2 ;
268
+ background-color : var ( --file-progress-background-color , $file-progress-background-color ) ;
266
269
margin : 5px 0 ;
267
270
width : 100% ;
268
271
overflow : hidden ;
0 commit comments