Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(select): support rtl direction
Browse files Browse the repository at this point in the history
closes #1728
  • Loading branch information
rschmukler committed Mar 3, 2015
1 parent 5c889b7 commit 59e30a3
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/components/select/select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ md-select {
display: flex;
align-items: center;
padding-top: $baseline-grid + 1;
padding-right: 4 * $baseline-grid;
padding-bottom: $baseline-grid;
border-bottom: 1px solid;
font-size: 1em;
Expand All @@ -79,14 +78,18 @@ md-select {
box-sizing: border-box;
min-width: 8 * $baseline-grid;

.md-select-icon {
align-items: flex-end;
text-align: end;
width: 3 * $baseline-grid;
margin: 0 .5 * $baseline-grid;
}

.md-select-icon:after {
display: block;
content: '\25BC';
display: flex;
align-items: center;
position: absolute;
height: 100%;
top: 0px;
right: 2px;
position: relative;
top: 2px;
speak: none;
transform: scaleY(0.6) scaleX(1);
}
Expand Down

0 comments on commit 59e30a3

Please sign in to comment.