Sha256: 07780049734ff41d5ef69f93cde0345c267a2a13a41e83b220620d15d42ca617

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

- css_prefix_list = [["IE6 Only" , "<!--[if eq IE 6]>"] , ["IE7 Only" , "<!--[if eq IE 7]>"] , ["IE8 Only" , "<!--[if eq IE 8]>"] , ["IE9 Only" , "<!--[if eq IE 9]>"] , ["IE6 & IE7" , "<!--[if lte IE 7]>"] , ["IE6 & IE7 & IE8" , "<!--[if lte IE 8]>"] , ["Webkit based browsers (Safari, Chrome, etc)" , "if Webkit"] , ["Firefox" , "if Gecko"]]

- unless @stylesheet.blank?
  = version_listing(@stylesheet.versions , @version )


= form_for(@stylesheet, :url => url , :html => {:class => "validation"}) do  |f|
  = gb_error_messages_for(@stylesheet)

  .span5

    %p
      = f.label :name
      = f.text_field(:name, :id => "page_title" , :class => "required")

    %p
      = f.label :slug
      = f.text_field(:slug, :id => 'page_slug')

    %p
      = f.label :css_prefix , "Target Browser(s)"
      = f.select(:css_prefix , css_prefix_list , :include_blank => "All Browsers")

    %p
      = f.label :value , "CSS"
      = f.text_area(:value , :class => "fullscreen" )

    = form_controls(admin_stylesheets_path)

= enable_redactor("jwysiwyg")

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gluttonberg-core-3.0.2 app/views/gluttonberg/admin/settings/stylesheets/_form.html.haml
gluttonberg-core-3.0.1 app/views/gluttonberg/admin/settings/stylesheets/_form.html.haml
gluttonberg-core-3.0.0 app/views/gluttonberg/admin/settings/stylesheets/_form.html.haml