diff --git a/app/assets/stylesheets/store/print.css b/app/assets/stylesheets/store/print.css new file mode 100644 index 0000000..c1673a6 --- /dev/null +++ b/app/assets/stylesheets/store/print.css @@ -0,0 +1,74 @@ +@media print { + body { + background: white; + font-size: 12pt; + font-family: "Open Sans", "Helvetica Neue", "Helvetica", sans-serif; + } + #main-nav-bar, #nav-bar, + .open-menu, .close-menu, + #mobile-navigation, #footer, + #taxon-crumbs, .add-to-cart, + #product-thumbnails, input, button, + #taxonomies, textarea, .cart-item-quantity-header, + .cart-item-delete, .cart-item-quantity, a.continue, + span.or, select { + display: none !important; + } + + #wrapper a:link:after, #wrapper a:visited:after { + content: " (" attr(href) ") "; + font-size: 90%; + } + + #logo { + width: 100%; + text-align: center; + } + + .product-section-title { + font-size: 14pt; + font-weight: bold; + border-bottom: 1px solid black; + margin-bottom: 5pt; + } + + #product-images, [data-hook="product_properties"], + #cart-form { + float: left; + width: 45%; + } + + #cart-form, [data-hook="product_properties"] { + clear: both; + } + + [data-hook="product_properties"] { + margin-top: -50px; + } + + #product-description { + float: right; + width: 50%; + position: absolute; + top: 200px; + right: 0; + } + + #cart-form .price.selling { + position: absolute; + top: 160px; + right: 0; + width: 50%; + display: block; + font-size: 18pt; + font-weight: bold; + border-bottom: 1px solid black; + } + + [data-hook="inside_cart_form"] #subtotal { + font-size: 18pt; + border-top: 1px solid black; + text-align: right; + width: 100%; + } +} \ No newline at end of file diff --git a/app/assets/stylesheets/store/shared/_print.scss b/app/assets/stylesheets/store/shared/_print.scss deleted file mode 100644 index d856183..0000000 --- a/app/assets/stylesheets/store/shared/_print.scss +++ /dev/null @@ -1,76 +0,0 @@ -@media print { - body { - background: white; - font-size: 12pt; - font-family: "Open Sans", "Helvetica Neue", "Helvetica", sans-serif; - - #main-nav-bar, #nav-bar, - .open-menu, .close-menu, - #mobile-navigation, #footer, - #taxon-crumbs, .add-to-cart, - #product-thumbnails, input, button, - #taxonomies, textarea, .cart-item-quantity-header, - .cart-item-delete, .cart-item-quantity, a.continue, - span.or, select { - display: none !important; - } - - #wrapper a:link:after, #wrapper a:visited:after { - content: " (" attr(href) ") "; - font-size: 90%; - } - - #logo { - width: 100%; - text-align: center; - } - - .product-section-title { - font-size: 14pt; - font-weight: bold; - border-bottom: 1px solid black; - margin-bottom: 5pt; - } - - #product-images, [data-hook="product_properties"], - #cart-form { - float: left; - width: 45%; - } - - #cart-form, [data-hook="product_properties"] { - clear: both; - } - - [data-hook="product_properties"] { - margin-top: -50px; - } - - #product-description { - float: right; - width: 50%; - position: absolute; - top: 200px; - right: 0; - } - - #cart-form .price.selling { - position: absolute; - top: 160px; - right: 0; - width: 50%; - display: block; - font-size: 18pt; - font-weight: bold; - border-bottom: 1px solid black; - } - - [data-hook="inside_cart_form"] #subtotal { - font-size: 18pt; - border-top: 1px solid black; - text-align: right; - width: 100%; - } - - } -} \ No newline at end of file diff --git a/app/overrides/spree/checkout/_confirm/add_icon_to_confirm_submit_button.html.erb.deface b/app/overrides/spree/checkout/_confirm/add_icon_to_confirm_submit_button.html.erb.deface index eea7d73..00825af 100644 --- a/app/overrides/spree/checkout/_confirm/add_icon_to_confirm_submit_button.html.erb.deface +++ b/app/overrides/spree/checkout/_confirm/add_icon_to_confirm_submit_button.html.erb.deface @@ -1,2 +1,2 @@ -<%= button_tag content_tag(:i, '', :class => 'icon-check-1') + ' ' + t(:place_order), :type => 'submit', :class => 'continue button primary' %> \ No newline at end of file +<%= button_tag content_tag(:i, '', :class => 'icon-check') + ' ' + t(:place_order), :type => 'submit', :class => 'continue button primary' %> \ No newline at end of file diff --git a/app/overrides/spree/orders/edit/add_icons_to_cart_buttons.html.erb.deface b/app/overrides/spree/orders/edit/add_icons_to_cart_buttons.html.erb.deface index 6ce48cb..a5c539c 100644 --- a/app/overrides/spree/orders/edit/add_icons_to_cart_buttons.html.erb.deface +++ b/app/overrides/spree/orders/edit/add_icons_to_cart_buttons.html.erb.deface @@ -5,7 +5,7 @@ <%= t(:update) %> <% end %> <%= button_tag :class => 'button checkout primary', :id => 'checkout-link', :name => 'checkout' do %> - + <%= t(:checkout) %> <% end %> \ No newline at end of file diff --git a/app/overrides/spree/orders/edit/add_icons_to_clear_cart_link.html.erb.deface b/app/overrides/spree/orders/edit/add_icons_to_clear_cart_link.html.erb.deface index 9b79dff..3a5e418 100644 --- a/app/overrides/spree/orders/edit/add_icons_to_clear_cart_link.html.erb.deface +++ b/app/overrides/spree/orders/edit/add_icons_to_clear_cart_link.html.erb.deface @@ -1,6 +1,6 @@ \ No newline at end of file diff --git a/app/overrides/spree/products/_cart_form/add_icon_to_add_to_cart_button.html.erb.deface b/app/overrides/spree/products/_cart_form/add_icon_to_add_to_cart_button.html.erb.deface index 74652ca..5198e78 100644 --- a/app/overrides/spree/products/_cart_form/add_icon_to_add_to_cart_button.html.erb.deface +++ b/app/overrides/spree/products/_cart_form/add_icon_to_add_to_cart_button.html.erb.deface @@ -1,2 +1,2 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/overrides/spree/shared/_filters/add_icon_to_search_button.html.erb.deface b/app/overrides/spree/shared/_filters/add_icon_to_search_button.html.erb.deface index 6dc021e..dc95128 100644 --- a/app/overrides/spree/shared/_filters/add_icon_to_search_button.html.erb.deface +++ b/app/overrides/spree/shared/_filters/add_icon_to_search_button.html.erb.deface @@ -1,2 +1,2 @@ -<%= button_tag content_tag(:i, '', :class => 'icon-search-5') + ' ' + t(:search), :type => "submit" %> +<%= button_tag content_tag(:i, '', :class => 'icon-search') + ' ' + t(:search), :type => "submit" %> diff --git a/app/overrides/spree/shared/_head/add_print_stylesheet.html.erb.deface b/app/overrides/spree/shared/_head/add_print_stylesheet.html.erb.deface index 7c5cfc7..7e8a6e8 100644 --- a/app/overrides/spree/shared/_head/add_print_stylesheet.html.erb.deface +++ b/app/overrides/spree/shared/_head/add_print_stylesheet.html.erb.deface @@ -1,2 +1,2 @@ -<%= stylesheet_link_tag 'store/shared/_print', :media => 'print' %> \ No newline at end of file +<%= stylesheet_link_tag 'store/print', :media => 'print' %> \ No newline at end of file diff --git a/app/overrides/spree/shared/_main_nav_bar/insert_menu_trigger_link_to_main_menu.html.erb.deface b/app/overrides/spree/shared/_main_nav_bar/insert_menu_trigger_link_to_main_menu.html.erb.deface index da97675..9911bbb 100644 --- a/app/overrides/spree/shared/_main_nav_bar/insert_menu_trigger_link_to_main_menu.html.erb.deface +++ b/app/overrides/spree/shared/_main_nav_bar/insert_menu_trigger_link_to_main_menu.html.erb.deface @@ -1,7 +1,7 @@ - ☰ + - ☰ + diff --git a/app/overrides/spree/shared/_nav_bar/add_cart_link.html.erb.deface b/app/overrides/spree/shared/_nav_bar/add_cart_link.html.erb.deface index 6b9a60f..804f428 100644 --- a/app/overrides/spree/shared/_nav_bar/add_cart_link.html.erb.deface +++ b/app/overrides/spree/shared/_nav_bar/add_cart_link.html.erb.deface @@ -1,4 +1,4 @@ \ No newline at end of file diff --git a/app/overrides/spree/shared/_nav_bar/add_search_icon_to_nav_bar.html.erb.deface b/app/overrides/spree/shared/_nav_bar/add_search_icon_to_nav_bar.html.erb.deface index 90e902e..9ae3d1d 100644 --- a/app/overrides/spree/shared/_nav_bar/add_search_icon_to_nav_bar.html.erb.deface +++ b/app/overrides/spree/shared/_nav_bar/add_search_icon_to_nav_bar.html.erb.deface @@ -1,2 +1,2 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/overrides/spree/shared/_nav_bar/replace_login_with_icon.html.erb.deface b/app/overrides/spree/shared/_nav_bar/replace_login_with_icon.html.erb.deface index 3831c92..f6341f7 100644 --- a/app/overrides/spree/shared/_nav_bar/replace_login_with_icon.html.erb.deface +++ b/app/overrides/spree/shared/_nav_bar/replace_login_with_icon.html.erb.deface @@ -1,3 +1,3 @@ -<%= link_to content_tag(:i, '', :class => 'icon-login-1'), spree.login_path, :title => t(:login) %> \ No newline at end of file +<%= link_to content_tag(:i, '', :class => 'icon-login'), spree.login_path, :title => t(:login) %> \ No newline at end of file diff --git a/app/overrides/spree/shared/_nav_bar/replace_logout_with_icon.html.erb.deface b/app/overrides/spree/shared/_nav_bar/replace_logout_with_icon.html.erb.deface index 43e7d6f..3513789 100644 --- a/app/overrides/spree/shared/_nav_bar/replace_logout_with_icon.html.erb.deface +++ b/app/overrides/spree/shared/_nav_bar/replace_logout_with_icon.html.erb.deface @@ -1,3 +1,3 @@ -<%= link_to content_tag(:i, '', :class => 'icon-logout-2'), spree.destroy_user_session_path, :title => t(:logout) %> \ No newline at end of file +<%= link_to content_tag(:i, '', :class => 'icon-logout'), spree.destroy_user_session_path, :title => t(:logout) %> \ No newline at end of file diff --git a/app/overrides/spree/shared/_nav_bar/replace_my_account_with_icon.html.erb.deface b/app/overrides/spree/shared/_nav_bar/replace_my_account_with_icon.html.erb.deface index 90853fa..6f83f1e 100644 --- a/app/overrides/spree/shared/_nav_bar/replace_my_account_with_icon.html.erb.deface +++ b/app/overrides/spree/shared/_nav_bar/replace_my_account_with_icon.html.erb.deface @@ -1,3 +1,3 @@ -<%= link_to content_tag(:i, '', :class => 'icon-user-5'), spree.account_path, :title => t(:my_account) %> \ No newline at end of file +<%= link_to content_tag(:i, '', :class => 'icon-user'), spree.account_path, :title => t(:my_account) %> \ No newline at end of file diff --git a/app/views/spree/home/_slider.html.erb b/app/views/spree/home/_slider.html.erb index 08af47f..1a26d60 100644 --- a/app/views/spree/home/_slider.html.erb +++ b/app/views/spree/home/_slider.html.erb @@ -20,7 +20,7 @@ <%= number_field_tag (product.has_variants? ? :quantity : "variants[#{product.master.id}]"), 1, :class => 'title', :in => 1..product.on_hand, :min => 1 %> <%= button_tag :id => 'add-to-cart-button', :type => :submit do %> - <%= content_tag(:i, '', :class => 'icon-plus-4') + " " + t(:add_to_cart) %> + <%= content_tag(:i, '', :class => 'icon-plus') + " " + t(:add_to_cart) %> <% end %> <% else %> <%= content_tag('strong', t(:out_of_stock)) %> diff --git a/lib/spree_fancy/engine.rb b/lib/spree_fancy/engine.rb index fb12937..86ccdb6 100644 --- a/lib/spree_fancy/engine.rb +++ b/lib/spree_fancy/engine.rb @@ -15,11 +15,6 @@ def self.activate Dir.glob(File.join(File.dirname(__FILE__), '../../app/**/*_decorator*.rb')) do |c| Rails.configuration.cache_classes ? require(c) : load(c) end - - initializer "spree_fancy.assets.precompile", :group => :all do |app| - app.config.assets.precompile << "store/shared/_print.css" - end - end config.to_prepare &method(:activate).to_proc diff --git a/vendor/assets/fonts/icons.eot b/vendor/assets/fonts/icons.eot index 469a40c..e88ae2c 100644 Binary files a/vendor/assets/fonts/icons.eot and b/vendor/assets/fonts/icons.eot differ diff --git a/vendor/assets/fonts/icons.svg b/vendor/assets/fonts/icons.svg index 99a4348..a46100f 100644 --- a/vendor/assets/fonts/icons.svg +++ b/vendor/assets/fonts/icons.svg @@ -2,12 +2,12 @@ -Created by FontForge 20100429 at Fri Nov 30 10:23:43 2012 +Created by FontForge 20100429 at Thu Jan 3 09:10:54 2013 By root Copyright (C) 2012 by original authors @ fontello.com - + @@ -29,148 +29,47 @@ d="M33 0v666h265v-666h-265zM66 33h199v600h-199v-600z" /> /> - + + + + + - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/vendor/assets/fonts/icons.ttf b/vendor/assets/fonts/icons.ttf index 1e3330a..c78fb45 100644 Binary files a/vendor/assets/fonts/icons.ttf and b/vendor/assets/fonts/icons.ttf differ diff --git a/vendor/assets/fonts/icons.woff b/vendor/assets/fonts/icons.woff index 5b75b9e..90ec93d 100644 Binary files a/vendor/assets/fonts/icons.woff and b/vendor/assets/fonts/icons.woff differ diff --git a/vendor/assets/stylesheets/icons-codes.css b/vendor/assets/stylesheets/icons-codes.css index 746511f..e61a654 100644 --- a/vendor/assets/stylesheets/icons-codes.css +++ b/vendor/assets/stylesheets/icons-codes.css @@ -1,60 +1,20 @@ @charset "UTF-8"; -.icon-plus-4:before { content: '\e9a8'; } /* '' */ -.icon-minus-3:before { content: '\e9aa'; } /* '' */ -.icon-info-2:before { content: '\e8a1'; } /* '' */ -.icon-erase:before { content: '\232b'; } /* '⌫' */ -.icon-up-dir-1:before { content: '\e85f'; } /* '' */ -.icon-right-dir-3:before { content: '\e861'; } /* '' */ -.icon-left-dir-2:before { content: '\e860'; } /* '' */ -.icon-star-5:before { content: '\e99d'; } /* '' */ -.icon-star-empty-1:before { content: '\e99e'; } /* '' */ -.icon-menu-1:before { content: '\e9a4'; } /* '' */ -.icon-layout:before { content: '\e9a3'; } /* '' */ -.icon-mail-5:before { content: '\e99a'; } /* '' */ -.icon-pencil-4:before { content: '\e844'; } /* '' */ -.icon-check-1:before { content: '\e9a5'; } /* '' */ -.icon-cancel-5:before { content: '\e9a6'; } /* '' */ -.icon-help-2:before { content: '\e8a0'; } /* '' */ -.icon-right-3:before { content: '\27a1'; } /* '➡' */ -.icon-left-3:before { content: '\2b05'; } /* '⬅' */ -.icon-up-4:before { content: '\2b06'; } /* '⬆' */ -.icon-down-4:before { content: '\2b07'; } /* '⬇' */ -.icon-left-bold:before { content: '\e4ad'; } /* '' */ +.icon-plus:before { content: '\2b'; } /* '+' */ +.icon-menu:before { content: '\2630'; } /* '☰' */ +.icon-layout:before { content: '\268f'; } /* '⚏' */ +.icon-check:before { content: '\2713'; } /* '✓' */ +.icon-cancel:before { content: '\2715'; } /* '✕' */ +.icon-right:before { content: '\27a1'; } /* '➡' */ +.icon-cw:before { content: '\27f3'; } /* '⟳' */ .icon-right-bold:before { content: '\e4ae'; } /* '' */ -.icon-up-bold:before { content: '\e4af'; } /* '' */ -.icon-down-bold:before { content: '\e4b0'; } /* '' */ -.icon-tag-5:before { content: '\e9b8'; } /* '' */ -.icon-print-3:before { content: '\e845'; } /* '' */ -.icon-chat-6:before { content: '\e848'; } /* '' */ -.icon-trash-5:before { content: '\e84c'; } /* '' */ -.icon-basket-2:before { content: '\e851'; } /* '' */ -.icon-login-1:before { content: '\e853'; } /* '' */ -.icon-logout-2:before { content: '\e854'; } /* '' */ -.icon-arrow-combo:before { content: '\e74f'; } /* '' */ -.icon-down-circled-1:before { content: '\e85c'; } /* '' */ -.icon-left-circled-1:before { content: '\e759'; } /* '' */ -.icon-right-circled-1:before { content: '\e75a'; } /* '' */ -.icon-up-circled-1:before { content: '\e85d'; } /* '' */ -.icon-down-open-1:before { content: '\e862'; } /* '' */ -.icon-left-open-3:before { content: '\e863'; } /* '' */ -.icon-right-open-3:before { content: '\e864'; } /* '' */ -.icon-up-open-1:before { content: '\e865'; } /* '' */ -.icon-dot-3:before { content: '\e78d'; } /* '' */ -.icon-paper-plane:before { content: '\e8e3'; } /* '' */ -.icon-vimeo-circled:before { content: '\e9fd'; } /* '' */ -.icon-twitter-circled:before { content: '\ea01'; } /* '' */ -.icon-facebook-circled:before { content: '\ea03'; } /* '' */ -.icon-gplus-circled:before { content: '\e9fb'; } /* '' */ -.icon-pinterest-circled-1:before { content: '\ea05'; } /* '' */ -.icon-tumblr-circled:before { content: '\ea08'; } /* '' */ -.icon-linkedin-circled:before { content: '\ea0a'; } /* '' */ -.icon-skype-circled:before { content: '\f33a'; } /* '' */ -.icon-sweden:before { content: '\f601'; } /* '' */ -.icon-user-5:before { content: '\e99f'; } /* '' */ -.icon-credit-card-2:before { content: '\e889'; } /* '' */ -.icon-bookmarks:before { content: '📑'; } /* '\1f4d1' */ -.icon-arrows-ccw:before { content: '\e8d2'; } /* '' */ -.icon-search-5:before { content: '\e999'; } /* '' */ -.icon-bookmark-2:before { content: '\e9b9'; } /* '' */ \ No newline at end of file +.icon-trash:before { content: '\e729'; } /* '' */ +.icon-basket:before { content: '\e73d'; } /* '' */ +.icon-login:before { content: '\e740'; } /* '' */ +.icon-logout:before { content: '\e741'; } /* '' */ +.icon-right-circled:before { content: '\e75a'; } /* '' */ +.icon-paper-plane:before { content: '\e79b'; } /* '' */ +.icon-user:before { content: '👤'; } /* '\1f464' */ +.icon-arrows-ccw:before { content: '🔄'; } /* '\1f504' */ +.icon-search:before { content: '🔍'; } /* '\1f50d' */ \ No newline at end of file diff --git a/vendor/assets/stylesheets/icons-ie7-codes.css b/vendor/assets/stylesheets/icons-ie7-codes.css index 03e8c12..d29c563 100644 --- a/vendor/assets/stylesheets/icons-ie7-codes.css +++ b/vendor/assets/stylesheets/icons-ie7-codes.css @@ -1,58 +1,18 @@ -.icon-plus-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-minus-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-info-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-erase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⌫ '); } -.icon-up-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-dir-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-left-dir-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-star-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-star-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-menu-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-mail-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-pencil-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-cancel-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-help-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '➡ '); } -.icon-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⬅ '); } -.icon-up-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⬆ '); } -.icon-down-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⬇ '); } -.icon-left-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '+ '); } +.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '☰ '); } +.icon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⚏ '); } +.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '✓ '); } +.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '✕ '); } +.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '➡ '); } +.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⟳ '); } .icon-right-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-up-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-down-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-tag-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-print-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-chat-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-trash-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-login-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-logout-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-arrow-combo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-down-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-left-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-up-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-down-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-left-open-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-open-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-up-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-dot-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-vimeo-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-twitter-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-facebook-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-gplus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-pinterest-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-tumblr-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-linkedin-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-skype-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-sweden { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-user-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-credit-card-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-bookmarks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '📑 '); } -.icon-arrows-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-search-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-bookmark-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } \ No newline at end of file +.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '👤 '); } +.icon-arrows-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '🔄 '); } +.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '🔍 '); } \ No newline at end of file diff --git a/vendor/assets/stylesheets/icons-ie7.css b/vendor/assets/stylesheets/icons-ie7.css index 5ece9d2..8268351 100644 --- a/vendor/assets/stylesheets/icons-ie7.css +++ b/vendor/assets/stylesheets/icons-ie7.css @@ -9,60 +9,20 @@ /* font-size: 120%; */ } -.icon-plus-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-minus-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-info-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-erase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⌫ '); } -.icon-up-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-dir-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-left-dir-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-star-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-star-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-menu-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-mail-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-pencil-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-cancel-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-help-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '➡ '); } -.icon-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⬅ '); } -.icon-up-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⬆ '); } -.icon-down-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⬇ '); } -.icon-left-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '+ '); } +.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '☰ '); } +.icon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⚏ '); } +.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '✓ '); } +.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '✕ '); } +.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '➡ '); } +.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '⟳ '); } .icon-right-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-up-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-down-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-tag-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-print-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-chat-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-trash-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-login-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-logout-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-arrow-combo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-down-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-left-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-up-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-down-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-left-open-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-right-open-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-up-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-dot-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-vimeo-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-twitter-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-facebook-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-gplus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-pinterest-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-tumblr-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-linkedin-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-skype-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-sweden { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-user-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-credit-card-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-bookmarks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '📑 '); } -.icon-arrows-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-search-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -.icon-bookmark-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } \ No newline at end of file +.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '👤 '); } +.icon-arrows-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '🔄 '); } +.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '🔍 '); } \ No newline at end of file diff --git a/vendor/assets/stylesheets/icons.scss b/vendor/assets/stylesheets/icons.scss index 950ee40..e3a171c 100644 --- a/vendor/assets/stylesheets/icons.scss +++ b/vendor/assets/stylesheets/icons.scss @@ -27,60 +27,20 @@ /* font-size: 120%; */ } -.icon-plus-4:before { content: '\e9a8'; } /* '' */ -.icon-minus-3:before { content: '\e9aa'; } /* '' */ -.icon-info-2:before { content: '\e8a1'; } /* '' */ -.icon-erase:before { content: '\232b'; } /* '⌫' */ -.icon-up-dir-1:before { content: '\e85f'; } /* '' */ -.icon-right-dir-3:before { content: '\e861'; } /* '' */ -.icon-left-dir-2:before { content: '\e860'; } /* '' */ -.icon-star-5:before { content: '\e99d'; } /* '' */ -.icon-star-empty-1:before { content: '\e99e'; } /* '' */ -.icon-menu-1:before { content: '\e9a4'; } /* '' */ -.icon-layout:before { content: '\e9a3'; } /* '' */ -.icon-mail-5:before { content: '\e99a'; } /* '' */ -.icon-pencil-4:before { content: '\e844'; } /* '' */ -.icon-check-1:before { content: '\e9a5'; } /* '' */ -.icon-cancel-5:before { content: '\e9a6'; } /* '' */ -.icon-help-2:before { content: '\e8a0'; } /* '' */ -.icon-right-3:before { content: '\27a1'; } /* '➡' */ -.icon-left-3:before { content: '\2b05'; } /* '⬅' */ -.icon-up-4:before { content: '\2b06'; } /* '⬆' */ -.icon-down-4:before { content: '\2b07'; } /* '⬇' */ -.icon-left-bold:before { content: '\e4ad'; } /* '' */ +.icon-plus:before { content: '\2b'; } /* '+' */ +.icon-menu:before { content: '\2630'; } /* '☰' */ +.icon-layout:before { content: '\268f'; } /* '⚏' */ +.icon-check:before { content: '\2713'; } /* '✓' */ +.icon-cancel:before { content: '\2715'; } /* '✕' */ +.icon-right:before { content: '\27a1'; } /* '➡' */ +.icon-cw:before { content: '\27f3'; } /* '⟳' */ .icon-right-bold:before { content: '\e4ae'; } /* '' */ -.icon-up-bold:before { content: '\e4af'; } /* '' */ -.icon-down-bold:before { content: '\e4b0'; } /* '' */ -.icon-tag-5:before { content: '\e9b8'; } /* '' */ -.icon-print-3:before { content: '\e845'; } /* '' */ -.icon-chat-6:before { content: '\e848'; } /* '' */ -.icon-trash-5:before { content: '\e84c'; } /* '' */ -.icon-basket-2:before { content: '\e851'; } /* '' */ -.icon-login-1:before { content: '\e853'; } /* '' */ -.icon-logout-2:before { content: '\e854'; } /* '' */ -.icon-arrow-combo:before { content: '\e74f'; } /* '' */ -.icon-down-circled-1:before { content: '\e85c'; } /* '' */ -.icon-left-circled-1:before { content: '\e759'; } /* '' */ -.icon-right-circled-1:before { content: '\e75a'; } /* '' */ -.icon-up-circled-1:before { content: '\e85d'; } /* '' */ -.icon-down-open-1:before { content: '\e862'; } /* '' */ -.icon-left-open-3:before { content: '\e863'; } /* '' */ -.icon-right-open-3:before { content: '\e864'; } /* '' */ -.icon-up-open-1:before { content: '\e865'; } /* '' */ -.icon-dot-3:before { content: '\e78d'; } /* '' */ -.icon-paper-plane:before { content: '\e8e3'; } /* '' */ -.icon-vimeo-circled:before { content: '\e9fd'; } /* '' */ -.icon-twitter-circled:before { content: '\ea01'; } /* '' */ -.icon-facebook-circled:before { content: '\ea03'; } /* '' */ -.icon-gplus-circled:before { content: '\e9fb'; } /* '' */ -.icon-pinterest-circled-1:before { content: '\ea05'; } /* '' */ -.icon-tumblr-circled:before { content: '\ea08'; } /* '' */ -.icon-linkedin-circled:before { content: '\ea0a'; } /* '' */ -.icon-skype-circled:before { content: '\f33a'; } /* '' */ -.icon-sweden:before { content: '\f601'; } /* '' */ -.icon-user-5:before { content: '\e99f'; } /* '' */ -.icon-credit-card-2:before { content: '\e889'; } /* '' */ -.icon-bookmarks:before { content: '📑'; } /* '\1f4d1' */ -.icon-arrows-ccw:before { content: '\e8d2'; } /* '' */ -.icon-search-5:before { content: '\e999'; } /* '' */ -.icon-bookmark-2:before { content: '\e9b9'; } /* '' */ \ No newline at end of file +.icon-trash:before { content: '\e729'; } /* '' */ +.icon-basket:before { content: '\e73d'; } /* '' */ +.icon-login:before { content: '\e740'; } /* '' */ +.icon-logout:before { content: '\e741'; } /* '' */ +.icon-right-circled:before { content: '\e75a'; } /* '' */ +.icon-paper-plane:before { content: '\e79b'; } /* '' */ +.icon-user:before { content: '👤'; } /* '\1f464' */ +.icon-arrows-ccw:before { content: '🔄'; } /* '\1f504' */ +.icon-search:before { content: '🔍'; } /* '\1f50d' */ \ No newline at end of file