ama_layout 2.4.4 → 2.4.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f431f8dd1567edc9f5b00620eb8615ec6cd4726b
4
- data.tar.gz: fe4c6d5b3cb76e6b0ae3e9397ca9b6b1d8dcef0e
3
+ metadata.gz: 974975537b0b9a39e8c6d0ea8d289cb7eab0ff69
4
+ data.tar.gz: a1cb962e4956e56459b55e0b9e63388460940509
5
5
  SHA512:
6
- metadata.gz: 1dac24a3f96b080aab4fd9cf81bd8e1c39a00113e73a6400fc8bb194fa14814b5ab9a7549968fb016025a7810cd5e89d2a8be753ac6e902b13eaf962736d6f4e
7
- data.tar.gz: 894481afc4b3c8b8abbb16db5fada9ee4c3ad8e24afa67a7cdede1ff87a92f959f152d64491fc50a5fa34229ad7461596a680d5b2343488f9ced80cbc61b0924
6
+ metadata.gz: 7127eb7a6f8a93db1e6c0ae97040203d8723c138873e2e2ad60300a0b868e814e428d0a38cac044daea100f6ed37d2572ffaf4a1190138ea6d0a7d018e201cc1
7
+ data.tar.gz: 9cf8ef01530b806d2d57d92673439205bbb25775ce9565fd91025445f68f80cb06042528410243def7987d75ba9aa686b0813dbdc81dd65e88625202e5058d5c
@@ -1,6 +1,6 @@
1
1
  @import "error-page.scss";
2
2
  @import "blue-boxes.scss";
3
- @import "error-messages";
3
+ @import "notification";
4
4
  @import "sidebar";
5
5
  @import "siteheader";
6
6
  @import "forms";
@@ -0,0 +1,33 @@
1
+ .notice_notification{
2
+ padding: $base-padding*2 $base-padding*3 $base-padding*2 $base-padding*3;
3
+ background-color: $brand-blue-insurance;
4
+ color: $white;
5
+ }
6
+
7
+ .error_notification{
8
+ @extend .notice_notification;
9
+ background-color: $brand-red;
10
+ }
11
+
12
+ .summary-cart {
13
+ ul {
14
+ .summary-flash-notice {
15
+ color: $white;
16
+ background: $brand-blue-insurance;
17
+
18
+ p{
19
+ color: $white;
20
+ }
21
+ }
22
+
23
+ .delete-icon{
24
+ margin-top: $base-margin;
25
+ float: right;
26
+ }
27
+
28
+ li{
29
+ padding: 8px;
30
+ }
31
+ }
32
+ }
33
+
@@ -1,3 +1,3 @@
1
1
  module AmaLayout
2
- VERSION = '2.4.4'
2
+ VERSION = '2.4.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ama_layout
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.4
4
+ version: 2.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael van den Beuken
@@ -18,7 +18,7 @@ authors:
18
18
  autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
- date: 2016-03-17 00:00:00.000000000 Z
21
+ date: 2016-03-22 00:00:00.000000000 Z
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
24
24
  name: foundation-rails
@@ -269,10 +269,10 @@ files:
269
269
  - app/assets/stylesheets/ama_layout/layout/variables.scss
270
270
  - app/assets/stylesheets/ama_layout/layout_components/accordions.scss
271
271
  - app/assets/stylesheets/ama_layout/layout_components/blue-boxes.scss
272
- - app/assets/stylesheets/ama_layout/layout_components/error-messages.scss
273
272
  - app/assets/stylesheets/ama_layout/layout_components/error-page.scss
274
273
  - app/assets/stylesheets/ama_layout/layout_components/forms.scss
275
274
  - app/assets/stylesheets/ama_layout/layout_components/index.scss
275
+ - app/assets/stylesheets/ama_layout/layout_components/notification.scss
276
276
  - app/assets/stylesheets/ama_layout/layout_components/responsive-table.scss
277
277
  - app/assets/stylesheets/ama_layout/layout_components/sidebar.scss
278
278
  - app/assets/stylesheets/ama_layout/layout_components/siteheader.scss
@@ -1,10 +0,0 @@
1
- .notice_notification{
2
- padding: $base-padding*2 $base-padding*3 $base-padding*2 $base-padding*3;
3
- background-color: $brand-blue-insurance;
4
- color: $white;
5
- }
6
-
7
- .error_notification{
8
- @extend .notice_notification;
9
- background-color: $brand-red;
10
- }