How to change notification position? #3506
Unanswered
tukusejssirs
asked this question in
Q&A
Replies: 1 comment
-
I have found a workaround: define a CSS like this: .elfinder-toast {
margin-top: 29px;
} However, I still think that adding a configuration option for toast to change the position (and potentially the width) of toasts is much better idea. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to move notifiations so that it does not cover the search box (i.e. a few pixels down).
I have found
notifyDialog
documentation (which seems to contain an error: based on JSDoc, default is notposition: null
, but{position: {}, width : null}
. However, setting it to{position: {top : '50px', right : '50px'}, width : 280}
(or any value forposition.top
,position.right
andwidth
) does not change the notification position. After a while I noticed that it changes position and width of a notification which show while renaming a folder.I want to change the position of notification which shows when an operation is done (e.g.
New folder complete
orNew file complete
;i18n
string).How can I do that?
Update:
It seems to be called
toast
, which is configured like this, however, there is no option to specify position.Beta Was this translation helpful? Give feedback.
All reactions