diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index a2fb0905..460ca226 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -99,7 +99,7 @@ module ApplicationHelper
end)
end
- def localized_cache(key, &block)
+ def localized_cache(key={}, &block)
localized_key = localize_fragment_key(key, locale)
cache(localized_key, &block)
end
@@ -162,6 +162,12 @@ module ApplicationHelper
content_for :title, value
end
+ def translate_markdown(key, options={})
+ RDiscount.new(translate(key, options)).to_html.html_safe
+ end
+
+ alias_method :tmd, :translate_markdown
+
def translate_with_links(key, options={})
nonlink_options = {}
link_urls = {}
diff --git a/app/helpers/outfits_helper.rb b/app/helpers/outfits_helper.rb
index 1c561363..67a6c482 100644
--- a/app/helpers/outfits_helper.rb
+++ b/app/helpers/outfits_helper.rb
@@ -25,6 +25,24 @@ module OutfitsHelper
link_to content, wardrobe_path(:anchor => query), options
end
+ def search_helper(filter)
+ key = translate("#{filter}.key")
+ default_value = translate("#{filter}.default_value")
+ content_tag :span, default_value, :class => 'search-helper',
+ 'data-search-filter' => key
+ end
+
+ def search_query_description(base)
+ translate "#{base}.description_html",
+ :default_value => search_helper("#{base}.filter")
+ end
+
+ def search_query_with_helper(base)
+ translate "#{base}.query_html",
+ :filter_key => content_tag(:span, translate("#{base}.filter.key")),
+ :filter_value => search_helper("#{base}.filter")
+ end
+
def outfit_creation_summary(outfit)
user = outfit.user
user_link = link_to(user.name, user_contributions_path(user))
diff --git a/app/stylesheets/outfits/_edit.sass b/app/stylesheets/outfits/_edit.sass
index 5a5c7fc5..d201e7bd 100644
--- a/app/stylesheets/outfits/_edit.sass
+++ b/app/stylesheets/outfits/_edit.sass
@@ -289,8 +289,6 @@ body.outfits-edit
.possible-error
@extend .error
display: none
- #fullscreen-copyright
- display: none
&.fullscreen
$fullscreen-search-border: 1px 1px 0
height: 100%
@@ -302,8 +300,6 @@ body.outfits-edit
padding-top: 2.5em
position: relative
width: 80%
- h1
- display: none
#short-url-response
position: static
#preview
diff --git a/app/views/outfits/edit.html.haml b/app/views/outfits/edit.html.haml
index 1983c745..6fd720bb 100644
--- a/app/views/outfits/edit.html.haml
+++ b/app/views/outfits/edit.html.haml
@@ -1,162 +1,126 @@
- add_body_class 'fullscreen'
-- cache :action_suffix => "image_mode_#{can_use_image_mode?}" do
- %a#home-link{:href => "/"}
- %span Dress to Impress
- %h1#title Planning an outfit
+- localized_cache do
#pet-type-not-found.possible-error
- We haven't seen that combination before. Have you?
- Submit the pet's name if you have!
+ = t '.pet_type.not_found'
#preview-toolbar
%form#pet-type-form
%select{:name => "color"}
%select{:name => "species"}
- %input{:type => "submit", :value => "Go"}/
+ %input{:type => "submit", :value => t('.pet_type.form.submit')}
%form#pet-state-form
- Gender/Emotions:
+ = t '.pet_state_form.header'
%ul
#save-outfit-wrapper
%a#current-outfit-permalink{:target => '_blank'}
- = image_tag 'link_go.png', :alt => 'Permalink', :title => 'Permalink to current outfit'
- %button#save-outfit Save outfit
- %button#save-outfit-not-signed-in Log in to save
- %button#save-outfit-copy Save as…
- %button#save-current-outfit Save "current outfit"
+ = image_tag 'link_go.png', :alt => t('.outfit.permalink.name'),
+ :title => t('.outfit.permalink.description')
+ %button#save-outfit= t '.outfit.save'
+ %button#save-outfit-not-signed-in= t '.outfit.sign_in_to_save'
+ %button#save-outfit-copy= t '.outfit.save_copy'
+ %button#save-current-outfit
+ = t '.outfit.save_current_outfit.main_html',
+ :outfit_name => content_tag(:span, t('.outfit.save_current_outfit.default_outfit_name'))
%form#save-outfit-form
.outfit-star
- %input#save-outfit-name{:type => 'text', :placeholder => 'Outfit name'}
- %button#save-outfit-finish{:type => 'submit'} Save
- %button#save-outfit-cancel{:type => 'button'} Cancel
+ %input#save-outfit-name{:type => 'text', :placeholder => t('.outfit.form.name_placeholder')}
+ %button#save-outfit-finish{:type => 'submit'}= t '.outfit.form.submit'
+ %button#save-outfit-cancel{:type => 'button'}= t '.outfit.form.cancel'
#preview
#preview-swf
#preview-swf-container
- %p Flash and Javascript (but not Java!) are required to preview outfits.
- %p If this message stays after the page is done loading, check those first.
+ %p= t '.preview.requirements'
#preview-image-container
#preview-mode
%ul#preview-mode-toggle
- %li#preview-mode-flash.active Flash
- - if can_use_image_mode?
- %li#preview-mode-image Image
- - if can_use_image_mode?
- = link_to 'Image mode FAQ', image_mode_path,
- :id => 'preview-mode-note', :target => '_blank'
- = link_to 'Broken image?', '#', :id => 'report-broken-image',
- :target => '_blank', 'data-base-url' => new_broken_image_report_path
- #preview-download-image
- %h3 Download
- %ul
- %li
- %button{'data-download-size' => 'small'} Small
- %li
- %button{'data-download-size' => 'medium'} Medium
- %li
- %button{'data-download-size' => 'large'} Large
- - else
- = link_to(donate_path, :id => 'preview-mode-note', :target => '_blank') do
- %strong Image mode
- is available for early beta testing to users who
- %em donate
- at least $5 to help upgrade the server. Thanks!
+ %li#preview-mode-flash.active= t '.preview.mode.flash.name'
+ %li#preview-mode-image= t '.preview.mode.image.name'
+ = link_to t('.preview.mode.image.faq'), image_mode_path,
+ :id => 'preview-mode-note', :target => '_blank'
+ = link_to t('.preview.mode.image.report_broken'), '#',
+ :id => 'report-broken-image', :target => '_blank', 'data-base-url' => new_broken_image_report_path
#preview-sidebar
%nav#preview-sidebar-navbar
- #preview-sidebar-navbar-closet Closet
- #preview-sidebar-navbar-sharing Sharing
- #preview-sidebar-navbar-outfits Outfits
+ #preview-sidebar-navbar-closet= t '.sidebar.nav.closet'
+ #preview-sidebar-navbar-sharing= t '.sidebar.nav.sharing'
+ #preview-sidebar-navbar-outfits= t '.sidebar.nav.outfits'
#preview-sidebar-content
- #outfit-not-found Outfit not found
- #save-success Outfit successfully saved
+ #outfit-not-found= t '.sidebar.notifications.outfits.not_found'
+ #save-success= t '.sidebar.notifications.outfits.save.success'
#save-error
#preview-closet.sidebar-view
%ul
- %p#fullscreen-copyright
- Images © 2000-2010 Neopets, Inc. All Rights Reserved.
- Used With Permission
#preview-outfits.sidebar-view
%ul#preview-outfits-list
#preview-outfits-not-logged-in
%figure
= image_tag 'outfits_welcome.png'
- %figcaption Ready to become a pro designer?
- :markdown
- We know how hard it can be to keep track of your ideas,
- especially if you end up having a lot of them.
- **But Dress to Impress makes it easy.**
-
- Once you have an idea for an outfit, you can **build it,
- save it, and view it again later**, either to update your
- design or finally make your dream a reality.
-
- **Thousands of users have already saved tens of thousands of
- outfits — will you be next?**
-
- = link_to 'Log in to save this outfit', login_path_with_return_to, :id => 'preview-outfits-log-in'
+ %figcaption= t '.sidebar.outfits.not_signed_in.header'
+ = tmd '.sidebar.outfits.not_signed_in.pitch_markdown'
+ = link_to t('.sidebar.outfits.not_signed_in.sign_in'),
+ login_path_with_return_to, :id => 'preview-outfits-log-in'
#preview-sharing.sidebar-view
#preview-sharing-thumbnail-wrapper
#preview-sharing-thumbnail-loading
= image_tag 'outfits/small_loading.gif'
- %span#preview-sharing-thumbnail-saving Saving…
- %span#preview-sharing-thumbnail-generating Generating…
+ %span#preview-sharing-thumbnail-saving
+ = t '.sidebar.sharing.thumbnail.saving'
+ %span#preview-sharing-thumbnail-generating
+ = t '.sidebar.sharing.thumbnail.generating'
%img#preview-sharing-thumbnail
%ul#preview-sharing-urls
%li
- %label{:for => 'preview-sharing-permalink-url'} Outfit page
+ %label{:for => 'preview-sharing-permalink-url'}
+ = t '.sidebar.sharing.links.permalink'
%input#preview-sharing-permalink-url.outfit-url{:type => 'text'}
%li
- %label{:for => 'preview-sharing-large-image-url'} Large image
+ %label{:for => 'preview-sharing-large-image-url'}
+ = t '.sidebar.sharing.links.images.large'
%input#preview-sharing-large-image-url.outfit-url{:type => 'text'}
%li
- %label{:for => 'preview-sharing-medium-image-url'} Medium image
+ %label{:for => 'preview-sharing-medium-image-url'}
+ = t '.sidebar.sharing.links.images.medium'
%input#preview-sharing-medium-image-url.outfit-url{:type => 'text'}
%li
- %label{:for => 'preview-sharing-small-image-url'} Small image
+ %label{:for => 'preview-sharing-small-image-url'}
+ = t '.sidebar.sharing.links.images.small'
%input#preview-sharing-small-image-url.outfit-url{:type => 'text'}
%ul#preview-sharing-url-formats
- %li.active{'data-format' => 'plain'} Plain
- %li{'data-format' => 'html'} HTML
- %li{'data-format' => 'bbcode'} BBCode
+ %li.active{'data-format' => 'plain'}
+ = t '.sidebar.sharing.formats.plain'
+ %li{'data-format' => 'html'}
+ = t '.sidebar.sharing.formats.html'
+ %li{'data-format' => 'bbcode'}
+ =t '.sidebar.sharing.formats.bbcode'
%form#preview-search-form
%header
- %h2 Add an item
- %input{:name => "query", :placeholder => "Search items...", :type => "search"}/
- %input{:type => "submit", :value => "Go"}/
- %a.preview-search-form-your-items{:href => '#', 'data-search-value' => 'owns'} Items you own
- %a.preview-search-form-your-items{:href => '#', 'data-search-value' => 'wants'} Items you want
+ %h2= t '.search.header'
+ %input{:name => "query", :placeholder => t('.search.form.query_placeholder'), :type => "search"}/
+ %input{:type => "submit", :value => t('.search.form.submit')}/
+ %a.preview-search-form-your-items{:href => '#', 'data-search-value' => 'owns'}
+ = closet_lists_group_name :you, true
+ %a.preview-search-form-your-items{:href => '#', 'data-search-value' => 'wants'}
+ = closet_lists_group_name :you, false
#preview-search-form-pagination
- %a#preview-search-form-clear{:href => "#"} clear
+ %a#preview-search-form-clear{:href => "#"}= t '.search.form.clear'
%dl#preview-search-form-help
%div
- %dt kreludor "altador cup" -background
- %dd
- returns any item with the word "kreludor" and the phrase "altador cup"
- in it, but not the word "background"
+ %dt= t '.search.examples.basic.query'
+ %dd= t '.search.examples.basic.description'
%div
- %dt collar -is:nc -is:pb
- %dd
- returns any item with the word "collar" in it, but is not from the NC
- mall, and is not from a deluxe paint brush set
+ %dt= t '.search.examples.flags.query'
+ %dd= t '.search.examples.flags.description'
%div
- %dt
- %span species:
- %span.search-helper{"data-search-filter" => "species"} Acara
- %dd
- returns any item a
- %span.search-helper{"data-search-filter" => "species"} Acara
- can wear
+ %dt= search_query_with_helper '.search.examples.species'
+ %dd= search_query_description '.search.examples.species'
%div
- %dt
- %span type:
- %span.search-helper{"data-search-filter" => "type"} background
- %dd
- returns any item that fills a
- %span.search-helper{"data-search-filter" => "type"} background
- zone
- #preview-search-form-loading Loading...
+ %dt= search_query_with_helper '.search.examples.type'
+ %dd= search_query_description '.search.examples.type'
+ #preview-search-form-loading= '.search.loading'
#preview-search-form-error.possible-error
#preview-search-form-no-results
- No results for ""
+ = t '.search.no_results_html', :query => content_tag(:span)
%ul
- #no-assets-full-message
- We haven't seen this item on this body type before. Have you? Submit its name on the home page if you have!
+ #no-assets-full-message= t '.sidebar.closet.no_data.description'
%script#outfit-template{:type => 'text/x-jquery-tmpl'}
%header
@@ -165,15 +129,19 @@
%form.outfit-rename-form
%input.outfit-rename-field{:type => 'text'}
%footer
- %a.outfit-rename-button{:href => '#'} rename
- %a.outfit-delete{:href => '#'} delete
+ %a.outfit-rename-button{:href => '#'}
+ = t '.sidebar.outfits.outfit.rename'
+ %a.outfit-delete{:href => '#'}
+ = t '.sidebar.outfits.outfit.delete'
.outfit-thumbnail-wrapper
%img.outfit-thumbnail
.outfit-delete-confirmation
- %span Delete?
- %a.outfit-delete-confirmation-yes{:href => '#'} yes
+ %span= t '.sidebar.outfits.outfit.delete_confirmation.header'
+ %a.outfit-delete-confirmation-yes{:href => '#'}
+ = t '.sidebar.outfits.outfit.delete_confirmation.delete'
\/
- %a.outfit-delete-confirmation-no{:href => '#'} no
+ %a.outfit-delete-confirmation-no{:href => '#'}
+ = t '.sidebar.outfits.outfit.delete_confirmation.cancel'
- content_for :javascripts do
= include_javascript_libraries :jquery, :swfobject, :jquery_tmpl
diff --git a/config/locales/en-meep.yml b/config/locales/en-meep.yml
index bfbde555..ea5c6b75 100644
--- a/config/locales/en-meep.yml
+++ b/config/locales/en-meep.yml
@@ -441,6 +441,124 @@ en-meep:
destroy:
success: Outfit "%{outfit_name}" succeessfully demeeped.
+ edit:
+ pet_type:
+ not_found:
+ We haven't meeped that combination before. Have you?
+ Meep the pet's name if you have!
+ form:
+ submit: Meep
+ pet_state_form:
+ header: "Gender/Emeepshuns:"
+ outfit:
+ permalink:
+ name: Permameep
+ description: Permameep to current outfeet
+ save: Meep outfit
+ sign_in_to_save: Log in to meep
+ save_copy: Meep as…
+ save_current_outfit:
+ main_html: Meep "%{outfit_name}"
+ default_outfit_name: current outfeet
+ form:
+ name_placeholder: Outfeet name
+ submit: Meep
+ cancel: Unmeep
+ preview:
+ requirements:
+ Flash and Javascript (but not Java!) are required to meep outfeets.
+ mode:
+ flash:
+ name: Fleesh
+ image:
+ name: Imeege
+ faq: Imeege Mode FAQ
+ report_broken: Broken imeege?
+ sidebar:
+ nav:
+ closet: Closeet
+ sharing: Sheering
+ outfits: Outfeets
+ notifications:
+ outfits:
+ not_found: Outfeet not found
+ save:
+ success: Outfeet successfully meeped
+ closet:
+ no_data:
+ description:
+ We haven't meeped this item on this body type before. Have you?
+ Meep it for us on the home page if you have!
+ outfits:
+ not_signed_in:
+ header: Ready to become a professional meepit?
+ pitch_markdown: |
+ We know how hard it can be to meep track of your ideas,
+ especially if you end up having a lot of them.
+ **But Dress to Impress makes it meepy.**
+
+ Once you have an idea for an outfit, you can **meep it, meep it,
+ and meep it again later**, either to update your design or
+ finally make your dream a reality.
+
+ **Thousands of users have already meeped tens of thousands of
+ outfits. Will you be next?**
+ sign_in: Log in to meep this outfit
+ outfit:
+ rename: remeep
+ delete: unmeep
+ delete_confirmation:
+ header: Unmeep?
+ delete: ja
+ cancel: nü
+ sharing:
+ thumbnail:
+ saving: Seeving…
+ generating: Genereeting…
+ links:
+ permalink: Outfeet page
+ images:
+ large: Leerge
+ medium: Meedium
+ small: Smeell
+ formats:
+ plain: Pleen
+ html: HTMeepL
+ bbcode: BBMeep
+ search:
+ header: Meep an item
+ form:
+ query_placeholder: Meep items…
+ submit: Meep
+ clear: unmeep
+ loading: Meeping…
+ no_results_html: No meepits for "%{query}"
+ examples:
+ basic:
+ query: kreludor "altador cup" -background
+ description:
+ meeps any item with the word "kreludor" and the phrase "altador
+ cup" in it, but not the word "background"
+ flags:
+ query: collar -is:nc -is:pb
+ description:
+ meeps any item with the word "collar" in it, but is not from
+ the NC mall, and is not from a deluxe paint brush set
+ species:
+ filter:
+ key: species
+ default_value: Acara
+ query_html: "%{filter_key}:%{filter_value}"
+ description_html:
+ meeps any item a %{default_value} can wear
+ type:
+ filter:
+ key: type
+ default_value: background
+ query_html: "%{filter_key}:%{filter_value}"
+ description_html:
+ meeps any item that occupies a %{default_value} zone
+
new:
tagline: Meeps made meepy!
load_pet_legend: Enter your pet's meep
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 0ae2d958..3c836420 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -442,6 +442,124 @@ en:
destroy:
success: Outfit "%{outfit_name}" successfully deleted.
+ edit:
+ pet_type:
+ not_found:
+ We haven't seen that combination before. Have you?
+ Submit the pet's name if you have!
+ form:
+ submit: Go
+ pet_state_form:
+ header: "Gender/Emotions:"
+ outfit:
+ permalink:
+ name: Permalink
+ description: Permalink to current outfit
+ save: Save outfit
+ sign_in_to_save: Log in to save
+ save_copy: Save as…
+ save_current_outfit:
+ main_html: Save "%{outfit_name}"
+ default_outfit_name: current outfit
+ form:
+ name_placeholder: Outfit name
+ submit: Save
+ cancel: Cancel
+ preview:
+ requirements:
+ Flash and Javascript (but not Java!) are required to preview outfits.
+ mode:
+ flash:
+ name: Flash
+ image:
+ name: Image
+ faq: Image mode FAQ
+ report_broken: Broken image?
+ sidebar:
+ nav:
+ closet: Closet
+ sharing: Sharing
+ outfits: Outfits
+ notifications:
+ outfits:
+ not_found: Outfit not found
+ save:
+ success: Outfit successfully saved
+ closet:
+ no_data:
+ description:
+ We haven't seen this item on this body type before. Have you?
+ Model it for us on the home page if you have!
+ outfits:
+ not_signed_in:
+ header: Ready to become a pro designer?
+ pitch_markdown: |
+ We know how hard it can be to keep track of your ideas,
+ especially if you end up having a lot of them.
+ **But Dress to Impress makes it easy.**
+
+ Once you have an idea for an outfit, you can **build it, save it,
+ and view it again later**, either to update your design or
+ finally make your dream a reality.
+
+ **Thousands of users have already saved tens of thousands of
+ outfits. Will you be next?**
+ sign_in: Log in to save this outfit
+ outfit:
+ rename: rename
+ delete: delete
+ delete_confirmation:
+ header: Delete?
+ delete: "yes"
+ cancel: "no"
+ sharing:
+ thumbnail:
+ saving: Saving…
+ generating: Generating…
+ links:
+ permalink: Outfit page
+ images:
+ large: Large
+ medium: Medium
+ small: Small
+ formats:
+ plain: Plain
+ html: HTML
+ bbcode: BBCode
+ search:
+ header: Add an item
+ form:
+ query_placeholder: Search items…
+ submit: Search
+ clear: clear
+ loading: Loading…
+ no_results_html: No results for "%{query}"
+ examples:
+ basic:
+ query: kreludor "altador cup" -background
+ description:
+ returns any item with the word "kreludor" and the phrase "altador
+ cup" in it, but not the word "background"
+ flags:
+ query: collar -is:nc -is:pb
+ description:
+ returns any item with the word "collar" in it, but is not from
+ the NC mall, and is not from a deluxe paint brush set
+ species:
+ filter:
+ key: species
+ default_value: Acara
+ query_html: "%{filter_key}:%{filter_value}"
+ description_html:
+ returns any item a %{default_value} can wear
+ type:
+ filter:
+ key: type
+ default_value: background
+ query_html: "%{filter_key}:%{filter_value}"
+ description_html:
+ returns any item that occupies a %{default_value} zone
+
index:
title: Your Outfits
intro:
diff --git a/public/javascripts/outfits/edit.js b/public/javascripts/outfits/edit.js
index 0f6682bc..8370daa0 100644
--- a/public/javascripts/outfits/edit.js
+++ b/public/javascripts/outfits/edit.js
@@ -1063,22 +1063,6 @@ View.PreviewAdapterForm = function (wardrobe) {
if(preview.usingImageAdapter()) {
activate(imageToggle, 'image', 'flash');
}
-
- var DOWNLOAD_SIZES = {
- 'small': [150, 150],
- 'medium': [300, 300],
- 'large': [600, 600]
- };
-
- $('#preview-download-image button').click(function () {
- var size = DOWNLOAD_SIZES[this.getAttribute('data-download-size')];
- preview.adapter.saveImage(size);
- });
-
- if(document.createElement('canvas').getContext) {
- // If browser supports canvas
- modeWrapper.addClass('can-download');
- }
}
View.ReportBrokenImage = function (wardrobe) {
@@ -1280,13 +1264,14 @@ View.Search = function (wardrobe) {
});
help_el.find('dt a').live('click', function (e) {
- var el = $(this), siblings = el.parent().children(), query;
+ var el = $(this), siblings = el.parent().contents(), query;
e.preventDefault();
if(siblings.length > 1) {
query = siblings.map(function () {
var el = $(this);
return el[el.is('select') ? 'val' : 'text']();
}).get().join('');
+ query = $.trim(query);
} else {
query = el.text();
}
@@ -1324,12 +1309,6 @@ View.Search = function (wardrobe) {
//wardrobe.pet_attributes.bind('update', prepBuildHelper('only', getSpecies));
}
-View.Title = function (wardrobe) {
- wardrobe.base_pet.bind('updateName', function (name) {
- $('#title').text("Planning " + name + "'s outfit");
- });
-}
-
var userbar_sessions_link = $('#userbar a:last'),
userbar_message_verb = userbar_sessions_link.text() == 'Log out' ? 'logged out' : 'sent to the login page',
userbar_message_el = $('', {
diff --git a/public/stylesheets/compiled/screen.css b/public/stylesheets/compiled/screen.css
index 4b708011..30830f55 100644
--- a/public/stylesheets/compiled/screen.css
+++ b/public/stylesheets/compiled/screen.css
@@ -672,7 +672,7 @@ body.closet_hangers-index #closet-hangers-contact a, body.closet_hangers-index #
height: 100%;
padding-left: 20px;
}
-/* line 4, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss */
+/* line 4, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss */
body.closet_hangers-index #closet-hangers-contact a:hover, body.closet_hangers-index #closet-hangers-contact > span:hover {
text-decoration: underline;
}
@@ -1359,7 +1359,7 @@ body.closet_hangers-petpage #petpage-closet-lists h4 {
*vertical-align: auto;
vertical-align: middle;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.closet_hangers-petpage #petpage-closet-lists h4 {
*display: inline;
}
@@ -1384,7 +1384,7 @@ body.closet_hangers-petpage #petpage-closet-lists ul li {
margin: 0.25em 0.5em;
padding: 1px;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.closet_hangers-petpage #petpage-closet-lists ul li {
*display: inline;
}
@@ -1796,7 +1796,7 @@ body.items-show #item-header div, body.items-show #item-header img {
vertical-align: middle;
*vertical-align: auto;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.items-show #item-header div, body.items-show #item-header img {
*display: inline;
}
@@ -1850,7 +1850,7 @@ body.items-show #item-preview-species a {
vertical-align: middle;
*vertical-align: auto;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.items-show #item-preview-species a {
*display: inline;
}
@@ -1969,17 +1969,17 @@ body.items-show #item-contributors footer {
body.items-show #item-contributors ul {
list-style-type: none;
}
-/* line 5, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
+/* line 5, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
body.items-show #item-contributors ul, body.items-show #item-contributors ul li {
margin: 0px;
padding: 0px;
display: inline;
}
-/* line 24, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
+/* line 24, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
body.items-show #item-contributors ul li:after {
content: ", ";
}
-/* line 26, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
+/* line 26, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
body.items-show #item-contributors ul li:last-child:after, body.items-show #item-contributors ul li.last:after {
content: "";
}
@@ -1999,7 +1999,7 @@ body.items-show #item-preview-header h3, body.items-show #item-preview-header a
vertical-align: middle;
*vertical-align: auto;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.items-show #item-preview-header h3, body.items-show #item-preview-header a {
*display: inline;
}
@@ -2095,7 +2095,7 @@ body.outfits-edit #preview-toolbar form {
*vertical-align: auto;
margin-right: 2em;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit #preview-toolbar form {
*display: inline;
}
@@ -2470,7 +2470,7 @@ body.outfits-edit #preview-search-form h2 {
*vertical-align: auto;
margin: 0 1em 0 0;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit #preview-search-form h2 {
*display: inline;
}
@@ -2482,7 +2482,7 @@ body.outfits-edit #preview-search-form input {
vertical-align: middle;
*vertical-align: auto;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit #preview-search-form input {
*display: inline;
}
@@ -2504,7 +2504,7 @@ body.outfits-edit #preview-search-form-pagination {
vertical-align: middle;
*vertical-align: auto;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit #preview-search-form-pagination {
*display: inline;
}
@@ -2547,14 +2547,10 @@ body.outfits-edit .possible-error {
display: none;
}
/* line 292, ../../../app/stylesheets/outfits/_edit.sass */
-body.outfits-edit #fullscreen-copyright {
- display: none;
-}
-/* line 294, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen {
height: 100%;
}
-/* line 297, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 295, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #container {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
@@ -2567,31 +2563,27 @@ body.outfits-edit.fullscreen #container {
position: relative;
width: 80%;
}
-/* line 305, ../../../app/stylesheets/outfits/_edit.sass */
-body.outfits-edit.fullscreen h1 {
- display: none;
-}
-/* line 307, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 303, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #short-url-response {
position: static;
}
-/* line 309, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 305, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #preview {
width: 100%;
}
-/* line 311, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 307, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #preview-sidebar {
float: right;
margin: 0;
position: relative;
width: 400px;
}
-/* line 316, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 312, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #preview-sidebar.viewing-saving-outfit {
height: auto;
max-height: 100%;
}
-/* line 319, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 315, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #preview-search-form {
bottom: 1.5em;
left: 0;
@@ -2600,7 +2592,7 @@ body.outfits-edit.fullscreen #preview-search-form {
position: absolute;
width: 100%;
}
-/* line 327, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 323, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #preview-search-form-help div {
display: -moz-inline-box;
-moz-box-orient: vertical;
@@ -2609,31 +2601,31 @@ body.outfits-edit.fullscreen #preview-search-form-help div {
*vertical-align: auto;
width: 48%;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit.fullscreen #preview-search-form-help div {
*display: inline;
}
-/* line 330, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 326, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #footer {
bottom: 0;
left: 0;
position: absolute;
width: 100%;
}
-/* line 335, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 331, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #footer ul, body.outfits-edit.fullscreen #footer p, body.outfits-edit.fullscreen #footer li {
display: inline;
}
-/* line 337, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 333, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.fullscreen #footer ul {
margin-right: 2em;
}
-/* line 340, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 336, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object {
padding: 6px;
position: relative;
}
-/* line 343, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 339, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object ul {
display: none;
left: 0;
@@ -2641,11 +2633,11 @@ body.outfits-edit .object ul {
position: absolute;
top: 0;
}
-/* line 349, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 345, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object ul li {
margin-bottom: 0.25em;
}
-/* line 351, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 347, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object ul li a {
/* http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html */
-moz-border-radius: 5px;
@@ -2690,11 +2682,11 @@ body.outfits-edit .object ul li a:active {
body.outfits-edit .object ul li a:hover {
background-color: #999999;
}
-/* line 354, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 350, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object:hover ul, body.outfits-edit .object:hover .object-info {
display: block;
}
-/* line 361, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 357, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .nc-icon {
background: url('/images/nc.png?1344550430') no-repeat;
height: 16px;
@@ -2704,14 +2696,14 @@ body.outfits-edit .nc-icon {
top: 64px;
width: 16px;
}
-/* line 369, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 365, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .nc-icon:hover {
-moz-opacity: 0.5;
-webkit-opacity: 0.5;
-o-opacity: 0.5;
-khtml-opacity: 0.5;
}
-/* line 372, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 368, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object-info {
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
@@ -2732,26 +2724,26 @@ body.outfits-edit .object-info {
top: 0;
width: 16px;
}
-/* line 383, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 379, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object-info span {
font-family: "Droid Serif", Georgia, "Times New Roman", Times, serif;
font-weight: bold;
position: relative;
top: -2px;
}
-/* line 389, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 385, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .object-info:hover {
-moz-opacity: 1;
-webkit-opacity: 1;
-o-opacity: 1;
-khtml-opacity: 1;
}
-/* line 392, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 388, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits {
display: none;
text-align: left;
}
-/* line 399, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 395, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul {
font-size: 0;
list-style: none;
@@ -2775,7 +2767,7 @@ body.outfits-edit #preview-outfits > ul > li {
position: relative;
font-size: 14px;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit #preview-outfits > ul > li {
*display: inline;
}
@@ -2822,23 +2814,23 @@ body.outfits-edit #preview-outfits > ul > li footer {
body.outfits-edit #preview-outfits > ul > li a {
color: white;
}
-/* line 409, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 405, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul.loaded {
background: transparent;
}
-/* line 412, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 408, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li {
height: 110px;
margin: 1px;
width: 110px;
}
-/* line 422, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 418, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li header, body.outfits-edit #preview-outfits > ul > li footer, body.outfits-edit #preview-outfits > ul > li .outfit-delete-confirmation {
font-size: 12px;
padding: 2px 4px;
width: 102px;
}
-/* line 427, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 423, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li header {
-moz-opacity: 0.75;
-webkit-opacity: 0.75;
@@ -2847,11 +2839,11 @@ body.outfits-edit #preview-outfits > ul > li header {
bottom: 0;
cursor: pointer;
}
-/* line 432, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 428, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li footer, body.outfits-edit #preview-outfits > ul > li .outfit-delete-confirmation {
display: none;
}
-/* line 435, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 431, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-delete-confirmation {
color: white;
left: 0;
@@ -2862,11 +2854,11 @@ body.outfits-edit #preview-outfits > ul > li .outfit-delete-confirmation {
text-align: center;
top: 0;
}
-/* line 441, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 437, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-delete-confirmation span {
font-weight: bold;
}
-/* line 447, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 443, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-thumbnail-wrapper {
-moz-opacity: 0.5;
-webkit-opacity: 0.5;
@@ -2883,61 +2875,61 @@ body.outfits-edit #preview-outfits > ul > li .outfit-thumbnail-wrapper {
width: 150px;
z-index: 1;
}
-/* line 461, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 457, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-thumbnail {
display: none;
}
-/* line 464, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 460, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-star {
bottom: 0;
margin-right: 4px;
}
-/* line 468, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 464, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-delete {
float: right;
}
-/* line 471, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 467, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-rename-button {
float: left;
}
-/* line 474, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 470, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-rename-button, body.outfits-edit #preview-outfits > ul > li .outfit-delete {
font-size: 85%;
text-decoration: none;
}
-/* line 478, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 474, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-rename-button:hover, body.outfits-edit #preview-outfits > ul > li .outfit-delete:hover {
text-decoration: underline;
}
-/* line 481, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 477, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-rename-form {
display: none;
}
-/* line 484, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 480, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li .outfit-rename-form input {
background: transparent;
border: 1px solid white;
width: 6em;
}
-/* line 490, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 486, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li:hover header {
-moz-opacity: 1;
-webkit-opacity: 1;
-o-opacity: 1;
-khtml-opacity: 1;
}
-/* line 493, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 489, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li:hover .outfit-thumbnail-wrapper {
-moz-opacity: 0.75;
-webkit-opacity: 0.75;
-o-opacity: 0.75;
-khtml-opacity: 0.75;
}
-/* line 496, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 492, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li:hover footer {
display: block;
}
-/* line 500, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 496, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.active header {
-moz-opacity: 1;
-webkit-opacity: 1;
@@ -2945,74 +2937,74 @@ body.outfits-edit #preview-outfits > ul > li.active header {
-khtml-opacity: 1;
font-weight: bold;
}
-/* line 504, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 500, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.active .outfit-thumbnail-wrapper {
-moz-opacity: 1;
-webkit-opacity: 1;
-o-opacity: 1;
-khtml-opacity: 1;
}
-/* line 508, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 504, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.confirming-deletion footer {
display: none;
}
-/* line 511, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 507, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.confirming-deletion .outfit-delete-confirmation {
display: block;
}
-/* line 515, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 511, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.renaming .outfit-name {
display: none;
}
-/* line 518, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 514, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.renaming .outfit-rename-form {
display: inline;
}
-/* line 521, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 517, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.thumbnail-available {
background: transparent;
}
-/* line 524, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 520, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.thumbnail-available .outfit-thumbnail-wrapper {
background-image: none;
}
-/* line 527, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 523, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.thumbnail-available .outfit-thumbnail {
display: block;
}
-/* line 531, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 527, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits > ul > li.loading .outfit-star {
background-image: url('/images/loading_outfit_pane.gif?1344550430');
}
-/* line 534, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 530, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in {
text-align: center;
overflow-x: hidden;
}
-/* line 538, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 534, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in img {
border-color: #006600;
border-style: solid;
border-width: 1px 0;
}
-/* line 544, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 540, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in figure {
display: block;
margin: 0 0 1em 0;
padding: 0;
}
-/* line 549, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 545, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in figcaption {
display: block;
font-weight: bold;
}
-/* line 553, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 549, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in p {
margin-left: 24px;
margin-right: 24px;
font-size: 85%;
}
-/* line 557, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 553, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in #preview-outfits-log-in {
/* http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html */
-moz-border-radius: 5px;
@@ -3052,11 +3044,11 @@ body.outfits-edit #preview-outfits #preview-outfits-not-logged-in #preview-outfi
body.outfits-edit #preview-outfits #preview-outfits-not-logged-in #preview-outfits-log-in:hover {
background-color: #ee4b00;
}
-/* line 561, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 557, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing {
display: none;
}
-/* line 564, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 560, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-urls {
margin-left: 24px;
margin-right: 24px;
@@ -3064,23 +3056,23 @@ body.outfits-edit #preview-sharing #preview-sharing-urls {
margin-bottom: 1em;
margin-top: 1em;
}
-/* line 571, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 567, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-urls li {
display: block;
padding: 0.25em 0;
width: 100%;
}
-/* line 576, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 572, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-urls li label {
display: block;
font-weight: bold;
}
-/* line 580, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 576, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-urls li input {
display: block;
width: 100%;
}
-/* line 584, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 580, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-url-formats {
margin-left: 24px;
margin-right: 24px;
@@ -3093,7 +3085,7 @@ body.outfits-edit #preview-sharing #preview-sharing-url-formats {
font-size: 0;
text-align: center;
}
-/* line 592, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 588, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-url-formats li {
display: -moz-inline-box;
-moz-box-orient: vertical;
@@ -3108,17 +3100,17 @@ body.outfits-edit #preview-sharing #preview-sharing-url-formats li {
font-size: 12px;
padding: 0 2em;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit #preview-sharing #preview-sharing-url-formats li {
*display: inline;
}
-/* line 603, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 599, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-url-formats li.active {
background: #eeffee;
color: inherit;
font-weight: bold;
}
-/* line 608, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 604, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-url-formats li:first-child {
-moz-border-radius-topleft: 5px;
-webkit-border-top-left-radius: 5px;
@@ -3134,7 +3126,7 @@ body.outfits-edit #preview-sharing #preview-sharing-url-formats li:first-child {
border-bottom-left-radius: 5px;
border-left-width: 1px;
}
-/* line 613, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 609, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-url-formats li:last-child {
-moz-border-radius-topright: 5px;
-webkit-border-top-right-radius: 5px;
@@ -3150,7 +3142,7 @@ body.outfits-edit #preview-sharing #preview-sharing-url-formats li:last-child {
border-bottom-right-radius: 5px;
border-right-color: #006600;
}
-/* line 618, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 614, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-thumbnail-wrapper {
border: 1px solid #aaddaa;
display: block;
@@ -3159,7 +3151,7 @@ body.outfits-edit #preview-sharing #preview-sharing-thumbnail-wrapper {
position: relative;
width: 150px;
}
-/* line 626, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 622, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-thumbnail-loading {
height: 100%;
left: 0;
@@ -3167,7 +3159,7 @@ body.outfits-edit #preview-sharing #preview-sharing-thumbnail-loading {
top: 0;
width: 100%;
}
-/* line 633, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 629, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-thumbnail-loading span {
color: #448844;
font-size: 85%;
@@ -3177,11 +3169,11 @@ body.outfits-edit #preview-sharing #preview-sharing-thumbnail-loading span {
top: 50%;
width: 100%;
}
-/* line 642, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 638, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-thumbnail, body.outfits-edit #preview-sharing #preview-sharing-thumbnail-generating {
display: none;
}
-/* line 645, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 641, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing #preview-sharing-beta-note {
margin-left: 24px;
margin-right: 24px;
@@ -3192,59 +3184,59 @@ body.outfits-edit #preview-sharing #preview-sharing-beta-note {
margin-top: 1em;
text-align: center;
}
-/* line 653, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 649, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing.urls-loaded #preview-sharing-thumbnail-saving {
display: none;
}
-/* line 656, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 652, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing.urls-loaded #preview-sharing-urls, body.outfits-edit #preview-sharing.urls-loaded #preview-sharing-url-formats, body.outfits-edit #preview-sharing.urls-loaded #preview-sharing-thumbnail-generating {
display: block;
}
-/* line 660, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 656, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing.urls-loaded.thumbnail-loaded #preview-sharing-thumbnail-loading {
display: none;
}
-/* line 663, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 659, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing.urls-loaded.thumbnail-loaded #preview-sharing-thumbnail {
display: block;
}
-/* line 667, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 663, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing.urls-loaded.thumbnail-available #preview-sharing-thumbnail-loading {
-moz-opacity: 0.85;
-webkit-opacity: 0.85;
-o-opacity: 0.85;
-khtml-opacity: 0.85;
}
-/* line 670, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 666, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sharing.urls-loaded.thumbnail-available #preview-sharing-thumbnail {
display: block;
}
-/* line 673, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 669, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .preview-sidebar-nav {
float: right;
font-size: 85%;
margin-right: 24px;
margin-top: 1em;
}
-/* line 685, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 681, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar #preview-sidebar-navbar-closet {
background: white;
border-bottom-color: white;
font-weight: bold;
}
-/* line 689, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 685, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar.viewing-outfits #preview-sidebar-navbar-closet, body.outfits-edit #preview-sidebar.sharing #preview-sidebar-navbar-closet {
background: transparent;
border-bottom: 1px solid #aaddaa;
font-weight: normal;
}
-/* line 692, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 688, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar.viewing-outfits #preview-sidebar-navbar-outfits, body.outfits-edit #preview-sidebar.sharing #preview-sidebar-navbar-sharing {
background: white;
border-bottom-color: white;
font-weight: bold;
}
-/* line 695, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 691, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-navbar {
-moz-border-radius: 10px 10px 0 0;
-webkit-border-radius: 10px 10px 0 0;
@@ -3264,7 +3256,7 @@ body.outfits-edit #preview-sidebar-navbar {
body.outfits-edit #preview-sidebar-navbar {
display: block;
}
-/* line 704, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 700, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-navbar > div {
background: transparent;
border-bottom: 1px solid #aaddaa;
@@ -3276,11 +3268,11 @@ body.outfits-edit #preview-sidebar-navbar > div {
text-align: center;
width: 132px;
}
-/* line 713, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 709, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-navbar > div:first-child {
border-left: 0;
}
-/* line 716, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 712, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-content {
-moz-border-radius: 0 0 10px 10px;
-webkit-border-radius: 0 0 10px 10px;
@@ -3293,7 +3285,7 @@ body.outfits-edit #preview-sidebar-content {
height: 300px;
overflow: auto;
}
-/* line 723, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 719, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #save-success, body.outfits-edit #save-error, body.outfits-edit #outfit-not-found, body.outfits-edit #preview-sidebar-donation-request {
margin-left: 24px;
margin-right: 24px;
@@ -3301,7 +3293,7 @@ body.outfits-edit #save-success, body.outfits-edit #save-error, body.outfits-edi
margin-top: 1em;
text-align: center;
}
-/* line 730, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 726, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-donation-request {
background: #e6efc2;
border: 1px solid #c6d880;
@@ -3309,23 +3301,23 @@ body.outfits-edit #preview-sidebar-donation-request {
font-size: 85%;
padding: 1em;
}
-/* line 735, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 731, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-donation-request-no-thanks {
margin-left: 1em;
}
-/* line 738, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 734, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #save-success {
background: #e6efc2;
border: 1px solid #c6d880;
color: #264409;
}
-/* line 741, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 737, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #save-error, body.outfits-edit #outfit-not-found {
background: #fbe3e4;
border: 1px solid #fbc2c4;
color: #8a1f11;
}
-/* line 744, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 740, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #userbar-message {
-moz-opacity: 0.5;
-webkit-opacity: 0.5;
@@ -3333,16 +3325,16 @@ body.outfits-edit #userbar-message {
-khtml-opacity: 0.5;
display: none;
}
-/* line 748, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 744, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #new-outfit-name {
font: inherit;
line-height: 1;
}
-/* line 752, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 748, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #pet-type-form, body.outfits-edit #pet-state-form, body.outfits-edit #preview-swf, body.outfits-edit #preview-search-form {
position: relative;
}
-/* line 755, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 751, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .control-overlay {
height: 100%;
left: 0;
@@ -3351,11 +3343,11 @@ body.outfits-edit .control-overlay {
width: 100%;
z-index: 5;
}
-/* line 763, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 759, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-sidebar-nav-outfits, body.outfits-edit #save-outfit-signed-in {
display: none;
}
-/* line 766, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 762, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit form#save-outfit-form {
display: none;
margin-right: 0;
@@ -3388,7 +3380,7 @@ body.outfits-edit form#save-outfit-form .outfit-star {
margin-left: -24px;
margin-right: 0;
}
-/* line 772, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 768, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit form#save-outfit-form .outfit-star, body.outfits-edit form#save-outfit-form input, body.outfits-edit form#save-outfit-form button {
display: -moz-inline-box;
-moz-box-orient: vertical;
@@ -3398,50 +3390,50 @@ body.outfits-edit form#save-outfit-form .outfit-star, body.outfits-edit form#sav
float: none;
vertical-align: top;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit form#save-outfit-form .outfit-star, body.outfits-edit form#save-outfit-form input, body.outfits-edit form#save-outfit-form button {
*display: inline;
}
-/* line 777, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 773, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit form#save-outfit-form .outfit-star {
margin-top: 0.25em;
}
-/* line 780, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 776, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit .outfit-url {
font-size: 75%;
}
-/* line 783, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 779, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #preview-search-form-error {
background: #fbe3e4;
border: 1px solid #fbc2c4;
color: #8a1f11;
padding: 0.25em 0.5em;
}
-/* line 788, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 784, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #preview-sidebar-nav-outfits {
display: block;
}
-/* line 790, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 786, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #save-outfit {
display: inline-block;
}
-/* line 794, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 790, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #save-outfit-wrapper.active-outfit #save-outfit {
display: none;
}
-/* line 796, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 792, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #save-outfit-wrapper.active-outfit #save-current-outfit, body.outfits-edit.user-signed-in #save-outfit-wrapper.active-outfit #save-outfit-copy {
display: inline-block;
}
-/* line 804, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 800, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #save-outfit-form {
display: block;
}
-/* line 806, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 802, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #save-outfit, body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #save-current-outfit, body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #save-outfit-copy, body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #current-outfit-permalink, body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #shared-outfit-permalink, body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #share-outfit, body.outfits-edit.user-signed-in #save-outfit-wrapper.saving-outfit #shared-outfit-url {
display: none;
}
-/* line 808, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 804, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in .preview-search-form-your-items {
display: -moz-inline-box;
-moz-box-orient: vertical;
@@ -3449,27 +3441,27 @@ body.outfits-edit.user-signed-in .preview-search-form-your-items {
vertical-align: middle;
*vertical-align: auto;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-edit.user-signed-in .preview-search-form-your-items {
*display: inline;
}
-/* line 810, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 806, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #preview-outfits-not-logged-in {
display: none;
}
-/* line 812, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 808, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-signed-in #preview-outfits-list {
display: block;
}
-/* line 816, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 812, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit.user-not-signed-in #save-outfit-not-signed-in {
display: inline-block;
}
-/* line 820, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 816, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #save-outfit-wrapper.shared-outfit #shared-outfit-permalink, body.outfits-edit #save-outfit-wrapper.shared-outfit #shared-outfit-url {
display: inline-block;
}
-/* line 822, ../../../app/stylesheets/outfits/_edit.sass */
+/* line 818, ../../../app/stylesheets/outfits/_edit.sass */
body.outfits-edit #save-outfit-wrapper.shared-outfit #current-outfit-permalink {
display: none !important;
}
@@ -3490,7 +3482,7 @@ body.outfits-index #outfits > li {
position: relative;
font-size: 14px;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.outfits-index #outfits > li {
*display: inline;
}
@@ -4125,7 +4117,7 @@ body.pets-bulk #needed-items-form #needed-items-pet #needed-items-reload {
margin-left: 1em;
vertical-align: middle;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.pets-bulk #needed-items-form #needed-items-pet #needed-items-reload {
*display: inline;
}
@@ -4199,7 +4191,7 @@ body.pets-bulk #bulk-pets-form textarea {
overflow: hidden;
resize: none;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.pets-bulk #bulk-pets-form textarea {
*display: inline;
}
@@ -4220,7 +4212,7 @@ body.pets-bulk #bulk-pets-form ul li {
min-width: 25%;
text-align: left;
}
-/* line 7, ../../../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
+/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p362/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
body.pets-bulk #bulk-pets-form ul li {
*display: inline;
}