Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #3241 : Moved buttons from right to left (#3412)
Browse files Browse the repository at this point in the history
* shifted buttons from right to left
* Swapped the position of text and image on save button
* swapped text and image on save button

* fixed the buttons

* adjusted position of image
  • Loading branch information
ankita240796 authored and ianb committed Aug 29, 2017
1 parent e21d7b7 commit 115d6ed
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions static/css/inline-selection.scss
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,12 @@ $very-light-grey: #ededed;
@include flex-container(row, center, center);
bottom: -55px;
position: absolute;
right: 5px;
html[dir="rtl"] & {
left: 5px;
}
html[dir="ltr"] & {
right: 5px;
}
z-index: 6;

.bottom-selection & {
Expand Down Expand Up @@ -238,13 +243,23 @@ $very-light-grey: #ededed;
@extend .button;
@extend .primary;
background-image: url("MOZ_EXTENSION/icons/cloud.svg");
background-position: 8px center;
html[dir="ltr"] & {
background-position: 8px center;
}
html[dir="rtl"] & {
background-position: 65px center;
}
background-repeat: no-repeat;
background-size: 20px 18px;
font-size: 18px;
margin: 5px;
min-width: 80px;
padding-left: 34px;
html[dir="ltr"] & {
padding-left: 34px;
}
html[dir="rtl"] & {
padding-right: 40px;
}
}

.highlight-button-download {
Expand Down

0 comments on commit 115d6ed

Please sign in to comment.