Allow selectable matchers on silence view (#1030)

This commit is contained in:
Jose Donizetti 2017-10-07 07:54:30 -03:00 committed by stuart nelson
parent 10b9d34f80
commit 0508348fd0
2 changed files with 9 additions and 3 deletions

View File

@ -22,7 +22,13 @@ labelButton maybeMsg labelText =
case maybeMsg of
Nothing ->
span
[ class "btn btn-sm bg-faded btn-secondary mr-2 mb-2" ]
[ class "btn btn-sm bg-faded btn-secondary mr-2 mb-2"
, style
[ ( "user-select", "text" )
, ( "-moz-user-select", "text" )
, ( "-webkit-user-select", "text" )
]
]
[ text labelText ]
Just msg ->

File diff suppressed because one or more lines are too long