Changeset 1156149
- Timestamp:
- 05/08/2015 01:35:58 PM (11 years ago)
- Location:
- wp-auctions/trunk
- Files:
-
- 8 edited
-
styles/Earth/color.css (modified) (1 diff)
-
styles/Fire/color.css (modified) (1 diff)
-
styles/Graphite/color.css (modified) (1 diff)
-
styles/Heart/color.css (modified) (1 diff)
-
styles/Water/color.css (modified) (1 diff)
-
styles/Wind/color.css (modified) (1 diff)
-
styles/default/color.css (modified) (1 diff)
-
wp_auctions.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-auctions/trunk/styles/Earth/color.css
r1009028 r1156149 247 247 .wpa-tables td a { background: #D3CCA3 url(gradient.png) repeat-x left bottom; border: 1px solid #463425; color: #660000; font-weight: bold; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 248 248 .wpa-tables td a:hover { color: #463425; } 249 250 251 /* Theme Specific */ 252 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 253 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/styles/Fire/color.css
r1009028 r1156149 246 246 .wpa-tables td a { background: #FB590C; border: 1px solid #aa0000; color: #660000; font-weight: bold; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 247 247 .wpa-tables td a:hover { color: #fff; } 248 249 250 /* Theme Specific */ 251 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 252 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/styles/Graphite/color.css
r1009029 r1156149 252 252 .wpa-tables td a { background: url(bg.png); border: 1px solid #000; color: #0090ff; font-weight: bold; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 253 253 .wpa-tables td a:hover { color: #fff; } 254 255 256 /* Theme Specific */ 257 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 258 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/styles/Heart/color.css
r1009028 r1156149 246 246 .wpa-tables td a { background: #FFCFCA; border: 1px solid #FFB3AA; color: #d30300; font-weight: bold; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 247 247 .wpa-tables td a:hover { color: #000; } 248 249 250 /* Theme Specific */ 251 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 252 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/styles/Water/color.css
r1009028 r1156149 246 246 .wpa-tables td a { background: #A4CEF0; border: 1px solid #6ba8e6; color: #0066ff; font-weight: bold; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 247 247 .wpa-tables td a:hover { color: #0033cc; } 248 249 /* Theme Specific */ 250 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 251 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/styles/Wind/color.css
r1009028 r1156149 246 246 .wpa-tables td a { background: #DDF4FF; border: 1px solid #6ba8e6; color: #0066ff; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 247 247 .wpa-tables td a:hover { color: #0033cc; } 248 249 /* Theme Specific */ 250 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 251 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/styles/default/color.css
r1009028 r1156149 248 248 .wpa-tables td a { background: #eee; border: 1px solid #ccc; color: #0099cc; font-weight: bold; padding: 2px 8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } 249 249 .wpa-tables td a:hover { color: #000; } 250 251 252 /* Theme Specific */ 253 form#auction_form, form#auction_form div, #wp-container-p p { margin: 0; } 254 #wp-container-p th, #wp-container-p td, #wp-container-p table { border: 0; } -
wp-auctions/trunk/wp_auctions.php
r1123473 r1156149 4 4 Plugin URI: http://www.wpauctions.com/download/ 5 5 Description: Implements the ability to run auctions on your own blog. Once activated, add the widget to your sidebar or add <code><?php wp_auctions(); ?></code> to your sidebar. 6 Version: 3.5 6 Version: 3.5.1 7 7 Author: Owen Cutajar & Hyder Jaffari 8 8 Author URI: http://www.wpauctions.com/profile … … 18 18 v3.4 Free - OwenC - 22/1/15 - Refreshed with premium features - Added Shipping 19 19 v3.5 Free - OwenC - 30/03/15 - Added extra image 20 v3.5.1 Free - HyderJ - 07/05/2015 - Fixed CSS issues 20 21 */ 21 22 … … 26 27 require_once('../../../wp-config.php'); 27 28 28 $wpa_version = "3.5 ";29 $wpa_version = "3.5.1"; 29 30 30 31 // Consts … … 2646 2647 wp_enqueue_script('wp_auction_AJAX', WPA_PLUGIN_URL . '/wp_auctionsjs.php' ); 2647 2648 2648 wp_print_scripts();2649 // this loads scripts in the header instead of the footer, apparently it loads other scripts too -- wp_print_scripts(); 2649 2650 2650 2651 ?>
Note: See TracChangeset
for help on using the changeset viewer.