cupboard 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. checksums.yaml +4 -4
  2. data/Dockerfile +6 -5
  3. data/README.md +1 -0
  4. data/app/assets/pages/index.md +2 -4
  5. data/app/assets/stylesheets/_base.scss +9 -4
  6. data/app/assets/stylesheets/_components.scss +77 -61
  7. data/app/assets/stylesheets/_helpers.scss +14 -0
  8. data/app/assets/stylesheets/_layouts.scss +11 -1
  9. data/app/assets/stylesheets/{widgets/_widgets.scss → base/_base.scss} +5 -4
  10. data/app/assets/stylesheets/base/_basic.scss +24 -0
  11. data/app/assets/stylesheets/{_forms.scss → base/_forms.scss} +3 -3
  12. data/app/assets/stylesheets/base/_lists.scss +70 -0
  13. data/app/assets/stylesheets/{_tables.scss → base/_table.scss} +4 -4
  14. data/app/assets/stylesheets/{_typography.scss → base/_typography.scss} +69 -74
  15. data/app/assets/stylesheets/components/_alerts.scss +12 -0
  16. data/app/assets/stylesheets/{base/_badge.scss → components/_badges.scss} +5 -4
  17. data/app/assets/stylesheets/components/_breadcrumbs.scss +6 -5
  18. data/app/assets/stylesheets/{base → components}/_buttons.scss +3 -3
  19. data/app/assets/stylesheets/components/_cards.scss +2 -2
  20. data/app/assets/stylesheets/components/_comments.scss +12 -0
  21. data/app/assets/stylesheets/components/_covers.scss +12 -0
  22. data/app/assets/stylesheets/components/_features.scss +12 -0
  23. data/app/assets/stylesheets/components/_icons.scss +15 -0
  24. data/app/assets/stylesheets/components/_modals.scss +12 -0
  25. data/app/assets/stylesheets/components/_navigations.scss +3 -3
  26. data/app/assets/stylesheets/components/_pagination.scss +7 -7
  27. data/app/assets/stylesheets/components/_recipes.scss +12 -0
  28. data/app/assets/stylesheets/components/_search-form.scss +3 -3
  29. data/app/assets/stylesheets/components/_sidebars.scss +12 -0
  30. data/app/assets/stylesheets/components/_sorting-cards.scss +3 -3
  31. data/app/assets/stylesheets/components/_user.scss +12 -0
  32. data/app/assets/stylesheets/components/alerts/_alert-global.scss +9 -10
  33. data/app/assets/stylesheets/components/alerts/_alert-market.scss +8 -47
  34. data/app/assets/stylesheets/components/alerts/_alert-no-result.scss +46 -0
  35. data/app/assets/stylesheets/components/cards/_brand-product-card.scss +72 -0
  36. data/app/assets/stylesheets/components/cards/_dish-card.scss +2 -3
  37. data/app/assets/stylesheets/components/cards/_feeds-card.scss +147 -0
  38. data/app/assets/stylesheets/components/cards/_list-card.scss +3 -2
  39. data/app/assets/stylesheets/components/cards/_photo-card.scss +2 -58
  40. data/app/assets/stylesheets/components/cards/_product-card.scss +5 -4
  41. data/app/assets/stylesheets/components/cards/_video-card.scss +6 -5
  42. data/app/assets/stylesheets/components/comments/_comment-form.scss +5 -5
  43. data/app/assets/stylesheets/components/{single_comment → comments}/_single-comment.scss +5 -5
  44. data/app/assets/stylesheets/components/{medias → covers}/_brand-cover.scss +6 -6
  45. data/app/assets/stylesheets/components/{medias → covers}/_categories-cover.scss +5 -5
  46. data/app/assets/stylesheets/{widgets → components}/features/_feature-events.scss +5 -5
  47. data/app/assets/stylesheets/{widgets → components}/features/_feature-slides.scss +5 -5
  48. data/app/assets/stylesheets/components/icons/_footer-social-icons.scss +82 -0
  49. data/app/assets/stylesheets/components/icons/_icon-status.scss +67 -0
  50. data/app/assets/stylesheets/components/icons/_icookfont.scss +93 -0
  51. data/app/assets/stylesheets/{widgets/modal → components/modals}/_modal-reset.scss +6 -6
  52. data/app/assets/stylesheets/components/modals/_recipe-list-modal.scss +169 -0
  53. data/app/assets/stylesheets/components/navigations/{_blog-nav.scss → _blog-navi.scss} +5 -5
  54. data/app/assets/stylesheets/components/navigations/{_brand-tabs-nav.scss → _brand-tabs-navi.scss} +6 -30
  55. data/app/assets/stylesheets/components/navigations/{_categories-nav-responsive.scss → _categories-navi-responsive.scss} +7 -9
  56. data/app/assets/stylesheets/components/navigations/_categories-navi.scss +203 -0
  57. data/app/assets/stylesheets/components/navigations/{_tv-nav.scss → _tv-navi.scss} +11 -42
  58. data/app/assets/stylesheets/components/recipes/_ingredients.scss +4 -70
  59. data/app/assets/stylesheets/components/recipes/_notes.scss +4 -4
  60. data/app/assets/stylesheets/components/recipes/_recipe-details.scss +48 -0
  61. data/app/assets/stylesheets/components/{navigations/_recipe-nav.scss → recipes/_recipe-navi.scss} +9 -9
  62. data/app/assets/stylesheets/components/recipes/_steps.scss +5 -5
  63. data/app/assets/stylesheets/{widgets/brands/_pr-ingredients.scss → components/sidebars/_brand-ingredients.scss} +7 -12
  64. data/app/assets/stylesheets/{widgets/sidebar-widgets/_popular-recipe-lists.scss → components/sidebars/_brand-popular-lists.scss} +31 -44
  65. data/app/assets/stylesheets/{widgets/brands/_pr-recent.scss → components/sidebars/_brand-recent-events.scss} +12 -7
  66. data/app/assets/stylesheets/{widgets/brands/_pr-video.scss → components/sidebars/_brand-video.scss} +6 -6
  67. data/app/assets/stylesheets/{widgets/sidebar-widgets → components/sidebars}/_business-kitchen.scss +15 -10
  68. data/app/assets/stylesheets/components/sidebars/_hot-categories.scss +212 -0
  69. data/app/assets/stylesheets/{widgets/sidebar-widgets → components/sidebars}/_icook-video.scss +5 -5
  70. data/app/assets/stylesheets/{widgets/sidebar-widgets → components/sidebars}/_popular-recipes.scss +5 -5
  71. data/app/assets/stylesheets/{widgets/sidebar-widgets → components/sidebars}/_popular-search.scss +72 -59
  72. data/app/assets/stylesheets/{widgets/sidebar-widgets → components/sidebars}/_recipes-collect.scss +13 -6
  73. data/app/assets/stylesheets/components/sidebars/_sidebar-basic.scss +77 -0
  74. data/app/assets/stylesheets/{widgets/tv → components/sidebars}/_tv-more-recipes.scss +20 -12
  75. data/app/assets/stylesheets/{widgets/tv → components/sidebars}/_tv-popular-tags.scss +14 -13
  76. data/app/assets/stylesheets/{widgets → components}/users/_fav-list.scss +4 -7
  77. data/app/assets/stylesheets/{widgets → components}/users/_user-stats.scss +3 -3
  78. data/app/assets/stylesheets/{mixins → helpers}/_mixin-alert.scss +1 -10
  79. data/app/assets/stylesheets/helpers/_mixin-animation.scss +11 -0
  80. data/app/assets/stylesheets/{mixins → helpers}/_mixin-badge.scss +1 -2
  81. data/app/assets/stylesheets/{mixins → helpers}/_mixin-buttons.scss +4 -8
  82. data/app/assets/stylesheets/{mixins → helpers}/_mixin-icons.scss +4 -6
  83. data/app/assets/stylesheets/{variables/_color-palette.scss → helpers/_variables-color.scss} +2 -2
  84. data/app/assets/stylesheets/layouts/{_footer.scss → _base-footer.scss} +5 -5
  85. data/app/assets/stylesheets/layouts/_footer-nav.scss +5 -5
  86. data/app/assets/stylesheets/layouts/_footers.scss +2 -2
  87. data/app/assets/stylesheets/layouts/_global-navbar.scss +6 -6
  88. data/app/assets/stylesheets/{components/_grid.scss → layouts/_grids.scss} +6 -4
  89. data/app/assets/stylesheets/layouts/_headers.scss +3 -3
  90. data/app/assets/stylesheets/layouts/_sub-header-market.scss +5 -5
  91. data/lib/cupboard/version.rb +1 -1
  92. metadata +63 -72
  93. data/app/assets/pages/atomic.md +0 -56
  94. data/app/assets/stylesheets/_basic.scss +0 -22
  95. data/app/assets/stylesheets/_global.scss +0 -40
  96. data/app/assets/stylesheets/_images.scss +0 -125
  97. data/app/assets/stylesheets/_lists.scss +0 -203
  98. data/app/assets/stylesheets/_mixins.scss +0 -6
  99. data/app/assets/stylesheets/_variables.scss +0 -1
  100. data/app/assets/stylesheets/_widgets.scss +0 -50
  101. data/app/assets/stylesheets/components/_accordion.scss +0 -69
  102. data/app/assets/stylesheets/components/_text.scss +0 -166
  103. data/app/assets/stylesheets/components/medias/_blog-feeds.scss +0 -28
  104. data/app/assets/stylesheets/components/medias/_brand-product.scss +0 -35
  105. data/app/assets/stylesheets/components/medias/_business-kitchen.scss +0 -66
  106. data/app/assets/stylesheets/components/medias/_hot-categories.scss +0 -36
  107. data/app/assets/stylesheets/components/medias/_popular-categories.scss +0 -89
  108. data/app/assets/stylesheets/components/medias/_popular-recipes.scss +0 -38
  109. data/app/assets/stylesheets/components/medias/_pr-lists.scss +0 -53
  110. data/app/assets/stylesheets/components/medias/_recipe-reference.scss +0 -45
  111. data/app/assets/stylesheets/components/medias/_user-recipes.scss +0 -46
  112. data/app/assets/stylesheets/components/navigations/_categories-nav.scss +0 -307
  113. data/app/assets/stylesheets/mixins/_mixin-animation.scss +0 -10
  114. data/app/assets/stylesheets/mixins/_mixin-type.scss +0 -7
  115. data/app/assets/stylesheets/widgets/_brand-sidebar-widgets.scss +0 -11
  116. data/app/assets/stylesheets/widgets/_recipe-mark.scss +0 -55
  117. data/app/assets/stylesheets/widgets/_sidebar-widgets.scss +0 -11
  118. data/app/assets/stylesheets/widgets/_tv-sidebar-widgets.scss +0 -11
  119. data/app/assets/stylesheets/widgets/_user-sidebar-widgets.scss +0 -11
  120. data/app/assets/stylesheets/widgets/brands/_pr-latest.scss +0 -62
  121. data/app/assets/stylesheets/widgets/brands/_pr-popular-recipe-lists.scss +0 -51
  122. data/app/assets/stylesheets/widgets/feeds/_blog-feeds.scss +0 -144
  123. data/app/assets/stylesheets/widgets/feeds/_tv-feeds.scss +0 -143
  124. data/app/assets/stylesheets/widgets/modal/_recipe-list-modal.scss +0 -111
  125. data/app/assets/stylesheets/widgets/sidebar-widgets/_sidebar-widget.scss +0 -62
@@ -6,8 +6,8 @@
6
6
 
7
7
  /*doc
8
8
  ---
9
- parent: 17_cards
10
- name: list_card
9
+ parent: 02_cards
10
+ name: 2_list_card
11
11
  title: List card
12
12
  ---
13
13
 
@@ -33,6 +33,7 @@ title: List card
33
33
  <p class="material">食材:吐司、低筋麵粉、無鹽奶油、自製煉乳或市售</p>
34
34
  </div>
35
35
  </div>
36
+
36
37
  */
37
38
 
38
39
  @import "compass/typography/text/ellipsis";
@@ -6,8 +6,8 @@
6
6
 
7
7
  /*doc
8
8
  ---
9
- parent: 17_cards
10
- name: photo_card
9
+ parent: 02_cards
10
+ name: 1_photo_card
11
11
  title: Photo card
12
12
  ---
13
13
 
@@ -39,7 +39,6 @@ title: Photo card
39
39
  </div>
40
40
  </div>
41
41
 
42
-
43
42
  */
44
43
 
45
44
  @import "compass/typography/text/ellipsis";
@@ -130,10 +129,6 @@ $photo-card-ingredient: #aa8f83 !default;
130
129
  height: 110px;
131
130
  }
132
131
  }
133
-
134
- .feature-spot {
135
- height: 864px;
136
- }
137
132
  }
138
133
 
139
134
  @media only screen and (max-width: 991px) {
@@ -191,54 +186,3 @@ $photo-card-ingredient: #aa8f83 !default;
191
186
  }
192
187
  }
193
188
 
194
- // stat icons
195
- $stat-icon: #999 !default;
196
- $stat-icon-following: $ic-red !default;
197
-
198
- .fav-count {
199
- @include icon("\f004");
200
-
201
- &.active::before {
202
- color: $stat-icon-following;
203
- }
204
- }
205
-
206
- .views-count {
207
- @include icon("\f06e");
208
-
209
- &::before {
210
- margin-right: -2px;
211
- }
212
- }
213
-
214
- .dishes-count {
215
- @include icon("\f030");
216
- }
217
-
218
- .search-score {
219
- @include icon("\f080");
220
- }
221
-
222
- .comments-count {
223
- @include icon("\e805");
224
-
225
- &::before {
226
- font-family: "icookfont";
227
- font-weight: bold;
228
- }
229
- }
230
-
231
- .fav-count span,
232
- .dishes-count,
233
- .comments-count,
234
- .search-score {
235
- margin-left: 5px;
236
-
237
- &::before {
238
- color: $stat-icon;
239
- font-size: 12px;
240
- margin-right: 3px;
241
- width: 12px;
242
- }
243
- }
244
-
@@ -6,9 +6,9 @@
6
6
 
7
7
  /*doc
8
8
  ---
9
- parent: 17_cards
10
- name: product_card
11
- title: Product card
9
+ parent: 02_cards
10
+ name: 5_product_card
11
+ title: Market product card
12
12
  ---
13
13
 
14
14
  <div class="ic-promoted-cards clearfix">
@@ -39,8 +39,9 @@ title: Product card
39
39
  </div>
40
40
  </div>
41
41
  </a>
42
- </div>
43
42
  </div>
43
+ </div>
44
+
44
45
  */
45
46
 
46
47
  $product-card-subtitle: #777 !default;
@@ -6,8 +6,8 @@
6
6
 
7
7
  /*doc
8
8
  ---
9
- parent: 17_cards
10
- name: video_card
9
+ parent: 02_cards
10
+ name: 6_video_card
11
11
  title: Video card
12
12
  ---
13
13
 
@@ -33,9 +33,9 @@ title: Video card
33
33
  <div>
34
34
  <div class="feature-label">
35
35
  <span>最新影片</span>
36
- <div class="length">
37
- <span>0:55</span>
38
- </div>
36
+ <div class="length">
37
+ <span>0:55</span>
38
+ </div>
39
39
  </div>
40
40
  <img alt="繽紛水果氣泡水" class="img-responsive" src="/images/recipe-default.png">
41
41
  <div class="mask"></div>
@@ -47,6 +47,7 @@ title: Video card
47
47
  </a>
48
48
  </div>
49
49
  </div>
50
+
50
51
  */
51
52
 
52
53
  @import "compass/typography/text/ellipsis";
@@ -1,12 +1,12 @@
1
- // ----------------------------------
2
- // Form components - recipe comment
3
- // ----------------------------------
1
+ // --------------------------------------
2
+ // Components - Comments - Comment form
3
+ // --------------------------------------
4
4
 
5
5
  /*doc
6
6
  ---
7
+ parent: 12_comments
7
8
  title: Comment form
8
- name: 15_comment_form
9
- category: UI components
9
+ name: 1_comment_form
10
10
  ---
11
11
 
12
12
  <div class="inner-block comments">
@@ -1,12 +1,12 @@
1
- // --------------------------
2
- // Single comment
3
- // --------------------------
1
+ // ----------------------------------------
2
+ // Components - Comments - Single comment
3
+ // ----------------------------------------
4
4
 
5
5
  /*doc
6
6
  ---
7
+ parent: 12_comments
7
8
  title: Single comment
8
- name: 16_single_comment
9
- category: UI components
9
+ name: 2_single_comment
10
10
  ---
11
11
 
12
12
  <div class="inner-block comments">
@@ -1,17 +1,17 @@
1
- // ---------------------------
2
- // Media blocks - brand cover
3
- // ---------------------------
1
+ // -----------------------------------
2
+ // Components - Covers - brand cover
3
+ // -----------------------------------
4
4
 
5
5
  /*doc
6
6
  ---
7
- name: 26_brand_cover
7
+ parent: 13_covers
8
+ name: 2_brand_cover
8
9
  title: Brand cover
9
- category: UI components
10
10
  ---
11
11
 
12
12
  <div class="brand-head">
13
13
  <div class="brand-cover">
14
- <img alt="iCook" class="img-responsive" src="/images/setting-pr.jpg">
14
+ <img alt="iCook" class="img-responsive" src="/images/category-cover.png">
15
15
  <div class="cover-mask">&nbsp;</div>
16
16
  </div>
17
17
  <div class="brand">
@@ -1,15 +1,15 @@
1
1
  @import "compass/css3/images";
2
2
  @import "compass/css3/text-shadow";
3
3
 
4
- // --------------------------------
5
- // Media blocks - categories cover
6
- // --------------------------------
4
+ // ----------------------------------------
5
+ // Components - Covers - categories cover
6
+ // ----------------------------------------
7
7
 
8
8
  /*doc
9
9
  ---
10
- name: 25_categories_cover
10
+ parent: 13_covers
11
+ name: 1_categories_cover
11
12
  title: Category cover
12
- category: UI components
13
13
  ---
14
14
 
15
15
  <div class="categories-cover">
@@ -1,14 +1,14 @@
1
1
  @import "compass/typography/text/ellipsis";
2
2
 
3
- // ----------------------------
4
- // Widgets - feature events
5
- // ----------------------------
3
+ // ----------------------------------------
4
+ // Components - Feature - feature events
5
+ // ----------------------------------------
6
6
 
7
7
  /*doc
8
8
  ---
9
- parent: 03_widgets
9
+ parent: 15_features
10
10
  title: Feature events
11
- name: 2_feature_events
11
+ name: 02_feature_events
12
12
  ---
13
13
 
14
14
  <div class="row">
@@ -1,14 +1,14 @@
1
1
  @import "compass/typography/text/ellipsis";
2
2
 
3
- // ----------------------------
4
- // Widgets - feature slides
5
- // ----------------------------
3
+ // ----------------------------------------
4
+ // Components - Feature - feature slides
5
+ // ----------------------------------------
6
6
 
7
7
  /*doc
8
8
  ---
9
- parent: 03_widgets
9
+ parent: 15_features
10
10
  title: Feature slides
11
- name: 1_feature_slides
11
+ name: 01_feature_slides
12
12
  ---
13
13
 
14
14
  <div class="row">
@@ -0,0 +1,82 @@
1
+ // -------------------------------------------
2
+ // Components - icons - footer social icons
3
+ // -------------------------------------------
4
+
5
+ /*doc
6
+ ---
7
+ parent: icons
8
+ name: 02_footer_social-icons
9
+ title: Footer social icons
10
+ ---
11
+
12
+ <ul class="socials clearfix ic-meta">
13
+ <li><a class="footer-social-fb" href="#" title="愛料理 粉絲團"></a></li>
14
+ <li><a class="footer-social-line" href="#" title="愛料理 line" target="_blank"></a></li>
15
+ <li><a class="footer-social-ig" href="#" title="愛料理 Instagram" target="_blank"></a></li>
16
+ <li><a class="footer-social-twitter" href="#" title="愛料理 推特" target="_blank"></a></li>
17
+ </ul>
18
+
19
+ */
20
+
21
+ $footer-social-icons: ("fb", "twitter", "ig", "line");
22
+ $color: $ic-brown;
23
+
24
+ @each $icon in $footer-social-icons {
25
+ .footer-social-#{$icon} {
26
+ background-repeat: no-repeat;
27
+ color: $color;
28
+
29
+ &:hover {
30
+ background-color: $color;
31
+ color: $white;
32
+ }
33
+
34
+ @if $icon == "fb" {
35
+ @include icon("\f09a");
36
+ }
37
+
38
+ @if $icon == "twitter" {
39
+ @include icon("\f099");
40
+ }
41
+
42
+ @if $icon == "ig" {
43
+ @include icon("\f16d");
44
+ }
45
+
46
+ @if $icon == "line" {
47
+ @include icon("\e808");
48
+
49
+ &::before {
50
+ font-family: "icookfont";
51
+ }
52
+ }
53
+ }
54
+ }
55
+
56
+ .socials {
57
+ li {
58
+ border: 1px solid $ic-brown;
59
+ border-radius: 3px;
60
+ display: inline-block;
61
+ float: left;
62
+ height: 40px;
63
+ text-align: center;
64
+ width: 40px;
65
+
66
+ + li {
67
+ margin-left: 15px;
68
+ }
69
+ }
70
+
71
+ a {
72
+ display: inline-block;
73
+ font-size: 18px;
74
+ height: 100%;
75
+ line-height: 38px;
76
+ width: 100%;
77
+
78
+ &::before {
79
+ margin-right: 0;
80
+ }
81
+ }
82
+ }
@@ -0,0 +1,67 @@
1
+ // --------------------------------
2
+ // Components - icons - status
3
+ // --------------------------------
4
+
5
+ /*doc
6
+ ---
7
+ parent: icons
8
+ name: 01_icon_status
9
+ title: Card status
10
+ ---
11
+
12
+ <ul class="meta clearfix ic-meta">
13
+ <li class="views-count">595</li>
14
+ <li class="fav-count">4,020</li>
15
+ <li class="comments-count">6</li>
16
+ <li class="dishes-count">16</li>
17
+ </ul>
18
+
19
+ */
20
+
21
+ $stat-icon: #999 !default;
22
+ $stat-icon-following: $ic-red !default;
23
+
24
+ .fav-count {
25
+ @include icon("\f004");
26
+
27
+ &.active::before {
28
+ color: $stat-icon-following;
29
+ }
30
+ }
31
+
32
+ .views-count {
33
+ @include icon("\f06e");
34
+
35
+ &::before {
36
+ margin-right: -2px;
37
+ }
38
+ }
39
+
40
+ .dishes-count {
41
+ @include icon("\f030");
42
+ }
43
+
44
+ .comments-count {
45
+ @include icon("\e805");
46
+
47
+ &::before {
48
+ font-family: "icookfont";
49
+ font-weight: bold;
50
+ }
51
+ }
52
+
53
+ .fav-count,
54
+ .dishes-count,
55
+ .comments-count,
56
+ .views-count {
57
+ color: $stat-icon;
58
+ margin-left: 5px;
59
+
60
+ &::before {
61
+ color: $stat-icon;
62
+ font-size: 12px;
63
+ margin-right: 3px;
64
+ width: 12px;
65
+ }
66
+ }
67
+
@@ -0,0 +1,93 @@
1
+ // -------------------------------------------
2
+ // Components - icons - icookfont
3
+ // -------------------------------------------
4
+
5
+ /*doc
6
+ ---
7
+ parent: icons
8
+ name: 03_icookfont
9
+ title: icookfont
10
+ ---
11
+
12
+ `gem install icookfont-sass`
13
+
14
+ <ul class="clearfix ic-icookfont">
15
+ <li>
16
+ <span class="icon-right-small"></span>
17
+ <span>icon-right-small</span>
18
+ </li>
19
+ <li>
20
+ <span class="icon-ic-close"></span>
21
+ <span>icon-ic-close</span>
22
+ </li>
23
+ <li>
24
+ <span class="icon-ic-icook"></span>
25
+ <span>icon-ic-icook</span>
26
+ </li>
27
+ <li>
28
+ <span class="icon-ic-trash-o"></span>
29
+ <span>icon-ic-trash-o</span>
30
+ </li>
31
+ <li>
32
+ <span class="icon-ic-plus"></span>
33
+ <span>icon-ic-plus</span>
34
+ </li>
35
+ <li>
36
+ <span class="icon-ic-comment"></span>
37
+ <span>icon-ic-comment</span>
38
+ </li>
39
+ <li>
40
+ <span class="icon-drag"></span>
41
+ <span>icon-drag</span>
42
+ </li>
43
+ <li>
44
+ <span class="icon-ic-shooping-car"></span>
45
+ <span>icon-ic-shooping-car</span>
46
+ </li>
47
+ <li>
48
+ <span class="icon-ic-LINE"></span>
49
+ <span>icon-ic-LINE</span>
50
+ </li>
51
+ <li>
52
+ <span class="icon-ic-chef-command"></span>
53
+ <span>icon-ic-chef-command</span>
54
+ </li>
55
+ <li>
56
+ <span class="icon-ic-chef"></span>
57
+ <span>icon-ic-chef</span>
58
+ </li>
59
+ <li>
60
+ <span class="icon-ic-check"></span>
61
+ <span>icon-ic-check</span>
62
+ </li>
63
+ <li>
64
+ <span class="icon-ic-angle-left"></span>
65
+ <span>icon-ic-angle-left</span>
66
+ </li>
67
+ <li>
68
+ <span class="icon-ic-angle-right"></span>
69
+ <span>icon-ic-angle-right</span>
70
+ </li>
71
+ <li>
72
+ <span class="icon-ic-zoom-out"></span>
73
+ <span>icon-ic-zoom-out</span>
74
+ </li>
75
+ <li>
76
+ <span class="icon-ic-zoom-in"></span>
77
+ <span>icon-ic-zoom-in</span>
78
+ </li>
79
+ <li>
80
+ <span class="icon-volume"></span>
81
+ <span>icon-volume</span>
82
+ </li>
83
+ <li>
84
+ <span class="icon-ic-arrow-right"></span>
85
+ <span>icon-ic-arrow-right</span>
86
+ </li>
87
+ <li>
88
+ <span class="icon-ic-arrow-left"></span>
89
+ <span>icon-ic-arrow-left</span>
90
+ </li>
91
+ </ul>
92
+
93
+ */
@@ -1,10 +1,10 @@
1
- //
2
- // Widgets - modal reset
3
- //
4
- // -----------------------------
1
+ // ----------------------------------------
2
+ // Components - Modals - modal reset
3
+ // ----------------------------------------
5
4
  // # override bootstrap modal
5
+
6
6
  .modal-backdrop {
7
- background-color: #564e4a;
7
+ background-color: $ic-brown;
8
8
 
9
9
  &.in {
10
10
  opacity: 0.6;
@@ -20,7 +20,7 @@
20
20
  }
21
21
  }
22
22
 
23
- .modal-body {
23
+ .modal-body {
24
24
  font-size: 13px;
25
25
  padding: 15px 30px 30px;
26
26
  }