make the remove text in radio group a link

This commit is contained in:
Wei Wei (BINGADS) 2016-09-15 20:47:08 +08:00
Родитель 199d8e51f7
Коммит 3f9c8b7781
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -3,7 +3,7 @@ li.dropdown-radio-group(class=classes, id=id)
li.dropdown-header(role='presentation')=title
each item in items
li.dropdown-radio-item(role='presentation', data-value=item.value)
a(role='menuitem')
span(role='menuitem')
if item.value === value
span.selection.selection-selected(class=checkIcon)
else
@ -12,7 +12,7 @@ li.dropdown-radio-group(class=classes, id=id)
if !item.locked
span.remove
if removeText
span.pull-right.remove-text=removeText
a.pull-right.remove-text=removeText
if removeIcon
span.pull-right.remove-icon(class=removeIcon)

Просмотреть файл

@ -10,6 +10,10 @@
border: none;
box-shadow: none;
li.dropdown-radio-item {
cursor: pointer;
}
span.selection {
visibility: hidden;
margin-right: 5px;