Skip to content

Commit 6e2e529

Browse files
author
Dipu Raj
committed
Update repository structure
1 parent 993c244 commit 6e2e529

16 files changed

+981
-64
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/mpp-sc.txt
2+
/bower_components
3+
/node_modules/
4+
/vendor/
5+
coverage
6+
.DS_Store
7+
8+
# IDE Files
9+
#-------------------------
10+
/nbproject/
11+
/nbproject/private/
12+
.idea/*
13+
.vscode/*
14+
.tmp
15+
## Sublime Text cache files
16+
*.tmlanguage.cache
17+
*.tmPreferences.cache
18+
*.stTheme.cache
19+
*.sublime-workspace
20+
*.sublime-project

.npmignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Automatically ignored per:
2+
# https://www.npmjs.org/doc/developers.html#Keeping-files-out-of-your-package
3+
#
4+
# .*.swp
5+
# ._*
6+
# .DS_Store
7+
# .git
8+
# .hg
9+
# .lock-wscript
10+
# .svn
11+
# .wafpickle-*
12+
# CVS
13+
# npm-debug.log
14+
# node_modules
15+
16+
*.seed
17+
*.log
18+
*.csv
19+
*.dat
20+
*.out
21+
*.pid
22+
*.gz
23+
*.orig
24+
*.jql.js
25+
26+
work
27+
build
28+
src
29+
test
30+
spec
31+
pids
32+
logs
33+
results
34+
coverage
35+
lib-cov
36+
html-report
37+
xunit.xml
38+
39+
.project
40+
.idea
41+
.settings
42+
.iml
43+
*.sublime-workspace
44+
*.sublime-project
45+
46+
ehthumbs.db
47+
Icon?
48+
Thumbs.db
49+
.AppleDouble
50+
.LSOverride
51+
.Spotlight-V100
52+
.Trashes

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- "node"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Dipu Raj
3+
Copyright (c) 2017 Dipu Raj
44
http://www.techlaboratory.net
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# SmartCart v3-Alpha1
2-
#### The best jQuery shopping cart plugin with Bootstrap support.
1+
# SmartCart v3-Alpha
2+
#### The awesome jQuery Shopping Cart Plugin with PayPal payment support.
33

44
> Notice:- This is an alpha release for preview and tests, some or many functionalities may not work as expected.
55
> Usage on production environment is not recommended unless tested well.
@@ -17,7 +17,7 @@ Requirements
1717

1818
Version
1919
-----
20-
**SmartCart v3-Alpha1**
20+
**SmartCart v3-Alpha2**
2121

2222
License
2323
----

dist/css/smart_cart.css

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
/*!
2+
* jQuery SmartCart v3.x
3+
* The awesome jQuery Shopping Cart Plugin with PayPal payment support
4+
* http://www.techlaboratory.net/smartcart
5+
*
6+
* Created by Dipu Raj
7+
* http://dipuraj.me
8+
*
9+
* Licensed under the terms of the MIT License
10+
* https://github.com/techlab/SmartCart/blob/master/LICENSE
11+
*/
12+
13+
.sc-cart-item-list {
14+
min-height: 50px;
15+
}
16+
17+
.sc-cart-remove {
18+
background: transparent;
19+
border: none;
20+
font-size: 20px;
21+
position: absolute;
22+
top: 0;
23+
right: 0;
24+
}
25+
26+
.sc-cart-remove:hover {
27+
color: red;
28+
}
29+
30+
.sc-cart-empty-msg {
31+
color: #999;
32+
margin: 0;
33+
padding: 10px;
34+
text-align: center;
35+
}
36+
37+
.sc-cart-item-qty {
38+
width: 55px;
39+
border-radius: 3px;
40+
font-size: 12px;
41+
padding: 4px 0 3px 6px;
42+
color: #555;
43+
background-color: #fff;
44+
background-image: none;
45+
border: 1px solid #ccc;
46+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
47+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
48+
-webkit-transition: border-color 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
49+
transition: border-color 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
50+
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
51+
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
52+
}
53+
54+
.sc-cart-item-summary {
55+
text-align: right;
56+
/*border-top: 1px solid #eeeeee;*/
57+
margin-top: 5px;
58+
padding-top: 5px;
59+
}
60+
61+
.sc-cart-summary {
62+
text-align: right;
63+
font-size: 1.5em;
64+
/*font-weight: 400;*/;
65+
}
66+
67+
.sc-cart-subtotal {
68+
}
69+
70+
.sc-cart-toolbar {
71+
text-align: right;
72+
}
73+
74+
.sc-cart-item img {
75+
margin-right: 10px;
76+
width: 60px;
77+
}
78+
79+
.sc-highlight {
80+
-webkit-animation: highlight 1s;
81+
animation: highlight 1s;
82+
}
83+
84+
@keyframes highlight {
85+
from {
86+
background: #faebcc;
87+
}
88+
89+
to {
90+
background: none;
91+
}
92+
}
93+
94+
@-webkit-keyframes highlight {
95+
from {
96+
background: #faebcc;
97+
}
98+
99+
to {
100+
background: none;
101+
}
102+
}
103+
104+
.sc-product-item {
105+
position: relative;
106+
}
107+
108+
.sc-product-item:after, .sc-product-item:before {
109+
-webkit-transition: all 0.2s ease-in-out 0s;
110+
transition: all 0.2s ease-in-out 0s;
111+
}
112+
113+
.sc-added-item {
114+
border-color: #5cb85c;
115+
}
116+
117+
.sc-added-item:after {
118+
content: "\2713 ";
119+
display: inline-block;
120+
position: absolute;
121+
top: 0;
122+
right: 4px;
123+
z-index: 99;
124+
color: #fff;
125+
font-size: 18px;
126+
font-weight: bold;
127+
white-space: nowrap;
128+
}
129+
130+
.sc-added-item:before {
131+
content: "";
132+
display: inline-block;
133+
position: absolute;
134+
z-index: 98;
135+
top: 0;
136+
right: 0;
137+
border-style: solid;
138+
border-width: 0 40px 40px 0;
139+
-webkit-transform: rotate(360deg);
140+
-ms-transform: rotate(360deg);
141+
transform: rotate(360deg);
142+
border-color: rgba(255,255,255,0) #5cb85c rgba(255,255,255,0) rgba(255,255,255,0);
143+
}
144+
145+
.sc-button-checkout-default {
146+
}
147+
148+
.sc-button-checkout-paypal {
149+
border: 0;
150+
cursor: pointer;
151+
padding: 0;
152+
width: 170px;
153+
height: 32px;
154+
}

dist/css/smart_cart.min.css

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)