Skip to content

Commit

Permalink
MDL-58414 boost: Use a flippable CSS rule
Browse files Browse the repository at this point in the history
Background position "left" can be flipped to "right" - no problem.
Background position "8px" cannot - because it's always measured from the top left.
  • Loading branch information
Damyon Wiese committed May 8, 2017
1 parent 48ad736 commit d9c7ab8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions theme/boost/scss/moodle/filemanager.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@
}

.fp-pathbar .fp-path-folder {
background: url('[[pix:theme|fp/path_folder]]') 8px 3px no-repeat;
background: url('[[pix:theme|fp/path_folder]]') left 3px no-repeat;
background-size: 12px 12px;
height: 12px;
margin-left: 4px;
margin-left: 12px;
}

/*rtl:raw:
Expand All @@ -145,7 +145,7 @@
*/

.fp-pathbar .fp-path-folder-name {
margin-left: 32px;
margin-left: 24px;
}
// Icon view (File Picker and File Manager)
.fp-iconview .fp-file {
Expand Down

0 comments on commit d9c7ab8

Please sign in to comment.