From d866f17405ae8a9a436f81f47cc45fcb8ddf7823 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 27 Apr 2015 00:55:14 +0200 Subject: [PATCH] Removed "round" CSS class from alert boxes. Round corner should only be used for action buttons. --- app/views/layouts/_messages.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/_messages.slim b/app/views/layouts/_messages.slim index 4f2f1fb..15aaf0e 100644 --- a/app/views/layouts/_messages.slim +++ b/app/views/layouts/_messages.slim @@ -2,6 +2,6 @@ // Supported names are success/warning/info/alert/secondary // See http://foundation.zurb.com/docs/components/alert_boxes.html - flash.each do |name, msg| - div data-alert=true class="alert-box round #{name}" + div data-alert=true class="alert-box #{name}" = content_tag(:div, msg) a href="#" class="close" ×