Skip to content

Commit

Permalink
[css:cwd] fix #2724 problem of position of perm marker in rtl
Browse files Browse the repository at this point in the history
  • Loading branch information
nao-pon committed Oct 23, 2018
1 parent a2e66a7 commit 10d174a
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions css/cwd.css
Original file line number Diff line number Diff line change
Expand Up @@ -1118,20 +1118,41 @@ tr.elfinder-cwd-file td .elfinder-cwd-select {
filter: Alpha(Opacity=60);
}

.elfinder-cwd-view-list .elfinder-perms {
bottom: -4px;
}

.elfinder-cwd-view-list .elfinder-lock {
top: 0px;
}

.elfinder-cwd-view-list .elfinder-symlink {
bottom: -4px;
}

/* markers in ltr/rtl enviroment */
.elfinder-ltr .elfinder-cwd-view-list .elfinder-perms {
left: 8px;
bottom: -4px;
}

.elfinder-rtl .elfinder-cwd-view-list .elfinder-perms {
right: -8px;
}

.elfinder-ltr .elfinder-cwd-view-list .elfinder-lock {
left: 10px;
top: 0px;
}

.elfinder-rtl .elfinder-cwd-view-list .elfinder-lock {
right: -10px;
}

.elfinder-ltr .elfinder-cwd-view-list .elfinder-symlink {
left: -7px;
bottom: -4px;
}

.elfinder-rtl .elfinder-cwd-view-list .elfinder-symlink {
right: 7px;
}

/* file icon */
Expand Down

0 comments on commit 10d174a

Please sign in to comment.