├── .gitattributes ├── .idea ├── Code.iml ├── modules.xml └── workspace.xml ├── DB Connection Settings.txt ├── README.md ├── about.php ├── admin ├── color-add.php ├── color-delete.php ├── color-edit.php ├── color.php ├── country-add.php ├── country-delete.php ├── country-edit.php ├── country.php ├── css │ ├── AdminLTE.min.css │ ├── _all-skins.min.css │ ├── all.css │ ├── all │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ ├── bootstrap.min.css │ ├── dataTables.bootstrap.css │ ├── datepicker3.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── font-awesome.min1.css │ ├── ionicons.min.css │ ├── jquery.fancybox.css │ ├── on-off-switch.css │ ├── select2.min.css │ └── summernote.css ├── customer-change-status.php ├── customer-delete.php ├── customer-message.php ├── customer.php ├── end-category-add.php ├── end-category-delete.php ├── end-category-edit.php ├── end-category.php ├── faq-add.php ├── faq-delete.php ├── faq-edit.php ├── faq.php ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ ├── ionicons.woff │ ├── summernote.eot │ ├── summernote.ttf │ └── summernote.woff ├── footer.php ├── get-end-category.php ├── get-mid-category.php ├── header.php ├── img │ ├── fancybox_loading.gif │ ├── fancybox_loading@2x.gif │ ├── fancybox_overlay.png │ ├── fancybox_sprite.png │ └── fancybox_sprite@2x.png ├── inc │ ├── CSRF_Protect.php │ ├── config.php │ └── functions.php ├── index.php ├── js │ ├── app.min.js │ ├── bootstrap-datepicker.js │ ├── bootstrap.min.js │ ├── clipboard.min.js │ ├── dataTables.bootstrap.min.js │ ├── demo.js │ ├── fastclick.js │ ├── icheck.min.js │ ├── jquery-2.2.3.min.js │ ├── jquery-2.2.4.min.js │ ├── jquery.dataTables.min.js │ ├── jquery.fancybox.pack.js │ ├── jquery.inputmask.date.extensions.js │ ├── jquery.inputmask.extensions.js │ ├── jquery.inputmask.js │ ├── jquery.slimscroll.min.js │ ├── jquery.sparkline.min.js │ ├── jscolor.js │ ├── moment.min.js │ ├── on-off-switch-onload.js │ ├── on-off-switch.js │ ├── select2.full.min.js │ └── summernote.js ├── language.php ├── login.php ├── logout.php ├── mid-category-add.php ├── mid-category-delete.php ├── mid-category-edit.php ├── mid-category.php ├── order-change-status.php ├── order-delete.php ├── order.php ├── page.php ├── photo-add.php ├── photo-delete.php ├── photo-edit.php ├── photo.php ├── product-add.php ├── product-delete.php ├── product-edit.php ├── product-other-photo-delete.php ├── product.php ├── profile-edit.php ├── service-add.php ├── service-delete.php ├── service-edit.php ├── service.php ├── settings.php ├── shipping-change-status.php ├── shipping-cost-edit.php ├── shipping-cost.php ├── size-add.php ├── size-delete.php ├── size-edit.php ├── size.php ├── slider-add.php ├── slider-delete.php ├── slider-edit.php ├── slider.php ├── social-media.php ├── style.css ├── subscriber-csv.php ├── subscriber-delete.php ├── subscriber-remove.php ├── subscriber.php ├── top-category-add.php ├── top-category-delete.php ├── top-category-edit.php └── top-category.php ├── assets ├── css │ ├── animate.css │ ├── animate.min.css │ ├── bootstrap-touch-slider.css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── jquery.bxslider.min.css │ ├── magnific-popup.css │ ├── main.css │ ├── owl.carousel.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.css │ ├── owl.theme.default.min.css │ ├── rating.css │ ├── responsive.css │ ├── select2.min.css │ ├── spacing.css │ └── tree-menu.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── 1.gif │ ├── ajax-loader.gif │ ├── bx_loader.gif │ ├── controls.png │ ├── favicon.png │ ├── icon.png │ ├── logo.png │ ├── owl.video.play.png │ └── status.gif ├── js │ ├── bootstrap-touch-slider-min.js │ ├── bootstrap-touch-slider.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── jquery-2.2.4.min.js │ ├── jquery.bxslider.min.js │ ├── jquery.magnific-popup.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.touchSwipe.min.js │ ├── megamenu.js │ ├── owl.animate.js │ ├── owl.carousel.js │ ├── owl.carousel.min.js │ ├── rating.js │ └── select2.full.min.js └── uploads │ ├── about-banner.jpg │ ├── ad-1.png │ ├── ad-2.png │ ├── ad-3.png │ ├── ad-4.png │ ├── ad-5.png │ ├── ad-6.png │ ├── banner.jpg │ ├── banner_blog.jpg │ ├── banner_cart.jpg │ ├── banner_checkout.jpg │ ├── banner_forget_password.jpg │ ├── banner_login.jpg │ ├── banner_product_category.jpg │ ├── banner_registration.jpg │ ├── banner_reset_password.jpg │ ├── banner_search.jpg │ ├── blog-banner.jpg │ ├── contact-banner.jpg │ ├── cta.jpg │ ├── faq-banner.jpg │ ├── favicon.png │ ├── logo.png │ ├── news-1.jpg │ ├── news-10.jpg │ ├── news-11.jpg │ ├── news-2.jpg │ ├── news-3.jpg │ ├── news-4.jpg │ ├── news-5.jpg │ ├── news-6.jpg │ ├── news-7.jpg │ ├── news-8.jpg │ ├── news-9.jpg │ ├── pgallery-banner.jpg │ ├── photo-1.jpg │ ├── photo-2.jpg │ ├── photo-3.jpg │ ├── photo-4.jpg │ ├── photo-5.jpg │ ├── photo-6.jpg │ ├── product-featured-77.jpg │ ├── product-featured-78.jpg │ ├── product-featured-79.jpg │ ├── product-featured-80.jpg │ ├── product-featured-81.jpg │ ├── product_photos │ ├── 103.jpg │ ├── 104.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ └── 19.jpg │ ├── service-5.png │ ├── service-6.png │ ├── service-7.png │ ├── slider-1.jpg │ ├── slider-2.jpg │ ├── slider-3.jpg │ ├── slider-4.jpg │ ├── slider-5.png │ ├── slider-6.jpg │ ├── slider-7.jpg │ ├── user-1.jpg │ └── vgallery-banner.jpg ├── cart-item-delete.php ├── cart.php ├── checkout.php ├── contact.php ├── customer-billing-shipping-update.php ├── customer-order.php ├── customer-password-update.php ├── customer-profile-update.php ├── customer-sidebar.php ├── dashboard.php ├── faq.php ├── fashiony_ogs.sql ├── footer.php ├── forget-password.php ├── header.php ├── index.php ├── login.php ├── logout.php ├── payment ├── bank │ └── init.php └── paypal │ ├── payment_process.php │ └── verify_process.php ├── payment_success.php ├── product-category.php ├── product.php ├── registration.php ├── reset-password-success.php ├── reset-password.php ├── search-result.php ├── sidebar-category.php └── verify.php /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.idea/Code.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DB Connection Settings.txt: -------------------------------------------------------------------------------- 1 | 1. Please go to admin\admin\inc 2 | 2. Change time-zone (if there is still error) 3 | 3. Change following parameters according to your settings: 4 | 5 | setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 33 | } 34 | catch( PDOException $exception ) { 35 | echo "Connection error :" . $exception->getMessage(); 36 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A Complete PHP/MySQL based web application: 2 | 3 | 4 | **Check Database Settings file for Username / password -- Admin User: admin / Password: 1234** 5 | 6 | 7 | The complete ecommerce script with Paypal integration. Some of the features are as follow: 8 | 9 | **Admin/Dashboard Area** 10 | 11 | **Multi-level Category Management:** 12 | 13 | -- Add Category 14 | -- Edit Category 15 | -- Delete Category 16 | -- Manage Category Logo 17 | -- Manage Category Slider 18 | -- Add Sub-Category 19 | -- Edit Sub-Category 20 | -- Delete Sub-Category 21 | -- Manage Sub-Category Slider 22 | 23 | **Product Management:** 24 | 25 | -- Multiple Product Image 26 | -- Set Feature's Product 27 | -- Product Description 28 | -- Manage Product Reviews & Ratings 29 | -- Product Stock Management 30 | -- Offer / Discount Set 31 | -- Unlimited Product Photo's 32 | -- Related Product Selection 33 | -- Add Product 34 | -- Edit Product 35 | -- Delete Product 36 | -- Manage Product Category 37 | 38 | **Oders Management:** 39 | 40 | -- View All Order 41 | -- Awaiting Payment 42 | -- Awaiting Delivery 43 | 44 | **Payment Setting:** 45 | 46 | -- Unlimited Payment Method Creation. 47 | -- Add / Edit / Delete Payment Method 48 | -- Payment Method Icon Manage 49 | 50 | **Frontend** 51 | 52 | -- Fully Responsive Design. 53 | -- Easy to Use Menu. 54 | -- Delighted Product View Section. 55 | -- Easy to product compare. 56 | -- Online Order & payment System. 57 | -- Product Rating system. 58 | -- Product Review System. 59 | -- SEO Friendly URL. 60 | -- Easy to Social Share System. 61 | -- User Registration & Login System. 62 | -- User Database. 63 | -- Easy to order system. 64 | -- Social Links. 65 | 66 | **Menu Setting** 67 | 68 | -- Add / Edit / Delete Unlimited Menu. 69 | -- Add / Edit / Delete Menu Content. 70 | -- Set Menu Position 71 | 72 | **CMS / Website Setting** 73 | 74 | -- General Setting 75 | -- Logo Setting 76 | -- Footer Logo Setting 77 | -- 4 Feature Setting 78 | -- Home Slider Setting 79 | -- 3 Top Images 80 | -- Home Text Slider 81 | -- Brand Logo Setting 82 | -- Cat Slider Setting 83 | -- Social Links 84 | -- Payment Icon 85 | -- Footer Menu 86 | 87 | **User Panel** 88 | 89 | -- Fully Responsive Design. 90 | -- Easy to Registration. 91 | -- Trace Product Delivery. 92 | -- Online Order Management. 93 | -- Portfolio Management. 94 | -- Review Modify Facility. 95 | -- Product Comment's Panel. 96 | -- Report / Activity Section. 97 | -- SEO Friendly URL. 98 | -- Product Database. 99 | -- Easy to order system. 100 | 101 | 102 | -------------------------------------------------------------------------------- /about.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | prepare("SELECT * FROM tbl_page WHERE id=1"); 5 | $statement->execute(); 6 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 7 | foreach ($result as $row) { 8 | $about_title = $row['about_title']; 9 | $about_content = $row['about_content']; 10 | $about_banner = $row['about_banner']; 11 | } 12 | ?> 13 | 14 |
15 |
16 |

17 |
18 |
19 | 20 |
21 |
22 |
23 |
24 | 25 |

26 | 27 |

28 | 29 |
30 |
31 |
32 |
33 | 34 | -------------------------------------------------------------------------------- /admin/color-add.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | "; 10 | } else { 11 | // Duplicate Category checking 12 | $statement = $pdo->prepare("SELECT * FROM tbl_color WHERE color_name=?"); 13 | $statement->execute(array($_POST['color_name'])); 14 | $total = $statement->rowCount(); 15 | if($total) 16 | { 17 | $valid = 0; 18 | $error_message .= "Color Name already exists
"; 19 | } 20 | } 21 | 22 | if($valid == 1) { 23 | 24 | // Saving data into the main table tbl_color 25 | $statement = $pdo->prepare("INSERT INTO tbl_color (color_name) VALUES (?)"); 26 | $statement->execute(array($_POST['color_name'])); 27 | 28 | $success_message = 'Color is added successfully.'; 29 | } 30 | } 31 | ?> 32 | 33 |
34 |
35 |

Add Color

36 |
37 |
38 | View All 39 |
40 |
41 | 42 | 43 |
44 | 45 |
46 |
47 | 48 | 49 |
50 | 51 |

52 | 53 |

54 |
55 | 56 | 57 | 58 |
59 | 60 |

61 |
62 | 63 | 64 |
65 | 66 |
67 |
68 |
69 | 70 |
71 | 72 |
73 |
74 |
75 | 76 |
77 | 78 |
79 |
80 |
81 |
82 | 83 |
84 | 85 | 86 |
87 |
88 | 89 |
90 | 91 | -------------------------------------------------------------------------------- /admin/color-delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | prepare("SELECT * FROM tbl_color WHERE color_id=?"); 11 | $statement->execute(array($_REQUEST['id'])); 12 | $total = $statement->rowCount(); 13 | if( $total == 0 ) { 14 | header('location: logout.php'); 15 | exit; 16 | } 17 | } 18 | ?> 19 | 20 | prepare("DELETE FROM tbl_color WHERE color_id=?"); 24 | $statement->execute(array($_REQUEST['id'])); 25 | 26 | header('location: color.php'); 27 | ?> -------------------------------------------------------------------------------- /admin/color.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

View Colors

6 |
7 |
8 | Add New 9 |
10 |
11 | 12 | 13 |
14 | 15 |
16 |
17 | 18 | 19 |
20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | prepare("SELECT * FROM tbl_color ORDER BY color_id ASC"); 34 | $statement->execute(); 35 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 36 | foreach ($result as $row) { 37 | $i++; 38 | ?> 39 | 40 | 41 | 42 | 46 | 47 | 50 | 51 |
SLColor NameAction
43 | Edit 44 | Delete 45 |
52 |
53 |
54 | 55 | 56 |
57 | 58 | 59 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /admin/country-add.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | "; 10 | } else { 11 | // Duplicate Category checking 12 | $statement = $pdo->prepare("SELECT * FROM tbl_country WHERE country_name=?"); 13 | $statement->execute(array($_POST['country_name'])); 14 | $total = $statement->rowCount(); 15 | if($total) 16 | { 17 | $valid = 0; 18 | $error_message .= "Country Name already exists
"; 19 | } 20 | } 21 | 22 | if($valid == 1) { 23 | 24 | // Saving data into the main table tbl_country 25 | $statement = $pdo->prepare("INSERT INTO tbl_country (country_name) VALUES (?)"); 26 | $statement->execute(array($_POST['country_name'])); 27 | 28 | $success_message = 'Country is added successfully.'; 29 | } 30 | } 31 | ?> 32 | 33 |
34 |
35 |

Add Country

36 |
37 |
38 | View All 39 |
40 |
41 | 42 | 43 |
44 | 45 |
46 |
47 | 48 | 49 |
50 | 51 |

52 | 53 |

54 |
55 | 56 | 57 | 58 |
59 | 60 |

61 |
62 | 63 | 64 |
65 | 66 |
67 |
68 |
69 | 70 |
71 | 72 |
73 |
74 |
75 | 76 |
77 | 78 |
79 |
80 |
81 |
82 | 83 |
84 | 85 | 86 |
87 |
88 | 89 |
90 | 91 | -------------------------------------------------------------------------------- /admin/country-delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | prepare("SELECT * FROM tbl_country WHERE country_id=?"); 11 | $statement->execute(array($_REQUEST['id'])); 12 | $total = $statement->rowCount(); 13 | if( $total == 0 ) { 14 | header('location: logout.php'); 15 | exit; 16 | } 17 | } 18 | ?> 19 | 20 | prepare("DELETE FROM tbl_country WHERE country_id=?"); 24 | $statement->execute(array($_REQUEST['id'])); 25 | 26 | header('location: country.php'); 27 | ?> -------------------------------------------------------------------------------- /admin/country.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

View Countries

6 |
7 |
8 | Add New 9 |
10 |
11 | 12 | 13 |
14 | 15 |
16 |
17 | 18 | 19 |
20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | prepare("SELECT * FROM tbl_country ORDER BY country_id ASC"); 34 | $statement->execute(); 35 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 36 | foreach ($result as $row) { 37 | $i++; 38 | ?> 39 | 40 | 41 | 42 | 46 | 47 | 50 | 51 |
SLCountry NameAction
43 | Edit 44 | Delete 45 |
52 |
53 |
54 | 55 | 56 |
57 | 58 | 59 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /admin/css/all.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin skins 2 | ----------------------------------- */ 3 | @import url("all/minimal/_all.css"); 4 | @import url("all/square/_all.css"); 5 | @import url("all/flat/_all.css"); 6 | @import url("all/line/_all.css"); 7 | @import url("all/polaris/polaris.css"); 8 | @import url("all/futurico/futurico.css"); -------------------------------------------------------------------------------- /admin/css/all/flat/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_flat-aero, 4 | .iradio_flat-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-aero.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-aero.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-aero.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-aero { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-aero.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-aero.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-aero.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-aero, 51 | .iradio_flat-aero { 52 | background-image: url(aero@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/aero.png -------------------------------------------------------------------------------- /admin/css/all/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/aero@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_flat-blue, 4 | .iradio_flat-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-blue.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-blue.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-blue.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-blue { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-blue.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-blue.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-blue.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-blue, 51 | .iradio_flat-blue { 52 | background-image: url(blue@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/blue.png -------------------------------------------------------------------------------- /admin/css/all/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/blue@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/flat.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin flat skin, black 2 | ----------------------------------- */ 3 | .icheckbox_flat, 4 | .iradio_flat { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(flat.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat, 51 | .iradio_flat { 52 | background-image: url(flat@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/flat.png -------------------------------------------------------------------------------- /admin/css/all/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/flat@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/green.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, green 2 | ----------------------------------- */ 3 | .icheckbox_flat-green, 4 | .iradio_flat-green { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(green.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-green { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-green.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-green.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-green.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-green { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-green.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-green.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-green.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-green, 51 | .iradio_flat-green { 52 | background-image: url(green@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/green.png -------------------------------------------------------------------------------- /admin/css/all/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/green@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_flat-grey, 4 | .iradio_flat-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-grey.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-grey.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-grey.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-grey { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-grey.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-grey.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-grey.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-grey, 51 | .iradio_flat-grey { 52 | background-image: url(grey@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/grey.png -------------------------------------------------------------------------------- /admin/css/all/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/grey@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/orange.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, orange 2 | ----------------------------------- */ 3 | .icheckbox_flat-orange, 4 | .iradio_flat-orange { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(orange.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-orange { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-orange.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-orange.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-orange.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-orange { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-orange.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-orange.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-orange.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-orange, 51 | .iradio_flat-orange { 52 | background-image: url(orange@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/orange.png -------------------------------------------------------------------------------- /admin/css/all/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/orange@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_flat-pink, 4 | .iradio_flat-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-pink.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-pink.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-pink.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-pink { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-pink.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-pink.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-pink.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-pink, 51 | .iradio_flat-pink { 52 | background-image: url(pink@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/pink.png -------------------------------------------------------------------------------- /admin/css/all/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/pink@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/purple.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, purple 2 | ----------------------------------- */ 3 | .icheckbox_flat-purple, 4 | .iradio_flat-purple { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(purple.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-purple { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-purple.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-purple.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-purple.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-purple { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-purple.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-purple.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-purple.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-purple, 51 | .iradio_flat-purple { 52 | background-image: url(purple@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/purple.png -------------------------------------------------------------------------------- /admin/css/all/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/purple@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, red 2 | ----------------------------------- */ 3 | .icheckbox_flat-red, 4 | .iradio_flat-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-red.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-red.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-red.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-red { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-red.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-red.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-red.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-red, 51 | .iradio_flat-red { 52 | background-image: url(red@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/red.png -------------------------------------------------------------------------------- /admin/css/all/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/red@2x.png -------------------------------------------------------------------------------- /admin/css/all/flat/yellow.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, yellow 2 | ----------------------------------- */ 3 | .icheckbox_flat-yellow, 4 | .iradio_flat-yellow { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(yellow.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-yellow { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-yellow.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-yellow.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-yellow.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-yellow { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-yellow.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-yellow.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-yellow.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-yellow, 51 | .iradio_flat-yellow { 52 | background-image: url(yellow@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/yellow.png -------------------------------------------------------------------------------- /admin/css/all/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/flat/yellow@2x.png -------------------------------------------------------------------------------- /admin/css/all/futurico/futurico.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Futurico skin 2 | ----------------------------------- */ 3 | .icheckbox_futurico, 4 | .iradio_futurico { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 16px; 11 | height: 17px; 12 | background: url(futurico.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_futurico { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_futurico.checked { 21 | background-position: -18px 0; 22 | } 23 | .icheckbox_futurico.disabled { 24 | background-position: -36px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_futurico.checked.disabled { 28 | background-position: -54px 0; 29 | } 30 | 31 | .iradio_futurico { 32 | background-position: -72px 0; 33 | } 34 | .iradio_futurico.checked { 35 | background-position: -90px 0; 36 | } 37 | .iradio_futurico.disabled { 38 | background-position: -108px 0; 39 | cursor: default; 40 | } 41 | .iradio_futurico.checked.disabled { 42 | background-position: -126px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_futurico, 51 | .iradio_futurico { 52 | background-image: url(futurico@2x.png); 53 | -webkit-background-size: 144px 19px; 54 | background-size: 144px 19px; 55 | } 56 | } -------------------------------------------------------------------------------- /admin/css/all/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/futurico/futurico.png -------------------------------------------------------------------------------- /admin/css/all/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/futurico/futurico@2x.png -------------------------------------------------------------------------------- /admin/css/all/line/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_line-aero, 4 | .iradio_line-aero { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #9cc2cb; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-aero .icheck_line-icon, 20 | .iradio_line-aero .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-aero.hover, 33 | .icheckbox_line-aero.checked.hover, 34 | .iradio_line-aero.hover { 35 | background: #B5D1D8; 36 | } 37 | .icheckbox_line-aero.checked, 38 | .iradio_line-aero.checked { 39 | background: #9cc2cb; 40 | } 41 | .icheckbox_line-aero.checked .icheck_line-icon, 42 | .iradio_line-aero.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-aero.disabled, 46 | .iradio_line-aero.disabled { 47 | background: #D2E4E8; 48 | cursor: default; 49 | } 50 | .icheckbox_line-aero.disabled .icheck_line-icon, 51 | .iradio_line-aero.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-aero.checked.disabled, 55 | .iradio_line-aero.checked.disabled { 56 | background: #D2E4E8; 57 | } 58 | .icheckbox_line-aero.checked.disabled .icheck_line-icon, 59 | .iradio_line-aero.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-aero .icheck_line-icon, 69 | .iradio_line-aero .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_line-blue, 4 | .iradio_line-blue { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #2489c5; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-blue .icheck_line-icon, 20 | .iradio_line-blue .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-blue.hover, 33 | .icheckbox_line-blue.checked.hover, 34 | .iradio_line-blue.hover { 35 | background: #3DA0DB; 36 | } 37 | .icheckbox_line-blue.checked, 38 | .iradio_line-blue.checked { 39 | background: #2489c5; 40 | } 41 | .icheckbox_line-blue.checked .icheck_line-icon, 42 | .iradio_line-blue.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-blue.disabled, 46 | .iradio_line-blue.disabled { 47 | background: #ADD7F0; 48 | cursor: default; 49 | } 50 | .icheckbox_line-blue.disabled .icheck_line-icon, 51 | .iradio_line-blue.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-blue.checked.disabled, 55 | .iradio_line-blue.checked.disabled { 56 | background: #ADD7F0; 57 | } 58 | .icheckbox_line-blue.checked.disabled .icheck_line-icon, 59 | .iradio_line-blue.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-blue .icheck_line-icon, 69 | .iradio_line-blue .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/green.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, green 2 | ----------------------------------- */ 3 | .icheckbox_line-green, 4 | .iradio_line-green { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #1b7e5a; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-green .icheck_line-icon, 20 | .iradio_line-green .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-green.hover, 33 | .icheckbox_line-green.checked.hover, 34 | .iradio_line-green.hover { 35 | background: #24AA7A; 36 | } 37 | .icheckbox_line-green.checked, 38 | .iradio_line-green.checked { 39 | background: #1b7e5a; 40 | } 41 | .icheckbox_line-green.checked .icheck_line-icon, 42 | .iradio_line-green.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-green.disabled, 46 | .iradio_line-green.disabled { 47 | background: #89E6C4; 48 | cursor: default; 49 | } 50 | .icheckbox_line-green.disabled .icheck_line-icon, 51 | .iradio_line-green.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-green.checked.disabled, 55 | .iradio_line-green.checked.disabled { 56 | background: #89E6C4; 57 | } 58 | .icheckbox_line-green.checked.disabled .icheck_line-icon, 59 | .iradio_line-green.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-green .icheck_line-icon, 69 | .iradio_line-green .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_line-grey, 4 | .iradio_line-grey { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #73716e; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-grey .icheck_line-icon, 20 | .iradio_line-grey .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-grey.hover, 33 | .icheckbox_line-grey.checked.hover, 34 | .iradio_line-grey.hover { 35 | background: #8B8986; 36 | } 37 | .icheckbox_line-grey.checked, 38 | .iradio_line-grey.checked { 39 | background: #73716e; 40 | } 41 | .icheckbox_line-grey.checked .icheck_line-icon, 42 | .iradio_line-grey.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-grey.disabled, 46 | .iradio_line-grey.disabled { 47 | background: #D5D4D3; 48 | cursor: default; 49 | } 50 | .icheckbox_line-grey.disabled .icheck_line-icon, 51 | .iradio_line-grey.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-grey.checked.disabled, 55 | .iradio_line-grey.checked.disabled { 56 | background: #D5D4D3; 57 | } 58 | .icheckbox_line-grey.checked.disabled .icheck_line-icon, 59 | .iradio_line-grey.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-grey .icheck_line-icon, 69 | .iradio_line-grey .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/line.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, black 2 | ----------------------------------- */ 3 | .icheckbox_line, 4 | .iradio_line { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #000; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line .icheck_line-icon, 20 | .iradio_line .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line.hover, 33 | .icheckbox_line.checked.hover, 34 | .iradio_line.hover { 35 | background: #444; 36 | } 37 | .icheckbox_line.checked, 38 | .iradio_line.checked { 39 | background: #000; 40 | } 41 | .icheckbox_line.checked .icheck_line-icon, 42 | .iradio_line.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line.disabled, 46 | .iradio_line.disabled { 47 | background: #ccc; 48 | cursor: default; 49 | } 50 | .icheckbox_line.disabled .icheck_line-icon, 51 | .iradio_line.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line.checked.disabled, 55 | .iradio_line.checked.disabled { 56 | background: #ccc; 57 | } 58 | .icheckbox_line.checked.disabled .icheck_line-icon, 59 | .iradio_line.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line .icheck_line-icon, 69 | .iradio_line .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/line/line.png -------------------------------------------------------------------------------- /admin/css/all/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/line/line@2x.png -------------------------------------------------------------------------------- /admin/css/all/line/orange.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, orange 2 | ----------------------------------- */ 3 | .icheckbox_line-orange, 4 | .iradio_line-orange { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #f70; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-orange .icheck_line-icon, 20 | .iradio_line-orange .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-orange.hover, 33 | .icheckbox_line-orange.checked.hover, 34 | .iradio_line-orange.hover { 35 | background: #FF9233; 36 | } 37 | .icheckbox_line-orange.checked, 38 | .iradio_line-orange.checked { 39 | background: #f70; 40 | } 41 | .icheckbox_line-orange.checked .icheck_line-icon, 42 | .iradio_line-orange.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-orange.disabled, 46 | .iradio_line-orange.disabled { 47 | background: #FFD6B3; 48 | cursor: default; 49 | } 50 | .icheckbox_line-orange.disabled .icheck_line-icon, 51 | .iradio_line-orange.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-orange.checked.disabled, 55 | .iradio_line-orange.checked.disabled { 56 | background: #FFD6B3; 57 | } 58 | .icheckbox_line-orange.checked.disabled .icheck_line-icon, 59 | .iradio_line-orange.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-orange .icheck_line-icon, 69 | .iradio_line-orange .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_line-pink, 4 | .iradio_line-pink { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #a77a94; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-pink .icheck_line-icon, 20 | .iradio_line-pink .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-pink.hover, 33 | .icheckbox_line-pink.checked.hover, 34 | .iradio_line-pink.hover { 35 | background: #B995A9; 36 | } 37 | .icheckbox_line-pink.checked, 38 | .iradio_line-pink.checked { 39 | background: #a77a94; 40 | } 41 | .icheckbox_line-pink.checked .icheck_line-icon, 42 | .iradio_line-pink.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-pink.disabled, 46 | .iradio_line-pink.disabled { 47 | background: #E0D0DA; 48 | cursor: default; 49 | } 50 | .icheckbox_line-pink.disabled .icheck_line-icon, 51 | .iradio_line-pink.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-pink.checked.disabled, 55 | .iradio_line-pink.checked.disabled { 56 | background: #E0D0DA; 57 | } 58 | .icheckbox_line-pink.checked.disabled .icheck_line-icon, 59 | .iradio_line-pink.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-pink .icheck_line-icon, 69 | .iradio_line-pink .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/purple.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, purple 2 | ----------------------------------- */ 3 | .icheckbox_line-purple, 4 | .iradio_line-purple { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #6a5a8c; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-purple .icheck_line-icon, 20 | .iradio_line-purple .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-purple.hover, 33 | .icheckbox_line-purple.checked.hover, 34 | .iradio_line-purple.hover { 35 | background: #8677A7; 36 | } 37 | .icheckbox_line-purple.checked, 38 | .iradio_line-purple.checked { 39 | background: #6a5a8c; 40 | } 41 | .icheckbox_line-purple.checked .icheck_line-icon, 42 | .iradio_line-purple.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-purple.disabled, 46 | .iradio_line-purple.disabled { 47 | background: #D2CCDE; 48 | cursor: default; 49 | } 50 | .icheckbox_line-purple.disabled .icheck_line-icon, 51 | .iradio_line-purple.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-purple.checked.disabled, 55 | .iradio_line-purple.checked.disabled { 56 | background: #D2CCDE; 57 | } 58 | .icheckbox_line-purple.checked.disabled .icheck_line-icon, 59 | .iradio_line-purple.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-purple .icheck_line-icon, 69 | .iradio_line-purple .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, red 2 | ----------------------------------- */ 3 | .icheckbox_line-red, 4 | .iradio_line-red { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #e56c69; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-red .icheck_line-icon, 20 | .iradio_line-red .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-red.hover, 33 | .icheckbox_line-red.checked.hover, 34 | .iradio_line-red.hover { 35 | background: #E98582; 36 | } 37 | .icheckbox_line-red.checked, 38 | .iradio_line-red.checked { 39 | background: #e56c69; 40 | } 41 | .icheckbox_line-red.checked .icheck_line-icon, 42 | .iradio_line-red.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-red.disabled, 46 | .iradio_line-red.disabled { 47 | background: #F7D3D2; 48 | cursor: default; 49 | } 50 | .icheckbox_line-red.disabled .icheck_line-icon, 51 | .iradio_line-red.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-red.checked.disabled, 55 | .iradio_line-red.checked.disabled { 56 | background: #F7D3D2; 57 | } 58 | .icheckbox_line-red.checked.disabled .icheck_line-icon, 59 | .iradio_line-red.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-red .icheck_line-icon, 69 | .iradio_line-red .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/line/yellow.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Line skin, yellow 2 | ----------------------------------- */ 3 | .icheckbox_line-yellow, 4 | .iradio_line-yellow { 5 | position: relative; 6 | display: block; 7 | margin: 0; 8 | padding: 5px 15px 5px 38px; 9 | font-size: 13px; 10 | line-height: 17px; 11 | color: #fff; 12 | background: #FFC414; 13 | border: none; 14 | -webkit-border-radius: 3px; 15 | -moz-border-radius: 3px; 16 | border-radius: 3px; 17 | cursor: pointer; 18 | } 19 | .icheckbox_line-yellow .icheck_line-icon, 20 | .iradio_line-yellow .icheck_line-icon { 21 | position: absolute; 22 | top: 50%; 23 | left: 13px; 24 | width: 13px; 25 | height: 11px; 26 | margin: -5px 0 0 0; 27 | padding: 0; 28 | overflow: hidden; 29 | background: url(line.png) no-repeat; 30 | border: none; 31 | } 32 | .icheckbox_line-yellow.hover, 33 | .icheckbox_line-yellow.checked.hover, 34 | .iradio_line-yellow.hover { 35 | background: #FFD34F; 36 | } 37 | .icheckbox_line-yellow.checked, 38 | .iradio_line-yellow.checked { 39 | background: #FFC414; 40 | } 41 | .icheckbox_line-yellow.checked .icheck_line-icon, 42 | .iradio_line-yellow.checked .icheck_line-icon { 43 | background-position: -15px 0; 44 | } 45 | .icheckbox_line-yellow.disabled, 46 | .iradio_line-yellow.disabled { 47 | background: #FFE495; 48 | cursor: default; 49 | } 50 | .icheckbox_line-yellow.disabled .icheck_line-icon, 51 | .iradio_line-yellow.disabled .icheck_line-icon { 52 | background-position: -30px 0; 53 | } 54 | .icheckbox_line-yellow.checked.disabled, 55 | .iradio_line-yellow.checked.disabled { 56 | background: #FFE495; 57 | } 58 | .icheckbox_line-yellow.checked.disabled .icheck_line-icon, 59 | .iradio_line-yellow.checked.disabled .icheck_line-icon { 60 | background-position: -45px 0; 61 | } 62 | 63 | /* Retina support */ 64 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 65 | only screen and (-moz-min-device-pixel-ratio: 1.5), 66 | only screen and (-o-min-device-pixel-ratio: 3/2), 67 | only screen and (min-device-pixel-ratio: 1.5) { 68 | .icheckbox_line-yellow .icheck_line-icon, 69 | .iradio_line-yellow .icheck_line-icon { 70 | background-image: url(line@2x.png); 71 | -webkit-background-size: 60px 13px; 72 | background-size: 60px 13px; 73 | } 74 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_minimal-aero, 4 | .iradio_minimal-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-aero.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-aero.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-aero.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-aero.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-aero { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-aero.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-aero.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-aero.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-aero.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-aero, 57 | .iradio_minimal-aero { 58 | background-image: url(aero@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/aero.png -------------------------------------------------------------------------------- /admin/css/all/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/aero@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_minimal-blue, 4 | .iradio_minimal-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-blue.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-blue.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-blue.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-blue.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-blue { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-blue.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-blue.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-blue.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-blue.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-blue, 57 | .iradio_minimal-blue { 58 | background-image: url(blue@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/blue.png -------------------------------------------------------------------------------- /admin/css/all/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/blue@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/green.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, green 2 | ----------------------------------- */ 3 | .icheckbox_minimal-green, 4 | .iradio_minimal-green { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(green.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-green { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-green.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-green.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-green.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-green.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-green { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-green.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-green.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-green.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-green.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-green, 57 | .iradio_minimal-green { 58 | background-image: url(green@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/green.png -------------------------------------------------------------------------------- /admin/css/all/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/green@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_minimal-grey, 4 | .iradio_minimal-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-grey.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-grey.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-grey.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-grey.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-grey { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-grey.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-grey.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-grey.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-grey.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-grey, 57 | .iradio_minimal-grey { 58 | background-image: url(grey@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/grey.png -------------------------------------------------------------------------------- /admin/css/all/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/grey@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/minimal.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, black 2 | ----------------------------------- */ 3 | .icheckbox_minimal, 4 | .iradio_minimal { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(minimal.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal, 57 | .iradio_minimal { 58 | background-image: url(minimal@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/minimal.png -------------------------------------------------------------------------------- /admin/css/all/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/minimal@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/orange.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, orange 2 | ----------------------------------- */ 3 | .icheckbox_minimal-orange, 4 | .iradio_minimal-orange { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(orange.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-orange { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-orange.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-orange.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-orange.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-orange.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-orange { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-orange.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-orange.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-orange.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-orange.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-orange, 57 | .iradio_minimal-orange { 58 | background-image: url(orange@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/orange.png -------------------------------------------------------------------------------- /admin/css/all/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/orange@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_minimal-pink, 4 | .iradio_minimal-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-pink.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-pink.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-pink.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-pink.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-pink { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-pink.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-pink.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-pink.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-pink.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-pink, 57 | .iradio_minimal-pink { 58 | background-image: url(pink@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/pink.png -------------------------------------------------------------------------------- /admin/css/all/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/pink@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/purple.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, purple 2 | ----------------------------------- */ 3 | .icheckbox_minimal-purple, 4 | .iradio_minimal-purple { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(purple.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-purple { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-purple.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-purple.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-purple.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-purple.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-purple { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-purple.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-purple.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-purple.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-purple.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-purple, 57 | .iradio_minimal-purple { 58 | background-image: url(purple@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/purple.png -------------------------------------------------------------------------------- /admin/css/all/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/purple@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, red 2 | ----------------------------------- */ 3 | .icheckbox_minimal-red, 4 | .iradio_minimal-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-red.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-red.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-red.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-red.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-red { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-red.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-red.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-red.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-red.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-red, 57 | .iradio_minimal-red { 58 | background-image: url(red@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/red.png -------------------------------------------------------------------------------- /admin/css/all/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/red@2x.png -------------------------------------------------------------------------------- /admin/css/all/minimal/yellow.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Minimal skin, yellow 2 | ----------------------------------- */ 3 | .icheckbox_minimal-yellow, 4 | .iradio_minimal-yellow { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 18px; 11 | height: 18px; 12 | background: url(yellow.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_minimal-yellow { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_minimal-yellow.hover { 21 | background-position: -20px 0; 22 | } 23 | .icheckbox_minimal-yellow.checked { 24 | background-position: -40px 0; 25 | } 26 | .icheckbox_minimal-yellow.disabled { 27 | background-position: -60px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_minimal-yellow.checked.disabled { 31 | background-position: -80px 0; 32 | } 33 | 34 | .iradio_minimal-yellow { 35 | background-position: -100px 0; 36 | } 37 | .iradio_minimal-yellow.hover { 38 | background-position: -120px 0; 39 | } 40 | .iradio_minimal-yellow.checked { 41 | background-position: -140px 0; 42 | } 43 | .iradio_minimal-yellow.disabled { 44 | background-position: -160px 0; 45 | cursor: default; 46 | } 47 | .iradio_minimal-yellow.checked.disabled { 48 | background-position: -180px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 1.5), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_minimal-yellow, 57 | .iradio_minimal-yellow { 58 | background-image: url(yellow@2x.png); 59 | -webkit-background-size: 200px 20px; 60 | background-size: 200px 20px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/yellow.png -------------------------------------------------------------------------------- /admin/css/all/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/minimal/yellow@2x.png -------------------------------------------------------------------------------- /admin/css/all/polaris/polaris.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Polaris skin 2 | ----------------------------------- */ 3 | .icheckbox_polaris, 4 | .iradio_polaris { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 29px; 11 | height: 29px; 12 | background: url(polaris.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_polaris { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_polaris.hover { 21 | background-position: -31px 0; 22 | } 23 | .icheckbox_polaris.checked { 24 | background-position: -62px 0; 25 | } 26 | .icheckbox_polaris.disabled { 27 | background-position: -93px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_polaris.checked.disabled { 31 | background-position: -124px 0; 32 | } 33 | 34 | .iradio_polaris { 35 | background-position: -155px 0; 36 | } 37 | .iradio_polaris.hover { 38 | background-position: -186px 0; 39 | } 40 | .iradio_polaris.checked { 41 | background-position: -217px 0; 42 | } 43 | .iradio_polaris.disabled { 44 | background-position: -248px 0; 45 | cursor: default; 46 | } 47 | .iradio_polaris.checked.disabled { 48 | background-position: -279px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_polaris, 57 | .iradio_polaris { 58 | background-image: url(polaris@2x.png); 59 | -webkit-background-size: 310px 31px; 60 | background-size: 310px 31px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/polaris/polaris.png -------------------------------------------------------------------------------- /admin/css/all/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/polaris/polaris@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_square-aero, 4 | .iradio_square-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-aero.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-aero.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-aero.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-aero.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-aero { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-aero.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-aero.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-aero.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-aero.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-aero, 57 | .iradio_square-aero { 58 | background-image: url(aero@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/aero.png -------------------------------------------------------------------------------- /admin/css/all/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/aero@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_square-blue, 4 | .iradio_square-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-blue.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-blue.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-blue.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-blue.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-blue { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-blue.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-blue.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-blue.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-blue.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-blue, 57 | .iradio_square-blue { 58 | background-image: url(blue@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/blue.png -------------------------------------------------------------------------------- /admin/css/all/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/blue@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/green.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, green 2 | ----------------------------------- */ 3 | .icheckbox_square-green, 4 | .iradio_square-green { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(green.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-green { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-green.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-green.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-green.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-green.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-green { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-green.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-green.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-green.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-green.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-green, 57 | .iradio_square-green { 58 | background-image: url(green@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/green.png -------------------------------------------------------------------------------- /admin/css/all/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/green@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_square-grey, 4 | .iradio_square-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-grey.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-grey.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-grey.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-grey.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-grey { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-grey.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-grey.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-grey.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-grey.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-grey, 57 | .iradio_square-grey { 58 | background-image: url(grey@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/grey.png -------------------------------------------------------------------------------- /admin/css/all/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/grey@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/orange.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, orange 2 | ----------------------------------- */ 3 | .icheckbox_square-orange, 4 | .iradio_square-orange { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(orange.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-orange { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-orange.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-orange.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-orange.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-orange.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-orange { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-orange.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-orange.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-orange.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-orange.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-orange, 57 | .iradio_square-orange { 58 | background-image: url(orange@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/orange.png -------------------------------------------------------------------------------- /admin/css/all/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/orange@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_square-pink, 4 | .iradio_square-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-pink.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-pink.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-pink.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-pink.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-pink { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-pink.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-pink.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-pink.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-pink.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-pink, 57 | .iradio_square-pink { 58 | background-image: url(pink@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/pink.png -------------------------------------------------------------------------------- /admin/css/all/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/pink@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/purple.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, purple 2 | ----------------------------------- */ 3 | .icheckbox_square-purple, 4 | .iradio_square-purple { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(purple.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-purple { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-purple.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-purple.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-purple.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-purple.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-purple { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-purple.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-purple.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-purple.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-purple.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-purple, 57 | .iradio_square-purple { 58 | background-image: url(purple@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/purple.png -------------------------------------------------------------------------------- /admin/css/all/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/purple@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, red 2 | ----------------------------------- */ 3 | .icheckbox_square-red, 4 | .iradio_square-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-red.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-red.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-red.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-red.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-red { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-red.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-red.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-red.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-red.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-red, 57 | .iradio_square-red { 58 | background-image: url(red@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/red.png -------------------------------------------------------------------------------- /admin/css/all/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/red@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/square.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, black 2 | ----------------------------------- */ 3 | .icheckbox_square, 4 | .iradio_square { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(square.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square, 57 | .iradio_square { 58 | background-image: url(square@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/square.png -------------------------------------------------------------------------------- /admin/css/all/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/square@2x.png -------------------------------------------------------------------------------- /admin/css/all/square/yellow.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, yellow 2 | ----------------------------------- */ 3 | .icheckbox_square-yellow, 4 | .iradio_square-yellow { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(yellow.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-yellow { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-yellow.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-yellow.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-yellow.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-yellow.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-yellow { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-yellow.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-yellow.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-yellow.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-yellow.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* Retina support */ 52 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 53 | only screen and (-moz-min-device-pixel-ratio: 1.5), 54 | only screen and (-o-min-device-pixel-ratio: 3/2), 55 | only screen and (min-device-pixel-ratio: 1.5) { 56 | .icheckbox_square-yellow, 57 | .iradio_square-yellow { 58 | background-image: url(yellow@2x.png); 59 | -webkit-background-size: 240px 24px; 60 | background-size: 240px 24px; 61 | } 62 | } -------------------------------------------------------------------------------- /admin/css/all/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/yellow.png -------------------------------------------------------------------------------- /admin/css/all/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/css/all/square/yellow@2x.png -------------------------------------------------------------------------------- /admin/css/on-off-switch.css: -------------------------------------------------------------------------------- 1 | .on-off-switch{ 2 | position:relative; 3 | cursor:pointer; 4 | overflow:hidden; 5 | user-select:none; 6 | } 7 | 8 | .on-off-switch-track{ 9 | position:absolute; 10 | border : solid #888; 11 | z-index:1; 12 | background-color: #fff; 13 | overflow:hidden; 14 | } 15 | 16 | /* semi transparent white overlay */ 17 | .on-off-switch-track-white{ 18 | background-color:#FFF; 19 | position:absolute; 20 | opacity:0.2; 21 | z-index:30; 22 | } 23 | /* Track for "on" state */ 24 | .on-off-switch-track-on{ 25 | background-color:#009966; 26 | border-color:#008844; 27 | position:absolute; 28 | z-index:10; 29 | overflow:hidden; 30 | } 31 | /* Track for "off" state */ 32 | .on-off-switch-track-off{ 33 | position:absolute; 34 | border-color:#CCC; 35 | z-index:1; 36 | } 37 | 38 | .on-off-switch-thumb{ 39 | position:absolute; 40 | z-index:2; 41 | overflow:hidden; 42 | } 43 | 44 | .on-off-switch-thumb-shadow{ 45 | opacity:0.5; 46 | border:1px solid #000; 47 | position:absolute; 48 | } 49 | 50 | .track-on-gradient, .track-off-gradient{ 51 | 52 | 53 | position:absolute; 54 | width:100%; 55 | height:5px; 56 | } 57 | 58 | 59 | .on-off-switch-thumb-color{ 60 | 61 | background-color:#F0F0F0; 62 | position:absolute; 63 | } 64 | 65 | .on-off-switch-thumb-off{ 66 | border-color:#AAA; 67 | position:absolute; 68 | } 69 | .on-off-switch-thumb-on{ 70 | border-color:#008855; 71 | z-index:10; 72 | } 73 | .on-off-switch-text{ 74 | width:100%; 75 | position:absolute; 76 | font-family:arial; 77 | user-select:none; 78 | font-size:10px; 79 | } 80 | 81 | .on-off-switch-text-on{ 82 | color:#FFF; 83 | text-align:left; 84 | } 85 | .on-off-switch-text-off{ 86 | color:#000; 87 | text-align:right; 88 | } 89 | /* Mouse over thumb effect */ 90 | .on-off-switch-thumb-over{ 91 | background-color:#F5F5F5; 92 | } -------------------------------------------------------------------------------- /admin/customer-change-status.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | prepare("SELECT * FROM tbl_customer WHERE cust_id=?"); 10 | $statement->execute(array($_REQUEST['id'])); 11 | $total = $statement->rowCount(); 12 | if( $total == 0 ) { 13 | header('location: logout.php'); 14 | exit; 15 | } else { 16 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 17 | foreach ($result as $row) { 18 | $cust_status = $row['cust_status']; 19 | } 20 | } 21 | } 22 | ?> 23 | 24 | prepare("UPDATE tbl_customer SET cust_status=? WHERE cust_id=?"); 27 | $statement->execute(array($final,$_REQUEST['id'])); 28 | 29 | header('location: customer.php'); 30 | ?> -------------------------------------------------------------------------------- /admin/customer-delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | prepare("SELECT * FROM tbl_customer WHERE cust_id=?"); 10 | $statement->execute(array($_REQUEST['id'])); 11 | $total = $statement->rowCount(); 12 | if( $total == 0 ) { 13 | header('location: logout.php'); 14 | exit; 15 | } 16 | } 17 | ?> 18 | 19 | prepare("DELETE FROM tbl_customer WHERE cust_id=?"); 23 | $statement->execute(array($_REQUEST['id'])); 24 | 25 | // Delete from tbl_rating 26 | $statement = $pdo->prepare("DELETE FROM tbl_rating WHERE cust_id=?"); 27 | $statement->execute(array($_REQUEST['id'])); 28 | 29 | header('location: customer.php'); 30 | ?> -------------------------------------------------------------------------------- /admin/faq-add.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | '; 10 | } 11 | 12 | if(empty($_POST['faq_content'])) { 13 | $valid = 0; 14 | $error_message .= 'Content can not be empty
'; 15 | } 16 | 17 | if($valid == 1) { 18 | 19 | $statement = $pdo->prepare("INSERT INTO tbl_faq (faq_title,faq_content) VALUES (?,?)"); 20 | $statement->execute(array($_POST['faq_title'],$_POST['faq_content'])); 21 | 22 | $success_message = 'FAQ is added successfully!'; 23 | 24 | unset($_POST['faq_title']); 25 | unset($_POST['faq_content']); 26 | } 27 | } 28 | ?> 29 | 30 |
31 |
32 |

Add FAQ

33 |
34 |
35 | View All 36 |
37 |
38 | 39 | 40 |
41 | 42 |
43 |
44 | 45 | 46 |
47 |

48 | 49 |

50 |
51 | 52 | 53 | 54 |
55 |

56 |
57 | 58 | 59 |
60 |
61 |
62 |
63 | 64 |
65 | 66 |
67 |
68 |
69 | 70 |
71 | 72 |
73 |
74 |
75 | 76 |
77 | 78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 | 86 |
87 | 88 | -------------------------------------------------------------------------------- /admin/faq-delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | prepare("SELECT * FROM tbl_faq WHERE faq_id=?"); 10 | $statement->execute(array($_REQUEST['id'])); 11 | $total = $statement->rowCount(); 12 | if( $total == 0 ) { 13 | header('location: logout.php'); 14 | exit; 15 | } 16 | } 17 | ?> 18 | 19 | prepare("DELETE FROM tbl_faq WHERE faq_id=?"); 22 | $statement->execute(array($_REQUEST['id'])); 23 | 24 | header('location: faq.php'); 25 | ?> -------------------------------------------------------------------------------- /admin/faq.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

View FAQs

6 |
7 |
8 | Add FAQ 9 |
10 |
11 | 12 |
13 |
14 |
15 |
16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | prepare("SELECT * FROM tbl_faq"); 29 | $statement->execute(); 30 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 31 | foreach ($result as $row) { 32 | $i++; 33 | ?> 34 | 35 | 36 | 37 | 41 | 42 | 45 | 46 |
SLTitleAction
38 | Edit 39 | Delete 40 |
47 |
48 |
49 |
50 |
51 | 52 | 53 |
54 | 55 | 56 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /admin/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /admin/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /admin/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /admin/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /admin/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /admin/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /admin/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /admin/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /admin/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /admin/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/ionicons.eot -------------------------------------------------------------------------------- /admin/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/ionicons.ttf -------------------------------------------------------------------------------- /admin/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/ionicons.woff -------------------------------------------------------------------------------- /admin/fonts/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/summernote.eot -------------------------------------------------------------------------------- /admin/fonts/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/summernote.ttf -------------------------------------------------------------------------------- /admin/fonts/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammadshahir/PHP-MySQL-ecommerce-website/3c171df9c7055f9dc29fc77fa6e2512e537ef7d2/admin/fonts/summernote.woff -------------------------------------------------------------------------------- /admin/get-end-category.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM tbl_end_category WHERE mcat_id=?"); 8 | $statement->execute(array($id)); 9 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 10 | ?> 13 | 14 | prepare("SELECT * FROM tbl_mid_category WHERE tcat_id=?"); 8 | $statement->execute(array($id)); 9 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 10 | ?> 13 | 14 | namespace = $namespace; 26 | 27 | if (session_id() === '') 28 | { 29 | session_start(); 30 | } 31 | 32 | $this->setToken(); 33 | } 34 | 35 | /** 36 | * Return the token from persistent storage 37 | * 38 | * @return string 39 | */ 40 | public function getToken() 41 | { 42 | return $this->readTokenFromStorage(); 43 | } 44 | 45 | /** 46 | * Verify if supplied token matches the stored token 47 | * 48 | * @param string $userToken 49 | * @return boolean 50 | */ 51 | public function isTokenValid($userToken) 52 | { 53 | return ($userToken === $this->readTokenFromStorage()); 54 | } 55 | 56 | /** 57 | * Echoes the HTML input field with the token, and namespace as the 58 | * name of the field 59 | */ 60 | public function echoInputField() 61 | { 62 | $token = $this->getToken(); 63 | echo "namespace}\" value=\"{$token}\" />"; 64 | } 65 | 66 | /** 67 | * Verifies whether the post token was set, else dies with error 68 | */ 69 | public function verifyRequest() 70 | { 71 | if (!$this->isTokenValid($_POST[$this->namespace])) 72 | { 73 | die("CSRF validation failed."); 74 | } 75 | } 76 | 77 | /** 78 | * Generates a new token value and stores it in persisent storage, or else 79 | * does nothing if one already exists in persisent storage 80 | */ 81 | private function setToken() 82 | { 83 | $storedToken = $this->readTokenFromStorage(); 84 | 85 | if ($storedToken === '') 86 | { 87 | $token = md5(uniqid(rand(), TRUE)); 88 | $this->writeTokenToStorage($token); 89 | } 90 | } 91 | 92 | /** 93 | * Reads token from persistent sotrage 94 | * @return string 95 | */ 96 | private function readTokenFromStorage() 97 | { 98 | if (isset($_SESSION[$this->namespace])) 99 | { 100 | return $_SESSION[$this->namespace]; 101 | } 102 | else 103 | { 104 | return ''; 105 | } 106 | } 107 | 108 | /** 109 | * Writes token to persistent storage 110 | */ 111 | private function writeTokenToStorage($token) 112 | { 113 | $_SESSION[$this->namespace] = $token; 114 | } 115 | } 116 | -------------------------------------------------------------------------------- /admin/inc/config.php: -------------------------------------------------------------------------------- 1 | setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 29 | } 30 | catch( PDOException $exception ) { 31 | echo "Connection error :" . $exception->getMessage(); 32 | } -------------------------------------------------------------------------------- /admin/inc/functions.php: -------------------------------------------------------------------------------- 1 | prepare("SHOW TABLE STATUS LIKE '$tbl_name'"); 45 | $statement->execute(); 46 | $result = $statement->fetchAll(PDO::FETCH_ASSOC); 47 | foreach($result as $row) 48 | { 49 | $next_id = $row['Auto_increment']; 50 | } 51 | return $next_id; 52 | } -------------------------------------------------------------------------------- /admin/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables Bootstrap 3 integration 3 | ©2011-2014 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(l,q){var e=function(b,c){b.extend(!0,c.defaults,{dom:"<'row'<'col-sm-6'l><'col-sm-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-5'i><'col-sm-7'p>>",renderer:"bootstrap"});b.extend(c.ext.classes,{sWrapper:"dataTables_wrapper form-inline dt-bootstrap",sFilterInput:"form-control input-sm",sLengthSelect:"form-control input-sm"});c.ext.renderer.pageButton.bootstrap=function(g,e,r,s,i,m){var t=new c.Api(g),u=g.oClasses,j=g.oLanguage.oPaginate,d,f,n=0,p=function(c,e){var k,h,o,a,l=function(a){a.preventDefault(); 6 | b(a.currentTarget).hasClass("disabled")||t.page(a.data.action).draw(!1)};k=0;for(h=e.length;k",{"class":u.sPageButton+" "+ 7 | f,id:0===r&&"string"===typeof a?g.sTableId+"_"+a:null}).append(b("",{href:"#","aria-controls":g.sTableId,"data-dt-idx":n,tabindex:g.iTabIndex}).html(d)).appendTo(c),g.oApi._fnBindAction(o,{action:a},l),n++)}},h;try{h=b(q.activeElement).data("dt-idx")}catch(l){}p(b(e).empty().html('