forked from OpenNeo/impress
better handle list emptiness for drag-n-drop
This commit is contained in:
parent
bbb4e02b75
commit
0e522fa371
7 changed files with 101 additions and 69 deletions
|
@ -14,10 +14,13 @@ class ClosetHangersController < ApplicationController
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@user = User.find params[:user_id]
|
@user = User.find params[:user_id]
|
||||||
|
@public_perspective = params.has_key?(:public) || !user_is?(@user)
|
||||||
|
@perspective_user = current_user unless @public_perspective
|
||||||
|
|
||||||
@closet_lists_by_owned = @user.closet_lists.alphabetical.
|
@closet_lists_by_owned = @user.closet_lists.alphabetical.
|
||||||
includes(:hangers => :item).group_by(&:hangers_owned)
|
includes(:hangers => :item).group_by(&:hangers_owned)
|
||||||
|
|
||||||
visible_groups = @user.closet_hangers_groups_visible_to(current_user)
|
visible_groups = @user.closet_hangers_groups_visible_to(@perspective_user)
|
||||||
unless visible_groups.empty?
|
unless visible_groups.empty?
|
||||||
@unlisted_closet_hangers_by_owned = @user.closet_hangers.unlisted.
|
@unlisted_closet_hangers_by_owned = @user.closet_hangers.unlisted.
|
||||||
owned_before_wanted.alphabetical_by_item_name.includes(:item).
|
owned_before_wanted.alphabetical_by_item_name.includes(:item).
|
||||||
|
@ -25,8 +28,6 @@ class ClosetHangersController < ApplicationController
|
||||||
else
|
else
|
||||||
@unlisted_closet_hangers_by_owned = {}
|
@unlisted_closet_hangers_by_owned = {}
|
||||||
end
|
end
|
||||||
|
|
||||||
@public_perspective = params.has_key?(:public) || !user_is?(@user)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Since the user does not care about the idea of a hanger, but rather the
|
# Since the user does not care about the idea of a hanger, but rather the
|
||||||
|
|
|
@ -69,5 +69,10 @@ module ClosetHangersHelper
|
||||||
:collection => @unlisted_closet_hangers_by_owned[owned],
|
:collection => @unlisted_closet_hangers_by_owned[owned],
|
||||||
:locals => {:show_controls => !public_perspective?}
|
:locals => {:show_controls => !public_perspective?}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def unlisted_hangers_count(owned)
|
||||||
|
hangers = @unlisted_closet_hangers_by_owned[owned]
|
||||||
|
hangers ? hangers.size : 0
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -145,7 +145,7 @@ body.closet_hangers-index
|
||||||
|
|
||||||
.visibility-form
|
.visibility-form
|
||||||
+inline-block
|
+inline-block
|
||||||
margin: 0 auto
|
margin: 0 auto 1em
|
||||||
position: relative
|
position: relative
|
||||||
|
|
||||||
input, select
|
input, select
|
||||||
|
@ -177,6 +177,7 @@ body.closet_hangers-index
|
||||||
margin: 0 auto
|
margin: 0 auto
|
||||||
|
|
||||||
.empty-list
|
.empty-list
|
||||||
|
display: none
|
||||||
font-style: italic
|
font-style: italic
|
||||||
|
|
||||||
.closet-list-controls
|
.closet-list-controls
|
||||||
|
@ -191,6 +192,10 @@ body.closet_hangers-index
|
||||||
form
|
form
|
||||||
display: inline
|
display: inline
|
||||||
|
|
||||||
|
&[data-hangers-count="0"]
|
||||||
|
.empty-list
|
||||||
|
display: block
|
||||||
|
|
||||||
&.unlisted
|
&.unlisted
|
||||||
h4
|
h4
|
||||||
font:
|
font:
|
||||||
|
|
|
@ -67,16 +67,20 @@
|
||||||
= link_to_add_closet_list 'Add new list', :owned => owned, :class => 'add-closet-list'
|
= link_to_add_closet_list 'Add new list', :owned => owned, :class => 'add-closet-list'
|
||||||
.closet-hangers-group-content
|
.closet-hangers-group-content
|
||||||
= render_closet_lists(@closet_lists_by_owned[owned])
|
= render_closet_lists(@closet_lists_by_owned[owned])
|
||||||
- if @unlisted_closet_hangers_by_owned[owned]
|
.closet-list.unlisted{'data-hangers-count' => unlisted_hangers_count(owned)}
|
||||||
.closet-list.unlisted
|
- if has_lists?(owned)
|
||||||
- if has_lists?(owned)
|
%header
|
||||||
%header
|
%h4 (Not in a list)
|
||||||
%h4 (Not in a list)
|
.closet-list-content
|
||||||
= form_for @user, :html => {:class => 'visibility-form'} do |f|
|
- unless public_perspective?
|
||||||
= f.select hangers_group_visibility_field_name(owned),
|
= form_for @user, :html => {:class => 'visibility-form'} do |f|
|
||||||
hangers_group_visibility_choices(owned)
|
= f.select hangers_group_visibility_field_name(owned),
|
||||||
= f.submit "Save"
|
hangers_group_visibility_choices(owned)
|
||||||
.closet-list-hangers= render_unlisted_closet_hangers(owned)
|
= f.submit "Save"
|
||||||
|
.closet-list-hangers
|
||||||
|
= render_unlisted_closet_hangers(owned)
|
||||||
|
%span.empty-list
|
||||||
|
All the items you #{closet_hanger_verb owned} are in lists.
|
||||||
- if public_perspective?
|
- if public_perspective?
|
||||||
- unless has_hangers?(owned)
|
- unless has_hangers?(owned)
|
||||||
%p #{@user.name} doesn't seem to #{closet_hanger_verb(owned, false)} anything.
|
%p #{@user.name} doesn't seem to #{closet_hanger_verb(owned, false)} anything.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.closet-list{'data-id' => closet_list.id, :id => "closet-list-#{closet_list.id}"}
|
.closet-list{'data-id' => closet_list.id, 'data-hangers-count' => closet_list.hangers.count, :id => "closet-list-#{closet_list.id}"}
|
||||||
%header
|
%header
|
||||||
- if show_controls
|
- if show_controls
|
||||||
.closet-list-controls
|
.closet-list-controls
|
||||||
|
@ -10,9 +10,9 @@
|
||||||
- if closet_list.description?
|
- if closet_list.description?
|
||||||
= closet_list_description_format closet_list
|
= closet_list_description_format closet_list
|
||||||
|
|
||||||
.closet-list-hangers
|
.closet-list-content
|
||||||
- unless closet_list.hangers.empty?
|
.closet-list-hangers
|
||||||
= render_sorted_hangers(closet_list, show_controls)
|
- unless closet_list.hangers.empty?
|
||||||
- else
|
= render_sorted_hangers(closet_list, show_controls)
|
||||||
%span.empty-list This list is empty.
|
%span.empty-list This list is empty.
|
||||||
|
|
||||||
|
|
|
@ -126,14 +126,25 @@
|
||||||
return a.find('span.name').text().localeCompare(b.find('span.name').text());
|
return a.find('span.name').text().localeCompare(b.find('span.name').text());
|
||||||
}
|
}
|
||||||
|
|
||||||
function moveItemToList(item, listId) {
|
function findList(id, item) {
|
||||||
if(listId) {
|
if(id) {
|
||||||
var list = $('#closet-list-' + listId);
|
return $('#closet-list-' + id);
|
||||||
} else {
|
} else {
|
||||||
var list = item.closest('.closet-hangers-group').find('div.closet-list.unlisted');
|
return item.closest('.closet-hangers-group').find('div.closet-list.unlisted');
|
||||||
}
|
}
|
||||||
var hangersWrapper = list.find('div.closet-list-hangers');
|
}
|
||||||
|
|
||||||
|
function updateListHangersCount(el) {
|
||||||
|
el.attr('data-hangers-count', el.find('div.object').length);
|
||||||
|
}
|
||||||
|
|
||||||
|
function moveItemToList(item, listId) {
|
||||||
|
var newList = findList(listId, item);
|
||||||
|
var oldList = item.closest('div.closet-list');
|
||||||
|
var hangersWrapper = newList.find('div.closet-list-hangers');
|
||||||
item.insertIntoSortedList(hangersWrapper, compareItemsByName);
|
item.insertIntoSortedList(hangersWrapper, compareItemsByName);
|
||||||
|
updateListHangersCount(oldList);
|
||||||
|
updateListHangersCount(newList);
|
||||||
}
|
}
|
||||||
|
|
||||||
function submitUpdateForm(form) {
|
function submitUpdateForm(form) {
|
||||||
|
@ -427,11 +438,11 @@
|
||||||
group.find('div.closet-list').droppable({
|
group.find('div.closet-list').droppable({
|
||||||
accept: '#' + group.attr('id') + ' div.object',
|
accept: '#' + group.attr('id') + ' div.object',
|
||||||
activate: function () {
|
activate: function () {
|
||||||
$(this).find('.closet-list-hangers').animate({opacity: 0, height: 100}, 250);
|
$(this).find('.closet-list-content').animate({opacity: 0, height: 100}, 250);
|
||||||
},
|
},
|
||||||
activeClass: 'droppable-active',
|
activeClass: 'droppable-active',
|
||||||
deactivate: function () {
|
deactivate: function () {
|
||||||
$(this).find('.closet-list-hangers').css('height', 'auto').animate({opacity: 1}, 250);
|
$(this).find('.closet-list-content').css('height', 'auto').animate({opacity: 1}, 250);
|
||||||
},
|
},
|
||||||
drop: function (e, ui) {
|
drop: function (e, ui) {
|
||||||
var form = ui.draggable.find('form.closet-hanger-update');
|
var form = ui.draggable.find('form.closet-hanger-update');
|
||||||
|
|
|
@ -801,7 +801,7 @@ body.closet_hangers-index .closet-list .visibility-form {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*display: inline;
|
*display: inline;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
margin: 0 auto;
|
margin: 0 auto 1em;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
/* line 151, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 151, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
|
@ -839,16 +839,17 @@ body.closet_hangers-index .closet-list h4 {
|
||||||
}
|
}
|
||||||
/* line 179, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 179, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list .empty-list {
|
body.closet_hangers-index .closet-list .empty-list {
|
||||||
|
display: none;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
/* line 182, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 183, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list .closet-list-controls {
|
body.closet_hangers-index .closet-list .closet-list-controls {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 1em;
|
right: 1em;
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
/* line 188, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 189, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list .closet-list-controls a, body.closet_hangers-index .closet-list .closet-list-controls input[type=submit] {
|
body.closet_hangers-index .closet-list .closet-list-controls a, body.closet_hangers-index .closet-list .closet-list-controls input[type=submit] {
|
||||||
/* http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html */
|
/* http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html */
|
||||||
-moz-border-radius: 5px;
|
-moz-border-radius: 5px;
|
||||||
|
@ -889,32 +890,36 @@ body.closet_hangers-index .closet-list .closet-list-controls a:active, body.clos
|
||||||
body.closet_hangers-index .closet-list .closet-list-controls a:hover, body.closet_hangers-index .closet-list .closet-list-controls input[type=submit]:hover {
|
body.closet_hangers-index .closet-list .closet-list-controls a:hover, body.closet_hangers-index .closet-list .closet-list-controls input[type=submit]:hover {
|
||||||
background-color: #999999;
|
background-color: #999999;
|
||||||
}
|
}
|
||||||
/* line 191, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 192, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list .closet-list-controls form {
|
body.closet_hangers-index .closet-list .closet-list-controls form {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
/* line 195, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 196, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
|
body.closet_hangers-index .closet-list[data-hangers-count="0"] .empty-list {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
/* line 200, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list.unlisted h4 {
|
body.closet_hangers-index .closet-list.unlisted h4 {
|
||||||
font-size: 125%;
|
font-size: 125%;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
/* line 201, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 206, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list:hover .closet-list-controls {
|
body.closet_hangers-index .closet-list:hover .closet-list-controls {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
/* line 205, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 210, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list:hover .visibility-form input[type=submit] {
|
body.closet_hangers-index .closet-list:hover .visibility-form input[type=submit] {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
/* line 208, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 213, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list:hover .visibility-form select {
|
body.closet_hangers-index .closet-list:hover .visibility-form select {
|
||||||
border-color: #aaddaa;
|
border-color: #aaddaa;
|
||||||
}
|
}
|
||||||
/* line 211, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 216, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list:last-child {
|
body.closet_hangers-index .closet-list:last-child {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
/* line 214, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 219, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list.droppable-active {
|
body.closet_hangers-index .closet-list.droppable-active {
|
||||||
-moz-border-radius: 1em;
|
-moz-border-radius: 1em;
|
||||||
-webkit-border-radius: 1em;
|
-webkit-border-radius: 1em;
|
||||||
|
@ -925,49 +930,49 @@ body.closet_hangers-index .closet-list.droppable-active {
|
||||||
border-style: dotted;
|
border-style: dotted;
|
||||||
margin: 1em 0;
|
margin: 1em 0;
|
||||||
}
|
}
|
||||||
/* line 221, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 226, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list.droppable-active .object {
|
body.closet_hangers-index .closet-list.droppable-active .object {
|
||||||
-moz-opacity: 0.25;
|
-moz-opacity: 0.25;
|
||||||
-webkit-opacity: 0.25;
|
-webkit-opacity: 0.25;
|
||||||
-o-opacity: 0.25;
|
-o-opacity: 0.25;
|
||||||
-khtml-opacity: 0.25;
|
-khtml-opacity: 0.25;
|
||||||
}
|
}
|
||||||
/* line 225, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 230, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list.droppable-active .object.ui-draggable-dragging {
|
body.closet_hangers-index .closet-list.droppable-active .object.ui-draggable-dragging {
|
||||||
-moz-opacity: 1;
|
-moz-opacity: 1;
|
||||||
-webkit-opacity: 1;
|
-webkit-opacity: 1;
|
||||||
-o-opacity: 1;
|
-o-opacity: 1;
|
||||||
-khtml-opacity: 1;
|
-khtml-opacity: 1;
|
||||||
}
|
}
|
||||||
/* line 228, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 233, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list.droppable-active .closet-list-controls {
|
body.closet_hangers-index .closet-list.droppable-active .closet-list-controls {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
/* line 231, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 236, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list.droppable-active .closet-list-hangers {
|
body.closet_hangers-index .closet-list.droppable-active .closet-list-hangers {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
/* line 235, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 240, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-hangers-group-autocomplete-item span, body.closet_hangers-index .closet-list-autocomplete-item span {
|
body.closet_hangers-index .closet-hangers-group-autocomplete-item span, body.closet_hangers-index .closet-list-autocomplete-item span {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
padding: 0.2em 0.4em;
|
padding: 0.2em 0.4em;
|
||||||
}
|
}
|
||||||
/* line 240, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 245, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index .closet-list-autocomplete-item a, body.closet_hangers-index .closet-list-autocomplete-item span {
|
body.closet_hangers-index .closet-list-autocomplete-item a, body.closet_hangers-index .closet-list-autocomplete-item span {
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
padding-left: 2em;
|
padding-left: 2em;
|
||||||
}
|
}
|
||||||
/* line 247, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 252, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover form {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover form {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
/* line 250, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 255, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-hanger-destroy {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-hanger-destroy {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 18px;
|
right: 18px;
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
/* line 255, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 260, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-hanger-destroy input {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-hanger-destroy input {
|
||||||
/* http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html */
|
/* http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html */
|
||||||
-moz-border-radius: 5px;
|
-moz-border-radius: 5px;
|
||||||
|
@ -1008,7 +1013,7 @@ body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-han
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-hanger-destroy input:hover {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .closet-hanger-destroy input:hover {
|
||||||
background-color: #999999;
|
background-color: #999999;
|
||||||
}
|
}
|
||||||
/* line 258, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 263, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity {
|
||||||
-moz-opacity: 1;
|
-moz-opacity: 1;
|
||||||
-webkit-opacity: 1;
|
-webkit-opacity: 1;
|
||||||
|
@ -1018,73 +1023,73 @@ body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity {
|
||||||
top: 56px;
|
top: 56px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
/* line 264, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 269, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity span {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity span {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
/* line 267, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 272, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity input[type=number] {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity input[type=number] {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
width: 2em;
|
width: 2em;
|
||||||
}
|
}
|
||||||
/* line 271, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 276, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity input[type=submit] {
|
body.closet_hangers-index.current-user #closet-hangers .object:hover .quantity input[type=submit] {
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
}
|
}
|
||||||
/* line 276, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 281, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers .object:hover .quantity {
|
body.closet_hangers-index.current-user.js #closet-hangers .object:hover .quantity {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
/* line 279, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 284, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers .object:hover .quantity input[type=number] {
|
body.closet_hangers-index.current-user.js #closet-hangers .object:hover .quantity input[type=number] {
|
||||||
width: 2.5em;
|
width: 2.5em;
|
||||||
}
|
}
|
||||||
/* line 282, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 287, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers .object:hover .quantity input[type=submit] {
|
body.closet_hangers-index.current-user.js #closet-hangers .object:hover .quantity input[type=submit] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
/* line 285, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 290, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers .object.loading {
|
body.closet_hangers-index.current-user.js #closet-hangers .object.loading {
|
||||||
background: #eeffee;
|
background: #eeffee;
|
||||||
outline: 1px solid #006600;
|
outline: 1px solid #006600;
|
||||||
}
|
}
|
||||||
/* line 289, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 294, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers .object.loading .quantity {
|
body.closet_hangers-index.current-user.js #closet-hangers .object.loading .quantity {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
/* line 292, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 297, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers .object.loading .quantity span:after {
|
body.closet_hangers-index.current-user.js #closet-hangers .object.loading .quantity span:after {
|
||||||
content: "…";
|
content: "…";
|
||||||
}
|
}
|
||||||
/* line 296, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 301, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers-contact form {
|
body.closet_hangers-index.current-user.js #closet-hangers-contact form {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
/* line 299, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 304, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers-contact .edit-contact-link, body.closet_hangers-index.current-user.js #closet-hangers-contact #cancel-contact-link {
|
body.closet_hangers-index.current-user.js #closet-hangers-contact .edit-contact-link, body.closet_hangers-index.current-user.js #closet-hangers-contact #cancel-contact-link {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
/* line 303, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 308, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers-contact.editing form {
|
body.closet_hangers-index.current-user.js #closet-hangers-contact.editing form {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
/* line 306, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 311, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js #closet-hangers-contact.editing .edit-contact-link {
|
body.closet_hangers-index.current-user.js #closet-hangers-contact.editing .edit-contact-link {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
/* line 311, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 316, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js .closet-hangers-group header .show, body.closet_hangers-index.current-user.js .closet-hangers-group header .hide {
|
body.closet_hangers-index.current-user.js .closet-hangers-group header .show, body.closet_hangers-index.current-user.js .closet-hangers-group header .hide {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
/* line 314, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 319, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js .closet-hangers-group header .hide {
|
body.closet_hangers-index.current-user.js .closet-hangers-group header .hide {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
/* line 318, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 323, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js .closet-hangers-group.hidden header .hide, body.closet_hangers-index.current-user.js .closet-hangers-group.hidden .closet-hangers-group-content {
|
body.closet_hangers-index.current-user.js .closet-hangers-group.hidden header .hide, body.closet_hangers-index.current-user.js .closet-hangers-group.hidden .closet-hangers-group-content {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
/* line 321, ../../../app/stylesheets/closet_hangers/_index.sass */
|
/* line 326, ../../../app/stylesheets/closet_hangers/_index.sass */
|
||||||
body.closet_hangers-index.current-user.js .closet-hangers-group.hidden header .show {
|
body.closet_hangers-index.current-user.js .closet-hangers-group.hidden header .show {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
@ -1105,31 +1110,32 @@ body.closet_lists-new #secondary-nav, body.closet_lists-create #secondary-nav, b
|
||||||
}
|
}
|
||||||
/* line 4, ../../../app/stylesheets/closet_lists/_form.sass */
|
/* line 4, ../../../app/stylesheets/closet_lists/_form.sass */
|
||||||
body.closet_lists-new form ul.fields, body.closet_lists-create form ul.fields, body.closet_lists-edit form ul.fields, body.closet_lists-update form ul.fields {
|
body.closet_lists-new form ul.fields, body.closet_lists-create form ul.fields, body.closet_lists-edit form ul.fields, body.closet_lists-update form ul.fields {
|
||||||
|
clear: both;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../app/stylesheets/closet_lists/_form.sass */
|
/* line 8, ../../../app/stylesheets/closet_lists/_form.sass */
|
||||||
body.closet_lists-new form ul.fields label, body.closet_lists-create form ul.fields label, body.closet_lists-edit form ul.fields label, body.closet_lists-update form ul.fields label {
|
body.closet_lists-new form ul.fields label, body.closet_lists-create form ul.fields label, body.closet_lists-edit form ul.fields label, body.closet_lists-update form ul.fields label {
|
||||||
float: left;
|
float: left;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
/* line 12, ../../../app/stylesheets/closet_lists/_form.sass */
|
/* line 13, ../../../app/stylesheets/closet_lists/_form.sass */
|
||||||
body.closet_lists-new form ul.fields li, body.closet_lists-create form ul.fields li, body.closet_lists-edit form ul.fields li, body.closet_lists-update form ul.fields li {
|
body.closet_lists-new form ul.fields li, body.closet_lists-create form ul.fields li, body.closet_lists-edit form ul.fields li, body.closet_lists-update form ul.fields li {
|
||||||
padding: 0.75em 0;
|
padding: 0.75em 0;
|
||||||
width: 25em;
|
width: 25em;
|
||||||
}
|
}
|
||||||
/* line 16, ../../../app/stylesheets/closet_lists/_form.sass */
|
/* line 17, ../../../app/stylesheets/closet_lists/_form.sass */
|
||||||
body.closet_lists-new form ul.fields input, body.closet_lists-new form ul.fields textarea, body.closet_lists-new form ul.fields select, body.closet_lists-create form ul.fields input, body.closet_lists-create form ul.fields textarea, body.closet_lists-create form ul.fields select, body.closet_lists-edit form ul.fields input, body.closet_lists-edit form ul.fields textarea, body.closet_lists-edit form ul.fields select, body.closet_lists-update form ul.fields input, body.closet_lists-update form ul.fields textarea, body.closet_lists-update form ul.fields select {
|
body.closet_lists-new form ul.fields input, body.closet_lists-new form ul.fields textarea, body.closet_lists-new form ul.fields select, body.closet_lists-create form ul.fields input, body.closet_lists-create form ul.fields textarea, body.closet_lists-create form ul.fields select, body.closet_lists-edit form ul.fields input, body.closet_lists-edit form ul.fields textarea, body.closet_lists-edit form ul.fields select, body.closet_lists-update form ul.fields input, body.closet_lists-update form ul.fields textarea, body.closet_lists-update form ul.fields select {
|
||||||
clear: both;
|
clear: both;
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 0.25em;
|
margin-top: 0.25em;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
/* line 22, ../../../app/stylesheets/closet_lists/_form.sass */
|
/* line 23, ../../../app/stylesheets/closet_lists/_form.sass */
|
||||||
body.closet_lists-new form ul.fields textarea, body.closet_lists-create form ul.fields textarea, body.closet_lists-edit form ul.fields textarea, body.closet_lists-update form ul.fields textarea {
|
body.closet_lists-new form ul.fields textarea, body.closet_lists-create form ul.fields textarea, body.closet_lists-edit form ul.fields textarea, body.closet_lists-update form ul.fields textarea {
|
||||||
height: 12em;
|
height: 12em;
|
||||||
}
|
}
|
||||||
/* line 25, ../../../app/stylesheets/closet_lists/_form.sass */
|
/* line 26, ../../../app/stylesheets/closet_lists/_form.sass */
|
||||||
body.closet_lists-new form ul.fields .hint, body.closet_lists-create form ul.fields .hint, body.closet_lists-edit form ul.fields .hint, body.closet_lists-update form ul.fields .hint {
|
body.closet_lists-new form ul.fields .hint, body.closet_lists-create form ul.fields .hint, body.closet_lists-edit form ul.fields .hint, body.closet_lists-update form ul.fields .hint {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
|
|
Loading…
Reference in a new issue