small css adjustment
Oleg
committed Aug 30, 2011
commit 150fc252b1f3f4ea4dab08b791fa005fcdad1e1e
Showing 2
changed files with
9 additions
and 12 deletions
app/assets/stylesheets/comfortable_mexican_sofa/content.css
+3
-6
| @@ | @@ -198,7 +198,7 @@ |
| display: none; | |
| } | |
| #cms_body ul.list li .item .label { | |
| - | margin-left: 60px; |
| + | margin-left: 32px; |
| font-size: 14px; | |
| font-weight: bold; | |
| } | |
| @@ | @@ -233,11 +233,8 @@ |
| text-decoration: blink; | |
| } | |
| /* -- Page Specific stuff ------------------------------------------------ */ | |
| - | #cms_body.c_cms_admin_sites.a_index ul.list li .item .label, |
| - | #cms_body.c_cms_admin_layouts.a_index ul.list li .item .label, |
| - | #cms_body.c_cms_admin_snippets.a_index ul.list li .item .label, |
| - | #cms_body.c_cms_admin_files.a_index ul.list li .item .label { |
| - | margin-left: 32px; |
| + | #cms_body.c_cms_admin_pages.a_index ul.list li .item .label { |
| + | margin-left: 60px; |
| } | |
| #cms_body.c_cms_admin_layouts.a_index ul.list li .item .icon { | |
| background-image: url(/assets/comfortable_mexican_sofa/icon_layout.gif); | |
tasks/comfortable_mexican_sofa.rake b/lib/tasks/comfortable_mexican_sofa.rake
+6
-6
| @@ | @@ -7,9 +7,9 @@ namespace :comfortable_mexican_sofa do |
| namespace :fixtures do | |
| desc 'Import Fixture data into database (options: FROM=example.local TO=example.com)' | |
| - | task :import => :environment do |task, args| |
| - | to = args[:to] || args[:from] |
| - | from = args[:from] |
| + | task :import => :environment do |
| + | to = ENV['TO'] || ENV['FROM'] |
| + | from = ENV['FROM'] |
| abort "Site with hostname [#{to}] not found. Aborting." if !Cms::Site.find_by_hostname(to) | |
| puts "Importing from Folder [#{from}] to Site [#{to}] ..." | |
| @@ | @@ -18,9 +18,9 @@ namespace :comfortable_mexican_sofa do |
| end | |
| desc 'Export database data into Fixtures (options: FROM=example.com TO=example.local)' | |
| - | task :export => :environment do |task, args| |
| - | to = args[:to] || args[:from] |
| - | from = args[:from] |
| + | task :export => :environment do |
| + | to = ENV['TO'] || ENV['FROM'] |
| + | from = ENV['FROM'] |
| abort "Site with hostname [#{from}] not found. Aborting." if !Cms::Site.find_by_hostname(from) | |
| puts "Exporting from Site [#{from}] to Folder [#{to}] ..." | |