Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions framework/core/less/common/DetailedDropdownItem.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,19 @@
font-size: 12px;
margin-top: 3px;
}

@media @phone {
// The phone dropdown styles assume one icon per menu item and pull it into
// the row's left gutter with a negative margin. This component renders two
// icons (check + option icon), so that treatment stacks them on top of each
// other. Undo it and let the component's own columns lay the icons out.
.Dropdown .Dropdown-menu > li > .DetailedDropdownItem {
&.hasIcon {
padding-left: 20px;
}

.Button-icon {
margin-left: 0;
}
}
}
Loading