Skip to content

Commit

Permalink
Merge pull request #973 from Baraka24/fix-unable-to-set-draft-folder
Browse files Browse the repository at this point in the history
[FIX] Folders: fixing unable to set draft folder
  • Loading branch information
Shadow243 authored Apr 27, 2024
2 parents cf5f887 + 2294166 commit f198621
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/imap_folders/modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ protected function output() {
<a href="#" class="select_sent_folder">'.$this->trans('Select Folder').'</a>:
<span class="selected_sent"></span>
</div>
<ul class="folders sent_folder_select" style="z-index: 10">
<ul class="folders sent_folder_select">
<li class="sent_title">
<a href="#" class="close">'.$this->trans('Cancel').'</a>
</li>
Expand Down Expand Up @@ -548,7 +548,7 @@ protected function output() {
<a href="#" class="select_archive_folder">'.$this->trans('Select Folder').'</a>:
<span class="selected_archive"></span>
</div>
<ul class="folders archive_folder_select" style="z-index : 10">
<ul class="folders archive_folder_select">
<li class="archive_title">
<a href="#" class="close">'.$this->trans('Cancel').'</a>
</li>
Expand Down Expand Up @@ -635,7 +635,7 @@ protected function output() {
<a href="#" class="select_trash_folder">'.$this->trans('Select Folder').'</a>:
<span class="selected_trash"></span>
</div>
<ul class="folders trash_folder_select" style="z-index : 10">
<ul class="folders trash_folder_select">
<li class="trash_title">
<a href="#" class="close">'.$this->trans('Cancel').'</a>
</li>
Expand Down Expand Up @@ -677,7 +677,7 @@ protected function output() {
<a href="#" class="select_junk_folder">'.$this->trans('Select Folder').'</a>:
<span class="selected_junk"></span>
</div>
<ul class="folders junk_folder_select" style="z-index: 10">
<ul class="folders junk_folder_select">
<li class="junk_title">
<a href="#" class="close">'.$this->trans('Cancel').'</a>
</li>
Expand Down
1 change: 1 addition & 0 deletions modules/imap_folders/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/* .folder_dialog input { display: inline-block; margin-top: 15px; } */
.sent_folder_select, .draft_folder_select, .trash_folder_select, .folder_dialog, .delete_folder_select, .rename_folder_select, .rename_parent_folder_select, .parent_folder_select, .archive_folder_select, .junk_folder_select { display: none; }
.draft_folder_select, .sent_folder_select, .trash_folder_select, .delete_folder_select, .rename_folder_select, .rename_parent_folder_select, .parent_folder_select, .archive_folder_select { width: 215px; position: absolute; background-color: #fff; padding: 15px; border: solid 1px #ede8e6; font-weight: normal; padding-left: 10px; min-width: 55px; padding-top: 10px; margin-left: 0px !important; margin-top: 0px; }
.delete_folder_select, .rename_folder_select, .rename_parent_folder_select, .sent_folder_select, .archive_folder_select, .draft_folder_select, .trash_folder_select, .junk_folder_select, .parent_folder_select { z-index: 10; }
.folder_row { margin-top: 15px; }
.close { margin-left: 10%; font-size: 100%; color: teal !important; }
.sp_folder_title { font-size: 110%; color: #777; }
Expand Down

0 comments on commit f198621

Please sign in to comment.