Skip to content

Commit

Permalink
fix(MdSelect): fix dense layout not being rendered properly (#1346)
Browse files Browse the repository at this point in the history
make dense props available

fix #1332
  • Loading branch information
VdustR authored and marcosmoura committed Dec 26, 2017
1 parent 84699ce commit 7110eab
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/MdField/MdSelect/MdSelect.vue
Expand Up @@ -6,6 +6,7 @@
:md-active.sync="showSelect"
:md-offset-x="offset.x"
:md-offset-y="offset.y"
:md-dense="mdDense"
@md-opened="onOpen"
@md-closed="onClose">
<md-input
Expand All @@ -31,7 +32,6 @@
ref="menu"
class="md-select-menu"
:md-content-class="mdClass"
:md-list-class="mdDense && 'md-dense'"
:style="menuStyles"
:id="uniqueId">
<slot />
Expand Down Expand Up @@ -320,10 +320,6 @@
.md-list {
transition: opacity .3s $md-transition-drop-timing;
}
.md-dense .md-ripple.md-list-item-content {
font-size: 14px;
}
}
}
</style>

0 comments on commit 7110eab

Please sign in to comment.