ama_layout 3.2.2 → 4.0.0
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.
- checksums.yaml +4 -4
- data/ama_layout.gemspec +2 -1
- data/app/assets/images/ama-logo-blue.svg +44 -0
- data/app/assets/images/ama-logo.png +0 -0
- data/app/assets/javascripts/ama_layout/desktop/foundation-custom.js +21 -0
- data/app/assets/javascripts/ama_layout/desktop/foundation-equalizer-reflow.coffee +5 -0
- data/app/assets/javascripts/ama_layout/desktop/foundation-ready.coffee +2 -0
- data/app/assets/javascripts/ama_layout/desktop/index.js +2 -8
- data/app/assets/stylesheets/ama_layout/_settings.scss +66 -66
- data/app/assets/stylesheets/ama_layout/application.scss +0 -1
- data/app/assets/stylesheets/ama_layout/foundation_and_overrides.scss +1 -24
- data/app/assets/stylesheets/ama_layout/layout/base-styles.scss +2 -72
- data/app/assets/stylesheets/ama_layout/layout/helper-classes.scss +98 -43
- data/app/assets/stylesheets/ama_layout/layout/index.scss +2 -0
- data/app/assets/stylesheets/ama_layout/layout/mixins-grid.scss +847 -0
- data/app/assets/stylesheets/ama_layout/layout/print.scss +23 -0
- data/app/assets/stylesheets/ama_layout/layout/variables.scss +20 -4
- data/app/assets/stylesheets/ama_layout/layout_components/accordions.scss +32 -14
- data/app/assets/stylesheets/ama_layout/layout_components/banner.scss +17 -0
- data/app/assets/stylesheets/ama_layout/layout_components/blue-boxes.scss +81 -4
- data/app/assets/stylesheets/ama_layout/layout_components/breadcrumbs.scss +10 -0
- data/app/assets/stylesheets/ama_layout/layout_components/button-grouping.scss +111 -0
- data/app/assets/stylesheets/ama_layout/layout_components/buttons.scss +14 -0
- data/app/assets/stylesheets/ama_layout/layout_components/callouts.scss +106 -0
- data/app/assets/stylesheets/ama_layout/layout_components/cart.scss +98 -43
- data/app/assets/stylesheets/ama_layout/layout_components/comparison-radios.scss +113 -0
- data/app/assets/stylesheets/ama_layout/layout_components/content-toggle.scss +15 -0
- data/app/assets/stylesheets/ama_layout/layout_components/error-page.scss +3 -3
- data/app/assets/stylesheets/ama_layout/layout_components/footer.scss +65 -0
- data/app/assets/stylesheets/ama_layout/layout_components/forms.scss +141 -43
- data/app/assets/stylesheets/ama_layout/layout_components/graph.scss +8 -7
- data/app/assets/stylesheets/ama_layout/layout_components/index.scss +13 -1
- data/app/assets/stylesheets/ama_layout/layout_components/link-list.scss +53 -0
- data/app/assets/stylesheets/ama_layout/layout_components/links.scss +8 -0
- data/app/assets/stylesheets/ama_layout/layout_components/notification.scss +27 -1
- data/app/assets/stylesheets/ama_layout/layout_components/progress-bar.scss +137 -0
- data/app/assets/stylesheets/ama_layout/layout_components/reveal-modal.scss +15 -0
- data/app/assets/stylesheets/ama_layout/layout_components/sections.scss +202 -0
- data/app/assets/stylesheets/ama_layout/layout_components/sidebar.scss +45 -119
- data/app/assets/stylesheets/ama_layout/layout_components/siteheader.scss +70 -73
- data/app/assets/stylesheets/ama_layout/layout_components/tab-accordions.scss +1 -19
- data/app/assets/stylesheets/ama_layout/layout_components/tables.scss +96 -0
- data/app/assets/stylesheets/ama_layout/media_queries/mobile-and-tablet.scss +2 -2
- data/app/assets/stylesheets/ama_layout/media_queries/mobile.scss +2 -49
- data/app/assets/stylesheets/ama_layout/media_queries/tablet.scss +2 -10
- data/app/helpers/ama_layout_breadcrumb_helper.rb +5 -0
- data/app/views/ama_layout/_alert.html.erb +4 -2
- data/app/views/ama_layout/_breadcrumbs.html.erb +3 -0
- data/app/views/ama_layout/_footer.html.erb +68 -1
- data/app/views/ama_layout/_main_nav_item.html.erb +2 -3
- data/app/views/ama_layout/_notice.html.erb +2 -2
- data/app/views/ama_layout/_sidebar.html.erb +6 -9
- data/app/views/ama_layout/_siteheader.html.erb +40 -28
- data/app/views/ama_layout/_sub_nav.html.erb +1 -1
- data/app/views/ama_layout/_sub_nav_item.html.erb +2 -2
- data/app/views/ama_layout/_top_nav.html.erb +4 -4
- data/lib/ama_layout.rb +2 -0
- data/lib/ama_layout/breadcrumb_builder.rb +23 -0
- data/lib/ama_layout/decorators/navigation_decorator.rb +10 -2
- data/lib/ama_layout/decorators/navigation_item_decorator.rb +8 -2
- data/lib/ama_layout/moneris/textbox.txt +11 -15
- data/lib/ama_layout/navigation.rb +7 -2
- data/lib/ama_layout/navigation.yml +8 -13
- data/lib/ama_layout/version.rb +1 -1
- data/spec/ama_layout/breadcrumb_builder_spec.rb +32 -0
- data/spec/ama_layout/decorators/moneris_decorator_spec.rb +11 -15
- data/spec/ama_layout/decorators/navigation_decorator_spec.rb +37 -0
- data/spec/ama_layout/decorators/navigation_item_decorator_spec.rb +18 -3
- data/spec/ama_layout/navigation_spec.rb +19 -88
- data/spec/helpers/ama_layout_breadcrumb_helper_spec.rb +9 -0
- data/styles.scss +0 -0
- metadata +46 -16
- data/app/assets/javascripts/ama_layout/desktop/drop_down.coffee +0 -46
- data/app/assets/javascripts/ama_layout/desktop/foundation-namespace.coffee +0 -2
- data/app/assets/javascripts/ama_layout/desktop/header_menu.coffee +0 -7
- data/app/assets/javascripts/ama_layout/desktop/ready.coffee +0 -3
- data/app/assets/javascripts/ama_layout/desktop/sidebar.coffee +0 -4
- data/app/assets/javascripts/ama_layout/desktop/sticky-footer.coffee +0 -33
- data/app/assets/javascripts/ama_layout/desktop/toggle_menu.coffee +0 -8
- data/app/assets/stylesheets/ama_layout/layout_components/show-hide-content-box.scss +0 -11
- data/app/assets/stylesheets/ama_layout/old-ie.scss +0 -74
- data/app/assets/stylesheets/ama_layout/webfonts/ss-symbolicons.js +0 -84
|
@@ -1,144 +1,70 @@
|
|
|
1
|
-
.
|
|
2
|
-
font-size: $base-font-size*0.875;
|
|
3
|
-
font-weight: normal;
|
|
4
|
-
color: $charcoal;
|
|
5
|
-
text-transform: uppercase;
|
|
1
|
+
.side-nav{
|
|
6
2
|
background: $white;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
.dashboard-title{
|
|
11
|
-
&:first-child{
|
|
12
|
-
@extend .mt0;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.dashboard-nav{
|
|
17
|
-
width: 100%;
|
|
18
|
-
background: $white;
|
|
19
|
-
display: block;
|
|
20
|
-
margin-top: $base-margin*2;
|
|
21
|
-
text-transform: capitalize;
|
|
22
|
-
padding: $base-margin*0;
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
|
|
25
|
-
a{
|
|
26
|
-
font-family: $font-family-sans-serif;
|
|
27
|
-
font-size: $base-font-size*1.125;
|
|
28
|
-
color: $charcoal;
|
|
29
|
-
text-decoration: none;
|
|
30
|
-
display: block;
|
|
31
|
-
width: 100%;
|
|
32
|
-
padding: 18px;
|
|
3
|
+
@include grid-column(2,0);
|
|
4
|
+
@include show-for(large);
|
|
33
5
|
|
|
34
|
-
|
|
35
|
-
|
|
6
|
+
&__spacer{
|
|
7
|
+
@include breakpoint(medium down){
|
|
8
|
+
display: none;
|
|
36
9
|
}
|
|
37
10
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
margin-top: 0;
|
|
11
|
+
@include large-2;
|
|
12
|
+
height: 100%;
|
|
13
|
+
position: absolute;
|
|
14
|
+
z-index: -1; //to prevent overlap with notifications
|
|
43
15
|
|
|
44
|
-
|
|
45
|
-
.
|
|
46
|
-
|
|
47
|
-
}
|
|
16
|
+
&--white{
|
|
17
|
+
@extend .side-nav__spacer;
|
|
18
|
+
background-color: $white;
|
|
48
19
|
}
|
|
49
20
|
}
|
|
50
21
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
color: $white;
|
|
56
|
-
max-height: inherit;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
span.nav-icon{
|
|
60
|
-
color: $white;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.inner-nav{
|
|
64
|
-
max-height: 200px;
|
|
65
|
-
visibility: visible;
|
|
66
|
-
opacity: 1;
|
|
67
|
-
margin-top: 0;
|
|
68
|
-
}
|
|
22
|
+
&__header{
|
|
23
|
+
@extend .heading;
|
|
24
|
+
background: $cerulean;
|
|
25
|
+
}
|
|
69
26
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
27
|
+
&__content{
|
|
28
|
+
padding: $base-padding;
|
|
73
29
|
}
|
|
74
30
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
li:active{
|
|
78
|
-
text-decoration: underline;
|
|
79
|
-
}
|
|
31
|
+
&__list{
|
|
32
|
+
list-style-type: none;
|
|
80
33
|
}
|
|
81
34
|
|
|
35
|
+
&__item{
|
|
36
|
+
margin-bottom: $base-margin;
|
|
37
|
+
}
|
|
82
38
|
|
|
83
|
-
|
|
39
|
+
&__link{
|
|
84
40
|
display: block;
|
|
85
|
-
font-
|
|
41
|
+
font-weight: 600;
|
|
42
|
+
color: $jet;
|
|
43
|
+
margin-bottom: $base-margin/2;
|
|
86
44
|
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.inner-nav{
|
|
90
|
-
visibility: hidden;
|
|
91
|
-
max-height: 0;
|
|
92
|
-
-webkit-transition: max-height 0.15s ease-out;
|
|
93
|
-
-moz-transition: max-height 0.15s ease-out;
|
|
94
|
-
transition: max-height 0.15s ease-out;
|
|
95
|
-
margin-left: 74px;
|
|
96
|
-
margin-top: -$base-margin*3;
|
|
97
|
-
list-style: none;
|
|
98
45
|
|
|
99
|
-
|
|
100
|
-
|
|
46
|
+
&__child-list{
|
|
47
|
+
list-style-type: none;
|
|
101
48
|
}
|
|
102
49
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
font-size: $base-font-size*0.875;
|
|
50
|
+
&__child-item{
|
|
51
|
+
margin-bottom: $base-margin/2;
|
|
106
52
|
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
a.activepage{
|
|
110
|
-
background: $brand-blue-light;
|
|
111
|
-
color: $white;
|
|
112
|
-
}
|
|
113
53
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
54
|
+
&__child-link{
|
|
55
|
+
color: $stormcloud;
|
|
56
|
+
font-size: rem-calc(12);
|
|
117
57
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
58
|
+
&:active,
|
|
59
|
+
&:hover,
|
|
60
|
+
&:focus{
|
|
61
|
+
$anchor-color: $cerulean;
|
|
62
|
+
color: $anchor-color-hover;
|
|
63
|
+
}
|
|
122
64
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
margin: $base-margin*2;
|
|
128
|
-
margin-top: $base-margin*4;
|
|
129
|
-
font-size: $base-font-size*1.5;
|
|
130
|
-
color: $smoke;
|
|
131
|
-
text-align: center;
|
|
132
|
-
@include breakpoint(small only){
|
|
133
|
-
margin: $base-margin*2 $base-margin $base-margin*2 0;
|
|
134
|
-
color: $white;
|
|
65
|
+
&--active-page{
|
|
66
|
+
font-weight: bold;
|
|
67
|
+
color: $cerulean;
|
|
68
|
+
}
|
|
135
69
|
}
|
|
136
70
|
}
|
|
137
|
-
|
|
138
|
-
span.activepage{
|
|
139
|
-
color: $white;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.sub-nav{
|
|
143
|
-
margin-left: -14px;
|
|
144
|
-
}
|
|
@@ -1,113 +1,110 @@
|
|
|
1
1
|
/* Styles for Top Bar, Title Bar */
|
|
2
|
-
.
|
|
3
|
-
width:
|
|
4
|
-
padding:
|
|
2
|
+
.logo{
|
|
3
|
+
width: 131px;
|
|
4
|
+
padding: $base-padding*.75 0;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@include breakpoint(medium){
|
|
16
|
-
display: block;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
a{
|
|
20
|
-
text-decoration: none;
|
|
21
|
-
color: $white;
|
|
22
|
-
font-weight: 600;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.is-drilldown{
|
|
26
|
-
background: $brand-blue-light;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
ul{
|
|
30
|
-
li{
|
|
31
|
-
&:hover{
|
|
32
|
-
background: $brand-blue-light;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@include breakpoint(small only){
|
|
36
|
-
background: $brand-blue-light;
|
|
37
|
-
border-bottom: solid 1px darken($brand-blue-light, 5%);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
7
|
+
.header{
|
|
8
|
+
position: fixed;
|
|
9
|
+
top: 0;
|
|
10
|
+
width: 100%;
|
|
11
|
+
z-index: 9999;
|
|
12
|
+
}
|
|
41
13
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
14
|
+
.top-bar{
|
|
15
|
+
@extend .show-for-large;
|
|
16
|
+
padding: 0 $base-padding;
|
|
17
|
+
height: $top-bar-height;
|
|
18
|
+
background: $white;
|
|
45
19
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
20
|
+
&__logo{
|
|
21
|
+
@extend .logo;
|
|
49
22
|
}
|
|
50
23
|
|
|
51
24
|
.submenu{
|
|
52
25
|
border: none;
|
|
53
26
|
|
|
54
27
|
li{
|
|
55
|
-
background: $
|
|
56
|
-
border-bottom: solid 1px darken($brand-blue-light, 5%);
|
|
28
|
+
background: $cerulean;
|
|
57
29
|
|
|
58
30
|
&:nth-child(1){
|
|
59
|
-
|
|
31
|
+
margin-top: -$base-margin/2;
|
|
60
32
|
}
|
|
61
33
|
|
|
62
34
|
&:hover{
|
|
63
|
-
background: lighten($
|
|
35
|
+
background: lighten($cerulean, 5%);
|
|
64
36
|
}
|
|
65
37
|
}
|
|
38
|
+
|
|
39
|
+
a{
|
|
40
|
+
color: $white;
|
|
41
|
+
}
|
|
66
42
|
}
|
|
67
43
|
}
|
|
44
|
+
.off-canvas-wrapper{
|
|
45
|
+
/* for some reason foundation sets this to hidden for off-canvas by default,
|
|
46
|
+
which causes issues with the cart's window.scrollTop in webkit
|
|
47
|
+
So if something blows up with off-canvas, start by deleting this. */
|
|
48
|
+
backface-visibility: visible;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.top-nav-offset{
|
|
52
|
+
margin-top: $top-bar-height;
|
|
53
|
+
}
|
|
68
54
|
|
|
69
55
|
.title-bar{
|
|
70
|
-
|
|
71
|
-
padding: 0 0.5rem;
|
|
72
|
-
}
|
|
56
|
+
height: $top-bar-height;
|
|
73
57
|
|
|
74
|
-
@include breakpoint(medium)
|
|
75
|
-
|
|
58
|
+
@include breakpoint (medium down){
|
|
59
|
+
padding: 0 $base-padding;
|
|
76
60
|
}
|
|
77
61
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
width: 20px;
|
|
82
|
-
height: 16px;
|
|
83
|
-
color: $white;
|
|
62
|
+
&__logo{
|
|
63
|
+
@extend .logo;
|
|
64
|
+
@include horizontal-center;
|
|
84
65
|
}
|
|
66
|
+
}
|
|
85
67
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
68
|
+
.menu-icon{
|
|
69
|
+
@include vertical-center;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
width: 20px;
|
|
72
|
+
height: 16px;
|
|
90
73
|
|
|
91
|
-
|
|
74
|
+
&::after{
|
|
92
75
|
position: absolute;
|
|
93
76
|
display: block;
|
|
94
77
|
width: 100%;
|
|
95
|
-
height:
|
|
96
|
-
background: $
|
|
97
|
-
box-shadow: 0 7px 0 $
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.menu-icon::after{
|
|
78
|
+
height: 3px;
|
|
79
|
+
background: $cerulean;
|
|
80
|
+
box-shadow: 0 7px 0 $cerulean, 0 14px 0 $cerulean; //This creates the menu icon
|
|
101
81
|
content: '';
|
|
102
82
|
top: 0;
|
|
103
83
|
left: 0;
|
|
104
84
|
}
|
|
105
85
|
}
|
|
106
86
|
|
|
107
|
-
.
|
|
108
|
-
|
|
87
|
+
.page-header{
|
|
88
|
+
margin-bottom: $base-margin;
|
|
89
|
+
overflow: auto;
|
|
90
|
+
background: $brand-blue-light;
|
|
91
|
+
|
|
92
|
+
&__heading{
|
|
93
|
+
@extend .heading;
|
|
94
|
+
background: $brand-blue-light;
|
|
109
95
|
|
|
110
|
-
|
|
111
|
-
|
|
96
|
+
&--split{
|
|
97
|
+
@extend .page-header__heading;
|
|
98
|
+
@include small-6;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&__sub-text{
|
|
103
|
+
@extend .heading;
|
|
104
|
+
@include small-6;
|
|
105
|
+
background: $brand-blue-light;
|
|
106
|
+
font-style: italic;
|
|
107
|
+
font-size: 1.25rem;
|
|
108
|
+
text-align: right;
|
|
112
109
|
}
|
|
113
110
|
}
|
|
@@ -1,21 +1,3 @@
|
|
|
1
|
-
//Quicklink Tabs with Nested Accordions
|
|
2
|
-
.tabs.box-tabs .tab-title > a{
|
|
3
|
-
background: none;
|
|
4
|
-
padding: 0;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.tab-title.active .quicklink-box{
|
|
8
|
-
background: $stone;
|
|
9
|
-
|
|
10
|
-
.box-title{
|
|
11
|
-
color: $jet;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
i{
|
|
15
|
-
color: $smoke;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
1
|
//Accordion styles for FAQ content
|
|
20
2
|
.faq{
|
|
21
3
|
.accordion .accordion-navigation > a,
|
|
@@ -46,4 +28,4 @@
|
|
|
46
28
|
background: darken($stone, 5%);
|
|
47
29
|
}
|
|
48
30
|
}
|
|
49
|
-
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
.table{
|
|
2
|
+
margin-bottom: $base-margin;
|
|
3
|
+
|
|
4
|
+
&__row{
|
|
5
|
+
@include grid-row;
|
|
6
|
+
overflow: auto;
|
|
7
|
+
padding: $base-padding/2 0;
|
|
8
|
+
|
|
9
|
+
&--striped{
|
|
10
|
+
@extend .table__row;
|
|
11
|
+
border-bottom: 2px solid $stone;
|
|
12
|
+
|
|
13
|
+
&:first-of-type{
|
|
14
|
+
border-top: 2px solid $stone;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&--grey-bg{
|
|
19
|
+
@extend .table__row;
|
|
20
|
+
background: $stone;
|
|
21
|
+
padding: 0;
|
|
22
|
+
margin-top: 3px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&__bg-spacing{
|
|
27
|
+
padding-top: $base-padding/2;
|
|
28
|
+
padding-bottom: $base-padding/2;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&__row-nested{
|
|
32
|
+
@include grid-row-nest;
|
|
33
|
+
@include clearfix;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&__data{
|
|
37
|
+
display: block;
|
|
38
|
+
|
|
39
|
+
&--left{
|
|
40
|
+
float: left;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&--right{
|
|
44
|
+
float: right;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&--hide-large{
|
|
48
|
+
@include hide-for(large);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&__header{
|
|
53
|
+
@include show-for(medium);
|
|
54
|
+
|
|
55
|
+
&--grey-bg{
|
|
56
|
+
@extend .table__header;
|
|
57
|
+
background: $stone;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&__col-title{
|
|
62
|
+
font-weight: 600;
|
|
63
|
+
font-size: rem-calc(16);
|
|
64
|
+
color: $slate;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&__col-title--small{
|
|
68
|
+
font-weight: 600;
|
|
69
|
+
font-size: 0.875rem;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&__col-title-link{
|
|
73
|
+
padding-left: $base-padding;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&__col-color{
|
|
77
|
+
&--green{
|
|
78
|
+
background: $brand-green;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&__icon-checkmark{
|
|
83
|
+
@extend .fa;
|
|
84
|
+
@extend .fa-check-circle;
|
|
85
|
+
@extend .green-text;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.table-with-bg{
|
|
90
|
+
margin-bottom: $base-margin;
|
|
91
|
+
|
|
92
|
+
&__row{
|
|
93
|
+
@include grid-row;
|
|
94
|
+
overflow: auto;
|
|
95
|
+
}
|
|
96
|
+
}
|