module RailsEnvWidgetHelper

  def rails_env_widget
    content_tag :div, Rails.env.titlecase,
      id: 'rails_env',
      onclick: 'this.parentNode.removeChild(this);',
      style: <<-STYLE.squish
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;

        font: normal bold 12px/12px Arial, sans-serif;
        color: white;

        background-color: black;
        padding: 4px 6px;
        opacity: 0.3;

        cursor: pointer;
    STYLE
  end

end
