Skip to content

Commit

Permalink
Merge pull request #81 from EC-CUBE/dev
Browse files Browse the repository at this point in the history
0.0.5 リリース待ち
  • Loading branch information
mikakane authored Apr 24, 2017
2 parents b964757 + 9b144fc commit d68c746
Show file tree
Hide file tree
Showing 33 changed files with 781 additions and 462 deletions.
2 changes: 1 addition & 1 deletion assets/gulp/browserSync.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ gulp.task("server",()=> {
`${dest}/**/*`,
`${src}/assets/tmpl/**/*`
], (e) => {
console.log(e)
// console.log(e)
setTimeout(function(){
browserSync.reload();
},500);
Expand Down
3 changes: 2 additions & 1 deletion assets/scss/component/2.2.closebutton.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "../mixins/variables";
/*
アイコンボタン
Expand Down Expand Up @@ -29,7 +30,7 @@ Styleguide 2.2.1
& &__icon{
svg{
overflow: hidden;
fill: #B8BEC4;
fill: $clrRightGray;
margin-right: 5px;
position: relative;
top: -1px;
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/component/4.1.icon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Styleguide 4.1.1
.ec-icon{
svg{
overflow: hidden;
fill: #E7E7E7;
fill: $clrRightGray;
margin-right: 5px;
position: relative;
top: -1px;
Expand Down
30 changes: 21 additions & 9 deletions assets/scss/component/6.3.login.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import "../mixins/media";
@import "../mixins/projects";
/*
ログイン
Expand Down Expand Up @@ -46,6 +47,10 @@ Styleguide 6.1.1
}
}
}
& &__actions {
color: #fff;
@include reset_link();
}
& &__link {
margin-top: 5px;
margin-left: 0;
Expand All @@ -57,7 +62,6 @@ Styleguide 6.1.1
display: none;
color: $clrRed;
}

}
.ec-login.is_active {
@include media_desktop {
Expand All @@ -70,17 +74,18 @@ Styleguide 6.1.1
}
}

/*
ゲスト購入
/*
ゲスト購入
http://demo3.ec-cube.net/mypage
http://demo3.ec-cube.net/mypage
Markup:
include /assets/tmpl/elements/6.3.login.pug
+ec-guest
Markup:
include /assets/tmpl/elements/6.3.login.pug
+ec-guest
hoge
Styleguide 6.1.2
*/
Styleguide 6.1.2
*/
.ec-guest{
display: table;
margin: 0;
Expand All @@ -101,6 +106,13 @@ Styleguide 6.1.1
margin-bottom: 16px;
}
}
& &__actions {
display: block;
vertical-align: middle;
text-align: center;
color: #fff;
@include reset_link();
}
& &__icon{
font-size: 70px;
text-align: center;
Expand Down
6 changes: 5 additions & 1 deletion assets/scss/component/7.1.itembanner.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import "../mixins/media";

@import "../mixins/projects";
/*
商品掲載
Expand Down Expand Up @@ -40,6 +40,7 @@ Styleguide 7.1.1
& &__cell {
width: 100%;
margin-bottom: 16px;
@include reset_link();
@include media_desktop {
width: 31.4466%;
margin-bottom: 0;
Expand Down Expand Up @@ -90,6 +91,7 @@ ex [トップページ 商品紹介部分](http://demo3.ec-cube.net/)
Markup:
include /assets/tmpl/elements/7.1.itembanner.pug
+ec-displayC
p hoge
Styleguide 7.1.2
*/
Expand All @@ -101,6 +103,7 @@ Styleguide 7.1.2
margin-bottom: 24px;
& &__cell{
width: 47%;
@include reset_link();
@include media_desktop(){
width: 22.8775%;
}
Expand Down Expand Up @@ -172,6 +175,7 @@ Styleguide 7.1.3
& &__cell{
width: 30%;
margin-bottom: 8px;
@include reset_link();
@include media_desktop(){
width: 14.3083%;
margin-bottom: 16px;
Expand Down
6 changes: 6 additions & 0 deletions assets/scss/component/7.2.search.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import "../mixins/media";
@import "../mixins/variables";
@import "../mixins/projects";

@mixin pager(){
}
Expand Down Expand Up @@ -43,6 +44,9 @@ Styleguide 7.2.1
font-size: 16px;
}

& &__item {
@include reset_link();
}
& &__item,
& &__divider,
& &__item--active{
Expand All @@ -53,6 +57,7 @@ Styleguide 7.2.1
}
& &__item--active{
font-weight: bold;
@include reset_link();
}
}

Expand Down Expand Up @@ -82,6 +87,7 @@ Styleguide 7.2.2
padding: 0 3px 0 2px;
text-align: center;
position: relative;
@include reset_link();
a{
color: inherit;
display: block;
Expand Down
4 changes: 4 additions & 0 deletions assets/scss/component/7.3.cart.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import "../mixins/variables";
@import "../mixins/media";
@import "../mixins/animation";
@import "../mixins/projects";
/*
カート
Expand Down Expand Up @@ -199,6 +200,7 @@ Styleguide 7.3.5
}

.ec-cartNaviNull {
display: none;
min-width: 256px;
text-align: center;
background: #f3f3f3;
Expand Down Expand Up @@ -287,6 +289,8 @@ Styleguide 7.3.6
}
}
& &__btn {
@include reset_link();
color: #fff;
.ec-blockBtn--action {
font-size: 16px;
font-weight: bold;
Expand Down
18 changes: 12 additions & 6 deletions assets/scss/component/8.1.info.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,26 @@ Styleguide 8.1.1
margin-bottom: 16px;
background: #F8F8F8;
@include media_desktop {
padding-left: 15px;
margin-right: 3%;
}
@include media_desktop {
margin-bottom: 32px;
}
& &__title{
font-weight: bold;
padding: 16px;
font-size: 24px;
padding: 8px;
font-size: 16px;
text-align: center;
@include media_desktop {
padding: 16px;
text-align: left;
font-size: 24px;
}
}
& &__items{
padding: 0;
list-style: none;
border-top: 1px solid #ccc;
border-top: 1px dotted #ccc;
}
}
/*
Expand Down Expand Up @@ -128,8 +134,8 @@ Styleguide 8.1.3
font-weight: bold;
border: 1px solid #ccc;
@include media_desktop {
margin-left: 16px;
margin-bottom: 0;
margin-left: 3%;
margin-bottom: 16px;
}
& &__intro {
color: #DE5D50;
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/mixins/media.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Twitter Bootstrap デフォルト準拠
@include clearfix;
@include commonStyle();
width: 100%;
max-width: 1150px;
//max-width: 1150px;
@include media_desktop {
padding-left: 26px;
padding-right: 26px;
Expand Down
4 changes: 3 additions & 1 deletion assets/scss/mixins/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ $font-size: 16px;
$clrRed: #DE5D50;
$clrRich: #9a947e;
$clrGray: #F3F3F3;

$clrRightGray: #B8BEC4;
$clrExtraGray: #636378;
$clrDarkGray:#525263;
@import "../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables";
Loading

0 comments on commit d68c746

Please sign in to comment.