spree 0.10.1 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of spree might be problematic. Click here for more details.
- data/CHANGELOG +17 -0
- data/app/controllers/admin/images_controller.rb +26 -35
- data/app/controllers/checkouts_controller.rb +3 -1
- data/app/controllers/spree/base_controller.rb +4 -4
- data/app/helpers/checkouts_helper.rb +1 -0
- data/app/models/address.rb +1 -0
- data/app/models/checkout.rb +2 -1
- data/app/models/coupon.rb +0 -1
- data/app/models/product.rb +8 -1
- data/app/models/variant.rb +1 -1
- data/config/database.yml +27 -43
- data/config/environment.rb +1 -1
- data/config/environments/test.rb +2 -1
- data/config/initializers/workarounds_for_ruby19.rb +25 -0
- data/config/locales/vn.yml +36 -36
- data/db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb +6 -0
- data/db/schema.rb +2 -1
- data/lib/spree.rb +1 -1
- data/lib/tasks/rspec.rake +0 -1
- data/public/javascripts/admin/checkouts/edit.js +17 -0
- data/public/stylesheets/admin/admin-tables.css +4 -0
- data/test/unit/checkout_test.rb +12 -0
- data/test/unit/creditcard_test.rb +4 -2
- data/vendor/extensions/overview_dashboard/app/controllers/admin/overview_controller.rb +12 -2
- data/vendor/extensions/overview_dashboard/public/javascripts/dashboard.js +2 -2
- data/vendor/extensions/payment_gateway/app/models/gateway/authorize_net_cim.rb +5 -3
- data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +1 -5
- data/vendor/extensions/theme_default/app/views/admin/product_groups/edit.html.erb +1 -1
- metadata +3 -11
- data/public/stylesheets/admin/edit-checkouts.css +0 -57
- data/public/stylesheets/bundle_admin.css +0 -484
- data/public/stylesheets/bundle_calendar_date_select.css +0 -137
- data/public/stylesheets/bundle_compiled.css +0 -459
- data/public/stylesheets/compiled/ie.css +0 -60
- data/public/stylesheets/compiled/print.css +0 -62
- data/public/stylesheets/compiled/screen.css +0 -1490
- data/vendor/extensions/theme_default/app/stylesheets/screen.css +0 -11
@@ -2,12 +2,18 @@ class AddCountOnHandToVariantsAndProducts < ActiveRecord::Migration
|
|
2
2
|
def self.up
|
3
3
|
add_column :variants, :count_on_hand, :integer, :default => 0, :null => false
|
4
4
|
add_column :products, :count_on_hand, :integer, :default => 0, :null => false
|
5
|
+
|
6
|
+
# In some cases needed to reflect changes in table structure
|
7
|
+
Variant.reset_column_information
|
8
|
+
Product.reset_column_information
|
9
|
+
|
5
10
|
say_with_time 'Transfering inventory units with status on_hand to variants table...' do
|
6
11
|
Variant.all.each do |v|
|
7
12
|
v.update_attribute(:count_on_hand, v.inventory_units.with_state("on_hand").size)
|
8
13
|
InventoryUnit.destroy_all(:variant_id => v.id, :state => "on_hand")
|
9
14
|
end
|
10
15
|
end
|
16
|
+
|
11
17
|
say_with_time 'Updating products count on hand' do
|
12
18
|
Product.all.each do |p|
|
13
19
|
product_count_on_hand = p.has_variants? ?
|
data/db/schema.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
#
|
10
10
|
# It's strongly recommended to check this file into your version control system.
|
11
11
|
|
12
|
-
ActiveRecord::Schema.define(:version =>
|
12
|
+
ActiveRecord::Schema.define(:version => 20100317120946) do
|
13
13
|
|
14
14
|
create_table "addresses", :force => true do |t|
|
15
15
|
t.string "firstname"
|
@@ -52,6 +52,7 @@ ActiveRecord::Schema.define(:version => 20100306153445) do
|
|
52
52
|
t.datetime "attachment_updated_at"
|
53
53
|
t.integer "attachment_width"
|
54
54
|
t.integer "attachment_height"
|
55
|
+
t.text "alt"
|
55
56
|
end
|
56
57
|
|
57
58
|
add_index "assets", ["viewable_id"], :name => "index_assets_on_viewable_id"
|
data/lib/spree.rb
CHANGED
data/lib/tasks/rspec.rake
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
gem 'test-unit', '2.0.3' if RUBY_VERSION.to_f >= 1.9
|
2
1
|
rspec_gem_dir = nil
|
3
2
|
Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir|
|
4
3
|
rspec_gem_dir = subdir if subdir.gsub("#{RAILS_ROOT}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb")
|
@@ -75,5 +75,22 @@ jQuery(document).ready(function(){
|
|
75
75
|
}
|
76
76
|
});
|
77
77
|
|
78
|
+
|
79
|
+
$('input#checkout_use_billing').click(function() {
|
80
|
+
show_billing(!this.checked);
|
81
|
+
});
|
82
|
+
|
83
|
+
var show_billing = function(show) {
|
84
|
+
if(show) {
|
85
|
+
$('#shipping').show();
|
86
|
+
$('#shipping input').removeAttr('disabled', 'disabled');
|
87
|
+
$('#shipping select').removeAttr('disabled', 'disabled');
|
88
|
+
} else {
|
89
|
+
$('#shipping').hide();
|
90
|
+
$('#shipping input').attr('disabled', 'disabled');
|
91
|
+
$('#shipping select').attr('disabled', 'disabled');
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
78
95
|
});
|
79
96
|
|
@@ -6,6 +6,10 @@ table.index th {
|
|
6
6
|
border-right: 1px solid #aaa;
|
7
7
|
border-bottom: 1px solid #aaa;
|
8
8
|
text-shadow: #efefef 1px 1px 0px; }
|
9
|
+
table.index th .right {
|
10
|
+
float:right;
|
11
|
+
font-weight:normal;
|
12
|
+
}
|
9
13
|
table.index th.id-col {
|
10
14
|
text-align: center; }
|
11
15
|
table.index td {
|
data/test/unit/checkout_test.rb
CHANGED
@@ -102,5 +102,17 @@ class CheckoutTest < ActiveSupport::TestCase
|
|
102
102
|
assert_equal [@country], Checkout.countries
|
103
103
|
end
|
104
104
|
end
|
105
|
+
end
|
106
|
+
context "Checkout state machine with no Gateway configured" do
|
107
|
+
setup do
|
108
|
+
Gateway.stub!(:current, :return => nil)
|
109
|
+
@order = Factory(:order_with_totals)
|
110
|
+
@checkout = @order.checkout
|
111
|
+
@checkout.state = 'payment'
|
112
|
+
@checkout.next!
|
113
|
+
end
|
114
|
+
should "transition to complete" do
|
115
|
+
assert_equal @checkout.state, "complete"
|
116
|
+
end
|
105
117
|
end
|
106
118
|
end
|
@@ -1,12 +1,14 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class CreditcardTest < ActiveSupport::TestCase
|
4
|
-
fixtures :payment_methods
|
5
4
|
|
6
5
|
context Creditcard do
|
7
6
|
# NOTE: We want to test a real creditcard so we can't use the factory directly since it uses a hacked model to make
|
8
7
|
# testing easier.
|
9
|
-
setup
|
8
|
+
setup do
|
9
|
+
Gateway.stub!(:current, :return => Gateway::Bogus.new)
|
10
|
+
@creditcard = Creditcard.new(Factory.attributes_for(:creditcard))
|
11
|
+
end
|
10
12
|
|
11
13
|
context "save when configured to store credit card info" do
|
12
14
|
setup do
|
@@ -57,16 +57,26 @@ class Admin::OverviewController < Admin::BaseController
|
|
57
57
|
["completed_at >= ?", params[:from]]
|
58
58
|
end
|
59
59
|
end
|
60
|
+
|
61
|
+
def fill_empty_entries(orders, params)
|
62
|
+
from_date = params[:from].to_date
|
63
|
+
to_date = (params[:to] || Time.now).to_date
|
64
|
+
(from_date..to_date).each do |date|
|
65
|
+
orders[date] ||= []
|
66
|
+
end
|
67
|
+
end
|
60
68
|
|
61
69
|
def orders_by_day(params)
|
62
70
|
|
63
71
|
if params[:value] == "Count"
|
64
72
|
orders = Order.find(:all, :select => 'created_at', :conditions => conditions(params))
|
65
|
-
orders = orders.group_by { |o| o.created_at.
|
73
|
+
orders = orders.group_by { |o| o.created_at.to_date }
|
74
|
+
fill_empty_entries(orders, params)
|
66
75
|
orders.keys.sort.map {|key| [key.strftime('%Y-%m-%d'), orders[key].size ]}
|
67
76
|
else
|
68
77
|
orders = Order.find(:all, :select => 'total, created_at', :conditions => conditions(params))
|
69
|
-
orders = orders.group_by { |o| o.created_at.
|
78
|
+
orders = orders.group_by { |o| o.created_at.to_date }
|
79
|
+
fill_empty_entries(orders, params)
|
70
80
|
orders.keys.sort.map {|key| [key.strftime('%Y-%m-%d'), orders[key].inject(0){|s,o| s += o.total} ]}
|
71
81
|
end
|
72
82
|
end
|
@@ -64,7 +64,7 @@ jQuery(document).ready(function(){
|
|
64
64
|
fontSize: '10pt',
|
65
65
|
textColor: '#476D9B'
|
66
66
|
},
|
67
|
-
min:
|
67
|
+
min: 0
|
68
68
|
},
|
69
69
|
xaxis:{
|
70
70
|
renderer:$.jqplot.DateAxisRenderer,
|
@@ -140,4 +140,4 @@ jQuery(document).ready(function(){
|
|
140
140
|
});
|
141
141
|
|
142
142
|
|
143
|
-
});
|
143
|
+
});
|
@@ -27,8 +27,8 @@ class Gateway::AuthorizeNetCim < Gateway
|
|
27
27
|
create_transaction(amount, creditcard, :refund, :trans_id => response_code)
|
28
28
|
end
|
29
29
|
|
30
|
-
def void(
|
31
|
-
create_transaction(
|
30
|
+
def void(response_code, creditcard, gateway_options)
|
31
|
+
create_transaction(nil, creditcard, :void, :trans_id => response_code)
|
32
32
|
end
|
33
33
|
|
34
34
|
def payment_profiles_supported?
|
@@ -52,7 +52,9 @@ class Gateway::AuthorizeNetCim < Gateway
|
|
52
52
|
def create_transaction(amount, creditcard, transaction_type, options = {})
|
53
53
|
#create_profile(creditcard, creditcard.gateway_options)
|
54
54
|
creditcard.save
|
55
|
-
|
55
|
+
if amount
|
56
|
+
amount = "%.2f" % (amount/100.0) # This gateway requires formated decimal, not cents
|
57
|
+
end
|
56
58
|
transaction_options = {
|
57
59
|
:type => transaction_type,
|
58
60
|
:amount => amount,
|
@@ -67,11 +67,7 @@ module Spree
|
|
67
67
|
def void(payment)
|
68
68
|
return unless transaction = purchase_or_authorize_transaction_for_payment(payment)
|
69
69
|
|
70
|
-
|
71
|
-
response = payment_gateway.credit((transaction.amount * 100).round, self, transaction.response_code, minimal_gateway_options(payment))
|
72
|
-
else
|
73
|
-
response = payment_gateway.void(transaction.response_code, minimal_gateway_options(payment))
|
74
|
-
end
|
70
|
+
response = payment_gateway.void(transaction.response_code, self, minimal_gateway_options(payment))
|
75
71
|
gateway_error_from_response(response) unless response.success?
|
76
72
|
|
77
73
|
# create a transaction to reflect the void
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<% end %>
|
19
19
|
|
20
20
|
<table id="product_scopes">
|
21
|
-
<%= render :partial => 'product_scope', :collection => @product_group.product_scopes.
|
21
|
+
<%= render :partial => 'product_scope', :collection => @product_group.product_scopes.reject {|s| s.is_ordering? } %>
|
22
22
|
</table>
|
23
23
|
|
24
24
|
<%= button t("update") %>
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 10
|
8
|
-
-
|
9
|
-
version: 0.10.
|
8
|
+
- 2
|
9
|
+
version: 0.10.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Sean Schofield
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-03-
|
17
|
+
date: 2010-03-25 00:00:00 -04:00
|
18
18
|
default_executable: spree
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -1372,18 +1372,11 @@ files:
|
|
1372
1372
|
- public/stylesheets/admin/admin-typography.css
|
1373
1373
|
- public/stylesheets/admin/admin.css
|
1374
1374
|
- public/stylesheets/admin/dashboard.css
|
1375
|
-
- public/stylesheets/admin/edit-checkouts.css
|
1376
1375
|
- public/stylesheets/admin/edit_checkouts.css
|
1377
1376
|
- public/stylesheets/admin/edit_orders.css
|
1378
1377
|
- public/stylesheets/admin/grids.css
|
1379
1378
|
- public/stylesheets/admin/reset-fonts-grids-2-6-0.css
|
1380
1379
|
- public/stylesheets/admin/yui-includes.css
|
1381
|
-
- public/stylesheets/bundle_admin.css
|
1382
|
-
- public/stylesheets/bundle_calendar_date_select.css
|
1383
|
-
- public/stylesheets/bundle_compiled.css
|
1384
|
-
- public/stylesheets/compiled/ie.css
|
1385
|
-
- public/stylesheets/compiled/print.css
|
1386
|
-
- public/stylesheets/compiled/screen.css
|
1387
1380
|
- public/stylesheets/datepicker.css
|
1388
1381
|
- public/stylesheets/jquery.autocomplete.css
|
1389
1382
|
- public/stylesheets/scaffold.css
|
@@ -1901,7 +1894,6 @@ files:
|
|
1901
1894
|
- vendor/extensions/theme_default/app/stylesheets/_registration.less
|
1902
1895
|
- vendor/extensions/theme_default/app/stylesheets/_reset.less
|
1903
1896
|
- vendor/extensions/theme_default/app/stylesheets/_typography.less
|
1904
|
-
- vendor/extensions/theme_default/app/stylesheets/screen.css
|
1905
1897
|
- vendor/extensions/theme_default/app/stylesheets/screen.less
|
1906
1898
|
- vendor/extensions/theme_default/app/views/account/login.html.erb
|
1907
1899
|
- vendor/extensions/theme_default/app/views/admin/adjustments/_form.html.erb
|
@@ -1,57 +0,0 @@
|
|
1
|
-
.ac_results {
|
2
|
-
padding: 0px;
|
3
|
-
border: 1px solid black;
|
4
|
-
background-color: white;
|
5
|
-
overflow: hidden;
|
6
|
-
z-index: 99999;
|
7
|
-
}
|
8
|
-
|
9
|
-
.ac_results ul {
|
10
|
-
width: 100%;
|
11
|
-
list-style-position: outside;
|
12
|
-
list-style: none;
|
13
|
-
padding: 0;
|
14
|
-
margin: 0;
|
15
|
-
}
|
16
|
-
|
17
|
-
.ac_results li {
|
18
|
-
margin: 0px;
|
19
|
-
padding: 5px 5px;
|
20
|
-
cursor: default;
|
21
|
-
display: block;
|
22
|
-
/*
|
23
|
-
if width will be 100% horizontal scrollbar will apear
|
24
|
-
when scroll mode will be used
|
25
|
-
*/
|
26
|
-
/*width: 100%;*/
|
27
|
-
font: menu;
|
28
|
-
font-size: 12px;
|
29
|
-
/*
|
30
|
-
it is very important, if line-height not setted or setted
|
31
|
-
in relative units scroll will be broken in firefox
|
32
|
-
*/
|
33
|
-
line-height: 16px;
|
34
|
-
overflow: hidden;
|
35
|
-
border-bottom: 1px solid black;
|
36
|
-
color: #000;
|
37
|
-
cursor: pointer;
|
38
|
-
}
|
39
|
-
|
40
|
-
.ac_results li h4 {
|
41
|
-
margin-bottom: 3px;
|
42
|
-
}
|
43
|
-
.ac_results li span{
|
44
|
-
display: block;
|
45
|
-
}
|
46
|
-
.ac_loading {
|
47
|
-
background: none;
|
48
|
-
}
|
49
|
-
.ac_odd {
|
50
|
-
background-color: #fff;
|
51
|
-
}
|
52
|
-
.ac_over {
|
53
|
-
background-color: #fff;
|
54
|
-
}
|
55
|
-
.ac_over h4{
|
56
|
-
text-decoration: underline;
|
57
|
-
}
|
@@ -1,484 +0,0 @@
|
|
1
|
-
label{font-weight:bold;}
|
2
|
-
fieldset{padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
|
3
|
-
legend{font-weight:bold;font-size:1.2em;margin:0;}
|
4
|
-
input.text,input.title,input,textarea,select{margin:.25em 0;border:1px solid #bbb;}
|
5
|
-
input.text:focus,input.title:focus,textarea:focus,select:focus{border:1px solid #666;}
|
6
|
-
input.text,input.title{padding:5px;}
|
7
|
-
input.title{font-size:1.5em;}
|
8
|
-
textarea{height:250px;padding:5px;}
|
9
|
-
.required{color:#f00;font-weight:bold;font-size:1.2em;}
|
10
|
-
.fullwidth{width:98%;}
|
11
|
-
.sub-field{margin:0;padding:0;margin:0 0 .25em 0;}
|
12
|
-
.sub-field label,label.sub{font-weight:normal;color:#333;}
|
13
|
-
.sub-field input{margin-bottom:0;}
|
14
|
-
.date-range-filter{width:220px;}
|
15
|
-
.date-range-filter input{width:75px;}
|
16
|
-
.date-range-filter .yui-u{width:50%;}
|
17
|
-
div.split{background-color:#eee;}
|
18
|
-
form div.left{display:inline;float:left;width:48%;}
|
19
|
-
form div.right{display:inline;float:right;width:48%;}
|
20
|
-
form p{clear:both;}
|
21
|
-
form div.left.w70{width:68%;}
|
22
|
-
form div.right.w30{width:28%;}
|
23
|
-
.flash{font-size:130%;font-weight:bold;padding:.4em 0 .4em 38px;margin-bottom:1em;border:1px solid #c00;border-left:none;border-right:none;}
|
24
|
-
.flash.error{background:#FDE4E4 url(../../images/admin/icons/exclamation.png) 10px center no-repeat;color:#c00;border-color:#c00;}
|
25
|
-
.flash.notice{background:#E7F8D7 url(../../images/admin/icons/tick.png) 10px center no-repeat;color:#59A151;border-color:#59A151;}
|
26
|
-
.withError{background-color:#FDE4E4;background-image:url(../../images/admin/bg/red-stripes.png);}
|
27
|
-
.formError{color:#c00;font-weight:bold;display:block;}
|
28
|
-
.member-list{list-style:none;margin:0;}
|
29
|
-
.form-buttons{margin-top:1em;clear:both;}
|
30
|
-
.form-buttons a{text-transform:lowercase;}
|
31
|
-
.field{margin-bottom:1em;clear:both;position:relative;}
|
32
|
-
.field .formError{color:#fff;background:#f15700 url(../../images/admin/icons/fugue/exclamation_small.png) center left no-repeat;padding:3px 7px;display:inline-block;margin-bottom:1em;padding-left:20px;}
|
33
|
-
.field.fluid{clear:none;float:left;margin-right:1em;}
|
34
|
-
.field label{display:block;}
|
35
|
-
.field label span.label{display:block;}
|
36
|
-
fieldset{margin-bottom:1em;padding:1em;border:solid 1px #ccc;-moz-border-radius:10px;-webkit-border-radius:10px;}
|
37
|
-
fieldset h1{font-size:1.75em;}
|
38
|
-
fieldset table.index th:first-child{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;}
|
39
|
-
fieldset table.index th:last-child{-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;}
|
40
|
-
html,body{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
|
41
|
-
div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,pre,a,abbr,acronym,address,code,del,dfn,em,img,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,tbody,tfoot,thead,tr,hr{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
|
42
|
-
body{line-height:1.5;}
|
43
|
-
blockquote,q{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;quotes:"" "";}
|
44
|
-
blockquote:before,blockquote:after,q:before,q:after{content:"";}
|
45
|
-
th,td,caption{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;text-align:left;font-weight:normal;vertical-align:top;}
|
46
|
-
table{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;border-collapse:separate;border-spacing:0;vertical-align:middle;}
|
47
|
-
a img{border:none;}
|
48
|
-
table.index th{background:#cdcdcd url(../../images/admin/bg/grid_header_back.png) top left repeat-x;padding:7px 10px;border-left:1px solid #ddd;border-top:1px solid #ddd;border-right:1px solid #aaa;border-bottom:1px solid #aaa;text-shadow:#efefef 1px 1px 0;}
|
49
|
-
table.index th.id-col{text-align:center;}
|
50
|
-
table.index td{border-bottom:1px solid #ddd;padding:3px 10px;}
|
51
|
-
table.index tr.alt td{background-color:#efefef;}
|
52
|
-
table.index.green th{background:#cfefa7 url(/images/grid_header_back_green.png) top left repeat-x;border-left:1px solid #E4FDB4;border-top:1px solid #E4FDB4;border-right:1px solid #B7CB90;border-bottom:1px solid #B7CB90;}
|
53
|
-
table.index.green td{background-color:#efe;}
|
54
|
-
table.index.order-summary{clear:both;}
|
55
|
-
table.index.order-summary tr.totals th{background:transparent;text-align:right;border:none;}
|
56
|
-
table.index td.actions{text-align:right;}
|
57
|
-
body{font-size:75%;color:#222;font-family:"Helvetica Neue",Helvetica,Tahoma,Verdana,Arial,sans-serif;}
|
58
|
-
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#111;}
|
59
|
-
h1{font-size:2.5em;margin-bottom:.75em;line-height:1em;}
|
60
|
-
h2{font-size:1.5em;line-height:1;margin-bottom:.6em;}
|
61
|
-
h3{font-size:1.5em;line-height:1.25;margin-bottom:.6em;}
|
62
|
-
h4{font-size:1em;font-weight:bold;margin-bottom:1.5em;}
|
63
|
-
h5{font-size:1em;font-weight:bold;}
|
64
|
-
h6{font-weight:normal;}
|
65
|
-
h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0;}
|
66
|
-
h1,h2{letter-spacing:-1px;}
|
67
|
-
p{margin:0 0 1em;}
|
68
|
-
p img.left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}
|
69
|
-
p img.right{float:right;margin:1.5em 0 1.5em 1.5em;}
|
70
|
-
a:focus,a:hover{color:#000;}
|
71
|
-
a{color:#009;text-decoration:none;}
|
72
|
-
blockquote{margin:1.5em;color:#666;font-style:italic;}
|
73
|
-
strong{font-weight:bold;}
|
74
|
-
em,dfn{font-style:italic;}
|
75
|
-
dfn{font-weight:bold;}
|
76
|
-
sup,sub{line-height:0;}
|
77
|
-
abbr,acronym{border-bottom:1px dotted #666;}
|
78
|
-
address{margin:0 0 1.5em;font-style:italic;}
|
79
|
-
del{color:#666;}
|
80
|
-
pre{margin:1.5em 0;white-space:pre;}
|
81
|
-
pre,code,tt{font:1em 'andale mono','lucida console',monospace;line-height:1.5;}
|
82
|
-
li ul,li ol{margin:0 1.5em;}
|
83
|
-
ul,ol{margin:0 1.5em 1.5em 1.5em;}
|
84
|
-
ul{list-style-type:disc;}
|
85
|
-
ol{list-style-type:decimal;}
|
86
|
-
dl{margin:0 0 1.5em 0;}
|
87
|
-
dl dt{font-weight:bold;}
|
88
|
-
dd{margin-left:1.5em;}
|
89
|
-
table{margin-bottom:1.4em;width:100%;}
|
90
|
-
th{font-weight:bold;}
|
91
|
-
thead th{background:#c3d9ff;}
|
92
|
-
th,td,caption{padding:4px 10px 4px 5px;}
|
93
|
-
tr.even td{background:#e5ecf9;}
|
94
|
-
tfoot{font-style:italic;}
|
95
|
-
caption{background:#eee;}
|
96
|
-
hr{clear:both;height:0;border:none;}
|
97
|
-
.small{font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
|
98
|
-
.large{font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
|
99
|
-
.hide{display:none;}
|
100
|
-
.quiet{color:#666;}
|
101
|
-
.loud{color:#000;}
|
102
|
-
.highlight{background:#ff0;}
|
103
|
-
.added{background:#060;color:#fff;}
|
104
|
-
.removed{background:#900;color:#fff;}
|
105
|
-
.first{margin-left:0;padding-left:0;}
|
106
|
-
.last{margin-right:0;padding-right:0;}
|
107
|
-
.top{margin-top:0;padding-top:0;}
|
108
|
-
.bottom{margin-bottom:0;padding-bottom:0;}
|
109
|
-
.clear{clear:both;}
|
110
|
-
.nowrap{white-space:nowrap;}
|
111
|
-
.clearfix{overflow:auto;overflow:-moz-scrollbars-none;display:inline-block;}
|
112
|
-
.clearfix{display:block;}
|
113
|
-
#language-bar,#login-nav,#store-nav{float:right;margin-top:10px;}
|
114
|
-
#language-bar li,#login-nav li,#store-nav li{float:left;margin-right:1em;list-style:none;}
|
115
|
-
.address-form label,#creditcard label{width:200px;display:block;float:left;}
|
116
|
-
#creditcard label{width:150px;}
|
117
|
-
input.default{color:#999;}
|
118
|
-
input.default:focus{color:inherit;}
|
119
|
-
p.help-text{font-style:italic;font-weight:normal;margin-bottom:0;color:#999;}
|
120
|
-
body{background-color:#162F54;color:#476D9B;}
|
121
|
-
a{color:#4884BD;}
|
122
|
-
a:active,a:visited{color:#4884BD;}
|
123
|
-
#header,#footer{position:relative;clear:both;}
|
124
|
-
#content{margin:0 1em 1em 1em;padding:1em;background:#fff;color:#111;min-height:500px;}
|
125
|
-
#content a{color:#3C7DFB;}
|
126
|
-
#content a:active,#content a:visited{color:#3C7DFB;}
|
127
|
-
#content.with-sidebar{background:#fff url(../../images/admin/bg/content-back.png) right top repeat-y;padding-right:340px;position:relative;}
|
128
|
-
#sidebar{position:absolute;width:305px;top:0;right:0;padding-top:3em;}
|
129
|
-
#sidebar .box{padding:10px;}
|
130
|
-
#sidebar .box h3{margin:0 0 10px 0;}
|
131
|
-
#sidebar h3{margin:0 10px;}
|
132
|
-
#sidebar h3 a{color:#111;text-decoration:none;}
|
133
|
-
#sidebar span.sku{display:block;font-weight:normal;}
|
134
|
-
#sidebar img{float:right;margin-right:1em;}
|
135
|
-
#sidebar img.calendar_date_select_popup_icon{float:none;}
|
136
|
-
#sidebar .field{padding:0 1em;}
|
137
|
-
#sidebar .form-buttons{padding:0 1em;}
|
138
|
-
#sidebar h4{margin-left:10px;}
|
139
|
-
#sidebar ul.sidebar{clear:both;position:relative;margin:0;padding:0;}
|
140
|
-
#sidebar ul.sidebar li{list-style:none;}
|
141
|
-
#sidebar ul.sidebar li a{display:block;padding:10px 20px 10px;outline:none;text-decoration:none;color:#666!important;}
|
142
|
-
#sidebar ul.sidebar li a:hover{background-color:#ddd;}
|
143
|
-
#sidebar ul.sidebar li.active a{font-weight:bold;background:url(../../images/admin/bg/menu-current.png) left center no-repeat;color:#363!important;margin-left:-20px;padding-left:30px;}
|
144
|
-
#sidebar .order-number,#sidebar .order-status{text-align:right;margin-right:20px;}
|
145
|
-
#sidebar .order-status{padding:7px 15px;-moz-border-radius:3px;-webkit-border-radius:3px;float:right;background-color:#999;color:#111;text-transform:uppercase;}
|
146
|
-
#sidebar .order-status.new{background-color:#5D9C0F;color:#fff;}
|
147
|
-
#sidebar .order-status.canceled{background-color:#c00;color:#fff;}
|
148
|
-
h1.logo{float:left;margin:20px 10px 10px 10px;}
|
149
|
-
h1.logo a{background:url(../../images/admin/bg/spree_50.png) left center no-repeat;padding-left:120px;display:block;height:50px;text-decoration:none;line-height:50px;color:#BBDAFD;}
|
150
|
-
#admin-menu{clear:both;}
|
151
|
-
#admin-menu,#sub-menu{margin:0 1em;}
|
152
|
-
#admin-menu ul,#sub-menu ul{padding:0;margin:0;}
|
153
|
-
#admin-menu ul li,#sub-menu ul li{float:left;margin-right:1em;list-style:none;}
|
154
|
-
#admin-menu ul li,#sub-menu ul li{margin-right:0;margin-bottom:-1px;}
|
155
|
-
#admin-menu ul li a,#sub-menu ul li a{display:block;padding:10px 20px;color:#fff;text-decoration:none;outline:none;}
|
156
|
-
#admin-menu ul li.selected a,#sub-menu ul li.selected a{background-color:#0095da;}
|
157
|
-
#admin-menu ul li.selected{border-bottom:1px solid #0095DA;}
|
158
|
-
#IE7 #admin-menu{height:39px;}
|
159
|
-
#admin-menu{background:#154e8c url(../../images/admin/bg/admin_tab_back.png) top left repeat-x;border-top:1px solid #4B83E2;border-right:1px solid #34599B;border-bottom:1px solid #41A6F0;}
|
160
|
-
#admin-menu ul{margin-bottom:-1px;}
|
161
|
-
#admin-menu ul li:first-child{border-left:1px solid #34599B;}
|
162
|
-
#admin-menu ul li.selected{background:#0095da url(../../images/admin/bg/admin_tab_selected_back.png) top left repeat-x;border-left:1px solid #41A6F0;border-top:1px solid #41A6F0;border-right:1px solid #4986BF;height:40px;margin-top:-2px;}
|
163
|
-
#sub-menu{background:#0095da;border-left:1px solid #41A6F0;border-right:1px solid #4986BF;}
|
164
|
-
#IE7 #sub-menu ul{height:26px;}
|
165
|
-
#sub-menu ul li a{padding:3px 7px;margin:10px 5px;color:#154e8c;background:none;}
|
166
|
-
#sub-menu ul li.selected a{background:#154e8c;color:#9BC3FC;-moz-border-radius:3px;-webkit-border-radius:3px;}
|
167
|
-
#slide-content{margin:0 1em;background-color:#cdf;}
|
168
|
-
.toolbar{float:right;margin-bottom:1em;}
|
169
|
-
.toolbar ul.actions{margin:0;padding:0;float:right;}
|
170
|
-
.toolbar ul.actions li{float:left;margin-right:1em;list-style:none;}
|
171
|
-
.toolbar ul.actions li{margin-right:0;}
|
172
|
-
.toolbar.order-links a{text-transform:capitalize;}
|
173
|
-
.search-form{display:none;padding:1em;}
|
174
|
-
.search-form label{display:block;}
|
175
|
-
a.button{background:transparent url(../../images/admin/buttons/right_01.png) no-repeat scroll top right;display:block;float:left;margin-right:6px;padding-right:20px;text-decoration:none;color:#111!important;font-weight:bold;outline:none;}
|
176
|
-
a.button span{background:transparent url(../../images/admin/buttons/left_01.png) no-repeat;display:block;line-height:22px;padding:7px 0 5px 14px;text-shadow:#efefef 1px 1px 0;}
|
177
|
-
a.button img{vertical-align:middle;margin:0 3px 0 0;}
|
178
|
-
a.button.cancel span{font-weight:normal;}
|
179
|
-
a.button.small{font-size:1em;background:transparent url(../../images/admin/buttons/right_01_small.png) no-repeat scroll top right;padding-right:20px;}
|
180
|
-
a.button.small span{background:transparent url(../../images/admin/buttons/left_01_small.png) no-repeat;padding:5px 0 3px 20px;line-height:21px;}
|
181
|
-
a.button.green{background:transparent url(../../images/admin/buttons/green/right_01.png) no-repeat scroll top right;color:#151!important;}
|
182
|
-
a.button.green span{background:transparent url(../../images/admin/buttons/green/left_01.png) no-repeat;}
|
183
|
-
button{border:0;cursor:pointer;font-weight:bold;padding:0 20px 0 0;text-align:center;background:url(../../images/admin/buttons/right_01.png) center right no-repeat;font-size:1.3em;outline:none;}
|
184
|
-
button span{position:relative;display:block;white-space:nowrap;padding:0 0 0 20px;height:35px;line-height:35px;background:url(../../images/admin/buttons/left_01.png) center left no-repeat;text-shadow:#efefef 1px 1px 0;}
|
185
|
-
button span img{vertical-align:middle;margin:0 3px 0 0;}
|
186
|
-
button:focus{outline:none;}
|
187
|
-
button.tick{background:none;width:24px;}
|
188
|
-
input.title,textarea{margin:0;}
|
189
|
-
.errorExplanation{border:solid 2px #f15700;padding:1em;margin-bottom:1em;background:#cdf;-moz-border-radius:10px;-webkit-border-radius:10px;}
|
190
|
-
.errorExplanation ul{color:#f15700;list-style:square;}
|
191
|
-
.errorExplanation h2{font-size:1.75em;padding-left:40px;background:url(../../images/admin/icons/orb/32x32/3.png) center left no-repeat;}
|
192
|
-
ul.checkbox-list{list-style:none;}
|
193
|
-
ul.checkbox-list li{display:block;float:left;width:200px;}
|
194
|
-
ul.checkbox-list li label{font-weight:normal!important;}
|
195
|
-
#busy_indicator{margin-bottom:1em;}
|
196
|
-
select#filter_state{font-size:1.5em;}
|
197
|
-
h2.order-number{margin-bottom:0;}
|
198
|
-
h4.order-status{display:block;font-weight:normal;}
|
199
|
-
.adr{float:left;margin-right:1em;margin-bottom:1em;padding:1em;border:solid 1px #999;-moz-border-radius:.5em;-webkit-border-radius:.5em;min-width:46%;}
|
200
|
-
.adr .fn{font-weight:bold;}
|
201
|
-
.adr h4{margin-bottom:1em;border-bottom:1px solid #ccc;padding-bottom:.5em;color:#666;}
|
202
|
-
ul.taxonomy-tree{cursor:default;list-style:none;margin:0;padding:0 0 0 35px;min-height:2em;}
|
203
|
-
ul.taxonomy-tree li.taxon{clear:both;padding:5px;}
|
204
|
-
ul.taxonomy-tree li.taxon span,ul.taxonomy-tree li.taxon input{float:left;margin-right:1em;}
|
205
|
-
ul.taxonomy-tree li.taxon .name{float:left;cursor:move;}
|
206
|
-
ul.taxonomy-tree li.taxon.new ul.taxonomy-actions,ul.taxonomy-tree li.taxon.editing ul.taxonomy-actions{display:none;}
|
207
|
-
ul.taxonomy-tree li.taxon.to-destroy{color:#900;text-decoration:line-through;}
|
208
|
-
ul.taxonomy-tree li.taxon.to-destroy ul.taxonomy-actions{display:none;}
|
209
|
-
.placeholder{height:30px;clear:both;border:dashed 2px #ddd;}
|
210
|
-
ul.taxonomy-actions{float:left;list-style:none;margin:0 0 10px 10px;padding:0;}
|
211
|
-
ul.taxonomy-actions li{float:left;margin-right:5px;}
|
212
|
-
ul.taxonomy-actions li img{vertical-align:text-top;}
|
213
|
-
ul.taxonomy-actions li.disabled{opacity:.5;}
|
214
|
-
h3.warning{background-image:url(../../images/admin/icons/fugue/exclamation.png);background-position:10px 15px;background-repeat:no-repeat;padding-left:35px;}
|
215
|
-
#searching{clear:both;margin-top:2em;}
|
216
|
-
.pagination{padding-top:10px;text-align:right;}
|
217
|
-
a.page,span.page{padding:0 5px;margin:0 3px;}
|
218
|
-
a.page{text-decoration:none;border:1px solid #9aafe5;color:#2e6ab1;}
|
219
|
-
a.page:hover,a.page:active{border:1px solid #2b66a5;color:#000;background-color:LightYellow;}
|
220
|
-
a.next_page{font-weight:bold;}
|
221
|
-
span.disabled_page{border:1px solid #929292;color:#929292;}
|
222
|
-
span.current_page{font-weight:bold;border:1px solid navy;background-color:#2e6ab1;color:#FFF;}
|
223
|
-
div#calculator-settings-warning{color:#f00;}
|
224
|
-
#progress{display:none;background:#154E8C url(../../images/admin/bg/admin_tab_back.png) repeat-x scroll left top;color:#fff;font-size:170%;height:25px;left:33%;padding:10px 0 15px;position:fixed;text-align:center;width:320px;font-weight:bold;-moz-border-radius-bottomleft:15px;-moz-border-radius-bottomright:15px;-webkit-border-bottom-left-radius:15px;-webkit-border-bottom-right-radius:15px;}
|
225
|
-
#progress img{vertical-align:middle;padding-right:10px;}
|
226
|
-
ul#shipping-specs{margin:0;padding-bottom:10px;}
|
227
|
-
ul#shipping-specs li{list-style-image:none;display:inline;}
|
228
|
-
.product-scopes ul>li{float:left;width:220px;margin-right:20px;}
|
229
|
-
.product-scopes .invalid{background-color:red;}
|
230
|
-
div.product-preview-products{max-height:200px;overflow:auto;}
|
231
|
-
#preference-settings input,#preference-settings select,#preference-settings textarea{float:left;}
|
232
|
-
#preference-settings input[type=text],#preference-settings input[type=password]{width:250px;}
|
233
|
-
#preference-settings input.input_integer[type=text]{width:100px;}
|
234
|
-
#preference-settings label{clear:both;display:block;float:left;width:170px;}
|
235
|
-
.index .price{width:50px;text-align:center;}
|
236
|
-
.index .qty{width:50px;text-align:center;}
|
237
|
-
.index .total{width:50px;text-align:right;}
|
238
|
-
.index .orders-actions{width:40px;padding-left:10px;}
|
239
|
-
.dashboard h2{padding-bottom:5px;color:#476D9B;clear:both;}
|
240
|
-
.dashboard_left{width:25%;float:left;}
|
241
|
-
.dashboard_main{width:55%;float:left;}
|
242
|
-
.dashboard_main #orders_by_day_options{background-color:#0095DA;-moz-border-radius-bottomleft:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-webkit-border-bottom-left-radius:10px 10px;-webkit-border-bottom-right-radius:10px 10px;-webkit-border-top-left-radius:10px 10px;-webkit-border-top-right-radius:10px 10px;color:#fff;margin-top:10px;padding:5px;text-align:center;}
|
243
|
-
#order_by_day_title{padding-bottom:5px;color:#476D9B;clear:both;}
|
244
|
-
#order_totals{background:#154E8C url(../../images/admin/bg/admin_tab_back.png) repeat-x scroll left top;-moz-border-radius-bottomleft:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-webkit-border-bottom-left-radius:10px 10px;-webkit-border-bottom-right-radius:10px 10px;-webkit-border-top-left-radius:10px 10px;-webkit-border-top-right-radius:10px 10px;color:#fff;height:62px;padding:0 10px;margin-bottom:20px;}
|
245
|
-
#order_totals hr{background-color:#fff;clear:none;float:left;height:80%;margin-top:6px;width:3px;}
|
246
|
-
#order_totals .spacer{padding:0 10px;font-size:50px;line-height:60px;color:#476D9B;}
|
247
|
-
#order_totals p{float:left;font-size:420%;font-weight:bold;line-height:60px;margin:0 5px 0 0;}
|
248
|
-
#order_totals label{font-size:200%;line-height:50px;}
|
249
|
-
#order_totals span{display:block;font-size:90%;font-weight:bold;margin-top:-10px;}
|
250
|
-
.dashboard_main #orders_by_day_options label{padding:0 10px;}
|
251
|
-
.dashboard_right{width:20%;float:left;}
|
252
|
-
.dashboard_right table th{background-color:#0095DA;color:#fff;}
|
253
|
-
.dashboard_small_wrapper{padding:0 20px 0 0;}
|
254
|
-
.dashboard_main_wrapper{padding:0 30px 10px 30px;margin-left:auto;margin-right:auto;}
|
255
|
-
#pie_legend{width:50%;float:left;font-size:80%;}
|
256
|
-
#pie_legend span{line-height:15px;width:15px;float:left;}
|
257
|
-
#pie_legend label{margin-left:5px;float:left;}
|
258
|
-
#pie_legend div{clear:both;text-align:right;}
|
259
|
-
.text-right{text-align:right;}
|
260
|
-
.jqplot-table-legend{width:60px;}
|
261
|
-
.ac_results{padding:0;border:1px solid black;background-color:white;overflow:hidden;z-index:99999;}
|
262
|
-
.ac_results ul{width:100%;list-style-position:outside;list-style:none;padding:0;margin:0;}
|
263
|
-
.ac_results li{margin:0;padding:5px 5px;cursor:default;display:block;font:menu;font-size:12px;line-height:16px;overflow:hidden;border-bottom:1px solid black;color:#000;cursor:pointer;}
|
264
|
-
.ac_results li h4{margin-bottom:3px;}
|
265
|
-
.ac_results li span{display:block;}
|
266
|
-
.ac_loading{background:none;}
|
267
|
-
.ac_odd{background-color:#fff;}
|
268
|
-
.ac_over{background-color:#fff;}
|
269
|
-
.ac_over h4{text-decoration:underline;}
|
270
|
-
.ac_results{padding:0;border:1px solid black;background-color:white;overflow:hidden;z-index:99999;}
|
271
|
-
.ac_results ul{width:100%;list-style-position:outside;list-style:none;padding:0;margin:0;}
|
272
|
-
.ac_results li{margin:0;padding:5px 5px;cursor:default;display:block;font:menu;font-size:12px;line-height:16px;overflow:hidden;border-bottom:1px solid black;color:#000;cursor:pointer;}
|
273
|
-
.ac_results li h4{margin-bottom:3px;}
|
274
|
-
.ac_results li span{display:block;}
|
275
|
-
.ac_loading{background:none;}
|
276
|
-
.ac_odd{background-color:#fff;}
|
277
|
-
.ac_over{background-color:#fff;}
|
278
|
-
.ac_over h4{text-decoration:underline;}
|
279
|
-
.ac_results{padding:0;border:1px solid black;background-color:white;overflow:hidden;z-index:99999;}
|
280
|
-
.ac_results ul{width:100%;list-style-position:outside;list-style:none;padding:0;margin:0;}
|
281
|
-
.ac_results li{margin:0;padding:5px 5px;cursor:default;display:block;font:menu;font-size:12px;line-height:16px;overflow:hidden;border-bottom:1px solid black;color:#000;cursor:pointer;}
|
282
|
-
.ac_results li img{float:left;padding-right:5px;}
|
283
|
-
.ac_results li h4{margin-bottom:3px;}
|
284
|
-
.ac_results li div{float:left;}
|
285
|
-
.ac_results li span{width:130px;display:block;float:left;}
|
286
|
-
.ac_loading{background:none;}
|
287
|
-
.ac_odd{background-color:#fff;}
|
288
|
-
.ac_over{background-color:#fff;}
|
289
|
-
.ac_over h4{text-decoration:underline;}
|
290
|
-
.yui-g .yui-u .yui-g{width:100%;}
|
291
|
-
.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}
|
292
|
-
.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}
|
293
|
-
.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}
|
294
|
-
.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}
|
295
|
-
.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}
|
296
|
-
.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}
|
297
|
-
.yui-gc div.first,.yui-gd .yui-u{width:66%;}
|
298
|
-
.yui-gd div.first{width:32%;}
|
299
|
-
.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}
|
300
|
-
.yui-ge .yui-u,.yui-gf div.first{width:24%;}
|
301
|
-
.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}
|
302
|
-
.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}
|
303
|
-
.yui-g .yui-g .yui-u{width:48.1%;}
|
304
|
-
.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}
|
305
|
-
.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}
|
306
|
-
.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}
|
307
|
-
.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}
|
308
|
-
.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}
|
309
|
-
.yui-g .yui-gb .yui-u{_margin-left:1.0%;}
|
310
|
-
.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}
|
311
|
-
.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}
|
312
|
-
.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}
|
313
|
-
.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}
|
314
|
-
.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}
|
315
|
-
.yui-gb .yui-gb .yui-u{_margin-left:.7%;}
|
316
|
-
.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}
|
317
|
-
.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}
|
318
|
-
.yui-gb .yui-gd div.first{width:32%;}
|
319
|
-
.yui-g .yui-gd div.first{_width:29.9%;}
|
320
|
-
.yui-ge .yui-g{width:24%;}
|
321
|
-
.yui-gf .yui-g{width:74.2%;}
|
322
|
-
.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}
|
323
|
-
.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}
|
324
|
-
.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}
|
325
|
-
.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}
|
326
|
-
.yui-ge div.first .yui-gd .yui-u{width:65%;}
|
327
|
-
.yui-ge div.first .yui-gd div.first{width:32%;}
|
328
|
-
#hd:after,#bd:after,#ft:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
|
329
|
-
#hd,#bd,#ft,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}
|
330
|
-
html{color:#000;background:#FFF;}
|
331
|
-
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
|
332
|
-
table{border-collapse:collapse;border-spacing:0;}
|
333
|
-
fieldset,img{border:0;}
|
334
|
-
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
|
335
|
-
li{list-style:none;}
|
336
|
-
caption,th{text-align:left;}
|
337
|
-
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
|
338
|
-
q:before,q:after{content:'';}
|
339
|
-
abbr,acronym{border:0;font-variant:normal;}
|
340
|
-
sup{vertical-align:text-top;}
|
341
|
-
sub{vertical-align:text-bottom;}
|
342
|
-
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
|
343
|
-
input,textarea,select{*font-size:100%;}
|
344
|
-
legend{color:#000;}
|
345
|
-
del,ins{text-decoration:none;}
|
346
|
-
body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
|
347
|
-
select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}
|
348
|
-
table{font-size:inherit;font:100%;}
|
349
|
-
pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
|
350
|
-
body{text-align:center;}
|
351
|
-
#ft{clear:both;}
|
352
|
-
#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.25em;min-width:750px;}
|
353
|
-
#doc2{width:73.076em;*width:71.25em;}
|
354
|
-
#doc3{margin:auto 10px;width:auto;}
|
355
|
-
#doc4{width:74.923em;*width:73.05em;}
|
356
|
-
.yui-b{position:relative;}
|
357
|
-
.yui-b{_position:static;}
|
358
|
-
#yui-main .yui-b{position:static;}
|
359
|
-
#yui-main,.yui-g .yui-u .yui-g{width:100%;}
|
360
|
-
{width:100%;}
|
361
|
-
.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}
|
362
|
-
.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}
|
363
|
-
.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}
|
364
|
-
.yui-t1 #yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}
|
365
|
-
.yui-t2 .yui-b{float:left;width:13.8461em;*width:13.50em;}
|
366
|
-
.yui-t2 #yui-main .yui-b{margin-left:14.8461em;*margin-left:14.55em;}
|
367
|
-
.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}
|
368
|
-
.yui-t3 #yui-main .yui-b{margin-left:24.0769em;*margin-left:23.62em;}
|
369
|
-
.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}
|
370
|
-
.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.55em;}
|
371
|
-
.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}
|
372
|
-
.yui-t5 #yui-main .yui-b{margin-right:19.4615em;*margin-right:19.125em;}
|
373
|
-
.yui-t6 .yui-b{float:right;width:23.0769em;*width:22.50em;}
|
374
|
-
.yui-t6 #yui-main .yui-b{margin-right:24.0769em;*margin-right:23.62em;}
|
375
|
-
.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}
|
376
|
-
#yui-main .yui-b{float:none;width:auto;}
|
377
|
-
.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}
|
378
|
-
.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}
|
379
|
-
.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}
|
380
|
-
.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}
|
381
|
-
.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}
|
382
|
-
.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}
|
383
|
-
.yui-gc div.first,.yui-gd .yui-u{width:66%;}
|
384
|
-
.yui-gd div.first{width:32%;}
|
385
|
-
.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}
|
386
|
-
.yui-ge .yui-u,.yui-gf div.first{width:24%;}
|
387
|
-
.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}
|
388
|
-
.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}
|
389
|
-
.yui-g .yui-g .yui-u{width:48.1%;}
|
390
|
-
.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}
|
391
|
-
.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}
|
392
|
-
.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}
|
393
|
-
.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}
|
394
|
-
.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}
|
395
|
-
.yui-g .yui-gb .yui-u{_margin-left:1.0%;}
|
396
|
-
.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}
|
397
|
-
.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}
|
398
|
-
.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}
|
399
|
-
.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}
|
400
|
-
.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}
|
401
|
-
.yui-gb .yui-gb .yui-u{_margin-left:.7%;}
|
402
|
-
.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}
|
403
|
-
.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}
|
404
|
-
.yui-gb .yui-gd div.first{width:32%;}
|
405
|
-
.yui-g .yui-gd div.first{_width:29.9%;}
|
406
|
-
.yui-ge .yui-g{width:24%;}
|
407
|
-
.yui-gf .yui-g{width:74.2%;}
|
408
|
-
.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}
|
409
|
-
.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}
|
410
|
-
.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}
|
411
|
-
.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}
|
412
|
-
.yui-ge div.first .yui-gd .yui-u{width:65%;}
|
413
|
-
.yui-ge div.first .yui-gd div.first{width:32%;}
|
414
|
-
#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
|
415
|
-
#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}
|
416
|
-
.yuimenubar{visibility:visible;position:static;}
|
417
|
-
.yuimenu .yuimenu,.yuimenubar .yuimenu{visibility:hidden;position:absolute;top:-10000px;left:-10000px;}
|
418
|
-
.yuimenubar li,.yuimenu li{list-style-type:none;}
|
419
|
-
.yuimenubar ul,.yuimenu ul,.yuimenubar li,.yuimenu li,.yuimenu h6,.yuimenubar h6{margin:0;padding:0;}
|
420
|
-
.yuimenuitemlabel,.yuimenubaritemlabel{text-align:left;white-space:nowrap;}
|
421
|
-
.yuimenubar ul{*zoom:1;}
|
422
|
-
.yuimenubar .yuimenu ul{*zoom:normal;}
|
423
|
-
.yuimenubar>.bd>ul:after{content:".";display:block;clear:both;visibility:hidden;height:0;line-height:0;}
|
424
|
-
.yuimenubaritem{float:left;}
|
425
|
-
.yuimenubaritemlabel,.yuimenuitemlabel{display:block;}
|
426
|
-
.yuimenuitemlabel .helptext{font-style:normal;display:block;margin:-1em 0 0 10em;}
|
427
|
-
.yui-menu-shadow{position:absolute;visibility:hidden;z-index:-1;}
|
428
|
-
.yui-menu-shadow-visible{top:2px;right:-3px;left:-3px;bottom:-3px;visibility:visible;}
|
429
|
-
.hide-scrollbars *{overflow:hidden;}
|
430
|
-
.hide-scrollbars select{display:none;}
|
431
|
-
.yuimenu.show-scrollbars,.yuimenubar.show-scrollbars{overflow:visible;}
|
432
|
-
.yuimenu.hide-scrollbars .yui-menu-shadow,.yuimenubar.hide-scrollbars .yui-menu-shadow{overflow:hidden;}
|
433
|
-
.yuimenu.show-scrollbars .yui-menu-shadow,.yuimenubar.show-scrollbars .yui-menu-shadow{overflow:auto;}
|
434
|
-
.yui-skin-sam .yuimenubar{font-size:93%;line-height:2;*line-height:1.9;border:solid 1px #808080;background:url(/images/yui-sprite.png) repeat-x 0 0;}
|
435
|
-
.yui-skin-sam .yuimenubarnav .yuimenubaritem{border-right:solid 1px #ccc;}
|
436
|
-
.yui-skin-sam .yuimenubaritemlabel{padding:0 10px;color:#000;text-decoration:none;cursor:default;border-style:solid;border-color:#808080;border-width:1px 0;*position:relative;margin:-1px 0;}
|
437
|
-
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel{padding-right:20px;*display:inline-block;}
|
438
|
-
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu{background:url(/images/yui-menubaritem_submenuindicator.png) right center no-repeat;}
|
439
|
-
.yui-skin-sam .yuimenubaritem-selected{background:url(/images/yui-sprite.png) repeat-x 0 -1700px;}
|
440
|
-
.yui-skin-sam .yuimenubaritemlabel-selected{border-color:#7D98B8;}
|
441
|
-
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected{border-left-width:1px;margin-left:-1px;*left:-1px;}
|
442
|
-
.yui-skin-sam .yuimenubaritemlabel-disabled{cursor:default;color:#A6A6A6;}
|
443
|
-
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled{background-image:url(/images/yui-menubaritem_submenuindicator_disabled.png);}
|
444
|
-
.yui-skin-sam .yuimenu{font-size:93%;line-height:1.5;*line-height:1.45;}
|
445
|
-
.yui-skin-sam .yuimenubar .yuimenu,.yui-skin-sam .yuimenu .yuimenu{font-size:100%;}
|
446
|
-
.yui-skin-sam .yuimenu .bd{border:solid 1px #808080;background-color:#fff;}
|
447
|
-
.yui-skin-sam .yuimenu ul{padding:3px 0;border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}
|
448
|
-
.yui-skin-sam .yuimenu ul.first-of-type{border-width:0;}
|
449
|
-
.yui-skin-sam .yuimenu h6{font-weight:bold;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}
|
450
|
-
.yui-skin-sam .yuimenu ul.hastitle,.yui-skin-sam .yuimenu h6.first-of-type{border-width:0;}
|
451
|
-
.yui-skin-sam .yuimenu .yui-menu-body-scrolled{border-color:#ccc #808080;overflow:hidden;}
|
452
|
-
.yui-skin-sam .yuimenu .topscrollbar,.yui-skin-sam .yuimenu .bottomscrollbar{height:16px;border:solid 1px #808080;background:#fff url(/images/yui-sprite.png) no-repeat 0 0;}
|
453
|
-
.yui-skin-sam .yuimenu .topscrollbar{border-bottom-width:0;background-position:center -950px;}
|
454
|
-
.yui-skin-sam .yuimenu .topscrollbar_disabled{background-position:center -975px;}
|
455
|
-
.yui-skin-sam .yuimenu .bottomscrollbar{border-top-width:0;background-position:center -850px;}
|
456
|
-
.yui-skin-sam .yuimenu .bottomscrollbar_disabled{background-position:center -875px;}
|
457
|
-
.yui-skin-sam .yuimenuitem{_border-bottom:solid 1px #fff;}
|
458
|
-
.yui-skin-sam .yuimenuitemlabel{padding:0 20px;color:#000;text-decoration:none;cursor:default;}
|
459
|
-
.yui-skin-sam .yuimenuitemlabel .helptext{margin-top:-1.5em;*margin-top:-1.45em;}
|
460
|
-
.yui-skin-sam .yuimenuitem-hassubmenu{background-image:url(/images/yui-menuitem_submenuindicator.png);background-position:right center;background-repeat:no-repeat;}
|
461
|
-
.yui-skin-sam .yuimenuitem-checked{background-image:url(/images/yui-menuitem_checkbox.png);background-position:left center;background-repeat:no-repeat;}
|
462
|
-
.yui-skin-sam .yui-menu-shadow-visible{background-color:#000;opacity:.12;*filter:alpha(opacity=12);}
|
463
|
-
.yui-skin-sam .yuimenuitem-selected{background-color:#B3D4FF;}
|
464
|
-
.yui-skin-sam .yuimenuitemlabel-disabled{cursor:default;color:#A6A6A6;}
|
465
|
-
.yui-skin-sam .yuimenuitem-hassubmenu-disabled{background-image:url(/images/yui-menuitem_submenuindicator_disabled.png);}
|
466
|
-
.yui-skin-sam .yuimenuitem-checked-disabled{background-image:url(/images/yui-menuitem_checkbox_disabled.png);}
|
467
|
-
.ygtvitem table{margin-bottom:0;border:none;}
|
468
|
-
.ygtvitem td{border:none;padding:0;}
|
469
|
-
.ygtvtn{width:18px;height:22px;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -5600px no-repeat;}
|
470
|
-
.ygtvtm{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -4000px no-repeat;}
|
471
|
-
.ygtvtmh{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -4800px no-repeat;}
|
472
|
-
.ygtvtp{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -6400px no-repeat;}
|
473
|
-
.ygtvtph{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -7200px no-repeat;}
|
474
|
-
.ygtvln{width:18px;height:22px;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -1600px no-repeat;}
|
475
|
-
.ygtvlm{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 0 no-repeat;}
|
476
|
-
.ygtvlmh{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -800px no-repeat;}
|
477
|
-
.ygtvlp{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -2400px no-repeat;}
|
478
|
-
.ygtvlph{width:18px;height:22px;cursor:pointer;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -3200px no-repeat;}
|
479
|
-
.ygtvloading{width:18px;height:22px;background:url(/images/tree-nav-icons/treeview-loading.gif) 0 0 no-repeat;}
|
480
|
-
.ygtvdepthcell{width:18px;height:22px;background:url(/images/tree-nav-icons/treeview-sprite.gif) 0 -8000px no-repeat;}
|
481
|
-
.ygtvblankdepthcell{width:18px;height:22px;}
|
482
|
-
* html .ygtvchildren{height:2%;}
|
483
|
-
.ygtvlabel,.ygtvlabel:link,.ygtvlabel:visited,.ygtvlabel:hover{margin-left:2px;text-decoration:none;background-color:white;}
|
484
|
-
.ygtvspacer{height:22px;width:12px;}
|