https://bugzilla.redhat.com/show_bug.cgi?id=740939
Rails button-to ActionView::HelperUrlHelper has a method called button_to. The button_to method automatically renders a style class on the element called button_to. This patch changes the stylesheet class name to button_to.
This patch has been pushed to master as it's a very minor css change.
https://bugzilla.redhat.com/show_bug.cgi?id=740939
Rails button-to ActionView::HelperUrlHelper has a method called button_to. The button_to method automatically renders a style class on the element called button_to. This patch changes the stylesheet class name to button_to. --- src/app/stylesheets/custom.scss | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/stylesheets/custom.scss b/src/app/stylesheets/custom.scss index e5c2bdd..d019798 100644 --- a/src/app/stylesheets/custom.scss +++ b/src/app/stylesheets/custom.scss @@ -17,8 +17,8 @@ }
/*fixes the button_to helper used in button-group problem*/ -.button-group .button-to div{display: inline;} -.button-group .button-to div .button.pill{ +.button-group .button_to div{display: inline;} +.button-group .button_to div .button.pill{ -webkit-border-radius: 0em 50em; -moz-border-radius: 0em 50em 50em 0em; border-radius: 0em 50em 50em 0em;
aeolus-devel@lists.fedorahosted.org