active_frontend 6.6.2 → 7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -6
  3. data/CODE_OF_CONDUCT.md +13 -0
  4. data/LICENSE.txt +17 -18
  5. data/README.md +0 -1
  6. data/active_frontend.gemspec +7 -6
  7. data/lib/active_frontend/version.rb +1 -1
  8. data/vendor/assets/javascripts/chart.js +4 -4
  9. data/vendor/assets/stylesheets/_ad.scss +2 -2
  10. data/vendor/assets/stylesheets/_alert.scss +9 -9
  11. data/vendor/assets/stylesheets/_aside.scss +10 -10
  12. data/vendor/assets/stylesheets/_breadcrumb.scss +4 -4
  13. data/vendor/assets/stylesheets/_button.scss +189 -93
  14. data/vendor/assets/stylesheets/_carousel.scss +25 -12
  15. data/vendor/assets/stylesheets/_code.scss +63 -63
  16. data/vendor/assets/stylesheets/_colorpicker.scss +2 -2
  17. data/vendor/assets/stylesheets/_datepicker.scss +9 -9
  18. data/vendor/assets/stylesheets/_dropdown.scss +8 -8
  19. data/vendor/assets/stylesheets/_footer.scss +21 -10
  20. data/vendor/assets/stylesheets/_form.scss +33 -32
  21. data/vendor/assets/stylesheets/_header.scss +39 -40
  22. data/vendor/assets/stylesheets/_label_and_badge.scss +32 -32
  23. data/vendor/assets/stylesheets/_list.scss +8 -7
  24. data/vendor/assets/stylesheets/_loader.scss +4 -4
  25. data/vendor/assets/stylesheets/_map.scss +2 -2
  26. data/vendor/assets/stylesheets/_modal.scss +9 -9
  27. data/vendor/assets/stylesheets/_nav_and_tab.scss +25 -25
  28. data/vendor/assets/stylesheets/_navbar.scss +8 -8
  29. data/vendor/assets/stylesheets/_pagination.scss +5 -5
  30. data/vendor/assets/stylesheets/_panel.scss +8 -8
  31. data/vendor/assets/stylesheets/_placeholder.scss +6 -6
  32. data/vendor/assets/stylesheets/_popover.scss +15 -15
  33. data/vendor/assets/stylesheets/_progress.scss +3 -3
  34. data/vendor/assets/stylesheets/_reset.scss +7 -7
  35. data/vendor/assets/stylesheets/_sidebar.scss +11 -11
  36. data/vendor/assets/stylesheets/_spinner.scss +19 -19
  37. data/vendor/assets/stylesheets/_swoggle.scss +21 -21
  38. data/vendor/assets/stylesheets/_table.scss +12 -12
  39. data/vendor/assets/stylesheets/_timepicker.scss +6 -6
  40. data/vendor/assets/stylesheets/_tooltip.scss +7 -7
  41. data/vendor/assets/stylesheets/_trunk.scss +7 -7
  42. data/vendor/assets/stylesheets/_typeahead.scss +1 -1
  43. data/vendor/assets/stylesheets/_typography.scss +19 -13
  44. data/vendor/assets/stylesheets/activefrontend.scss +22 -1
  45. metadata +13 -12
@@ -38,13 +38,13 @@ ol { padding-left: 23px; }
38
38
  .list-lined > li,
39
39
  .list-striped > li { padding: 9px 10px 6px 10px; }
40
40
  .list-bordered > li {
41
- border: 1px solid rgba(225,232,237,1);
41
+ border: 1px solid $color-haze-dark;
42
42
  border-bottom: none;
43
43
  }
44
- .list-bordered > li:last-child { border-bottom: 1px solid rgba(225,232,237,1); }
44
+ .list-bordered > li:last-child { border-bottom: 1px solid $color-haze-dark; }
45
45
  .list-bordered.list-scrollable {
46
- border-bottom: 1px solid rgba(225,232,237,1);
47
- border-top: 1px solid rgba(225,232,237,1);
46
+ border-bottom: 1px solid $color-haze-dark;
47
+ border-top: 1px solid $color-haze-dark;
48
48
  }
49
49
  .list-bordered.list-scrollable > li:first-child { border-top: 0; }
50
50
  .list-bordered.list-scrollable > li:last-child { border-bottom: 0; }
@@ -54,12 +54,13 @@ ol { padding-left: 23px; }
54
54
  }
55
55
  .list-inline > li:last-child { margin-right: 0; }
56
56
  .list-lined > li {
57
- border-top: 1px solid rgba(225,232,237,1);
57
+ border-top: 1px solid $color-haze-dark;
58
58
  padding-left: 0;
59
59
  padding-right: 0;
60
60
  }
61
61
  .list-lined > li:first-child { border: 0; }
62
- .list-striped > li:nth-child(odd) { background: rgba(245,248,250,1); }
62
+ .list-striped > li:nth-child(odd) { background: $color-haze-light; }
63
63
  .list-bordered.list-small > li,
64
64
  .list-lined.list-small > li,
65
- .list-striped.list-small > li { padding: 5px 5px 3px 5px; }
65
+ .list-striped.list-small > li { padding: 5px 5px 3px 5px; }
66
+ .list-hover > li:hover { background: $color-haze; }
@@ -23,9 +23,9 @@
23
23
  z-index: 9999;
24
24
  }
25
25
  .loader-backdrop { background: transparent; }
26
- .loader-bar { background: $primary-color; }
26
+ .loader-bar { background: $color-primary; }
27
27
  .loader-peg {
28
- box-shadow: 0 0 10px $primary-color, 0 0 5px $primary-color;
28
+ box-shadow: 0 0 10px $color-primary, 0 0 5px $color-primary;
29
29
  display: block;
30
30
  height: 100%;
31
31
  opacity: 1;
@@ -48,8 +48,8 @@
48
48
  -webkit-animation: loader-spinner 400ms linear infinite;
49
49
  animation: loader-spinner 400ms linear infinite;
50
50
  border: solid 2px transparent;
51
- border-left-color: $primary-color;
52
- border-top-color: $primary-color;
51
+ border-left-color: $color-primary;
52
+ border-top-color: $color-primary;
53
53
  border-radius: 500px;
54
54
  box-sizing: border-box;
55
55
  height: 18px;
@@ -5,8 +5,8 @@
5
5
  /* # Map
6
6
  ================================================== */
7
7
  .map {
8
- background: rgba(245,248,250,1);
9
- border: 1px solid rgba(235,242,247,1);
8
+ background: $color-haze-light;
9
+ border: 1px solid $color-haze;
10
10
  box-sizing: border-box;
11
11
  display: block;
12
12
  min-height: 220px;
@@ -26,7 +26,7 @@
26
26
  }
27
27
  .modal {
28
28
  background-clip: padding-box;
29
- background: rgba(255,255,255,1);
29
+ background: $color-white;
30
30
  border-radius: 3px;
31
31
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
32
32
  display: none;
@@ -45,14 +45,14 @@
45
45
  }
46
46
  .modal.fade.in { top: 15%; }
47
47
  .modal-header {
48
- background: rgba(255,255,255,1);
49
- border-bottom: 1px solid rgba(230,237,242,1);
48
+ background: $color-white;
49
+ border-bottom: 1px solid $color-haze;
50
50
  border-top-right-radius: 3px;
51
51
  border-top-left-radius: 3px;
52
52
  padding: 22px 15px 20px 15px;
53
53
  }
54
54
  .modal-header > h3 {
55
- color: rgba(35,41,55,1);
55
+ color: $color-black;
56
56
  font-size: 14px;
57
57
  letter-spacing: 1px;
58
58
  line-height: 14px;
@@ -61,7 +61,7 @@
61
61
  text-transform: uppercase;
62
62
  }
63
63
  .modal-body {
64
- border-bottom: 1px solid rgba(230,237,242,1);
64
+ border-bottom: 1px solid $color-haze;
65
65
  max-height: 300px;
66
66
  overflow-y: scroll;
67
67
  padding: 15px 18px;
@@ -80,10 +80,10 @@ button.modal-footer-btn,
80
80
  input.modal-footer-btn {
81
81
  -webkit-appearance: none;
82
82
  appearance: none;
83
- background: rgba(255,255,255,1);
83
+ background: $color-white;
84
84
  border: 0;
85
85
  box-sizing: border-box;
86
- color: rgba(35,41,55,1) !important;
86
+ color: $color-black !important;
87
87
  cursor: pointer;
88
88
  float: left;
89
89
  -webkit-font-smoothing: antialiased;
@@ -108,13 +108,13 @@ input.modal-footer-btn:last-child { border-bottom-right-radius: 3px; }
108
108
  .modal-footer-btn[disabled],
109
109
  button.modal-footer-btn[disabled],
110
110
  input.modal-footer-btn[disabled] {
111
- color: rgba(136,153,166,1) !important;
111
+ color: $color-gray !important;
112
112
  cursor: not-allowed;
113
113
  }
114
114
  .modal-footer-btn-group > .modal-footer-btn,
115
115
  .modal-footer-btn-group > button.modal-footer-btn,
116
116
  .modal-footer-btn-group > input.modal-footer-btn {
117
- border-right: 1px solid rgba(230,237,242,1);
117
+ border-right: 1px solid $color-haze;
118
118
  width: 50%;
119
119
  }
120
120
  .modal-footer-btn-group > .modal-footer-btn:last-child,
@@ -14,7 +14,7 @@
14
14
  .nav > .pull-left { float: left; }
15
15
  .nav > .pull-right { float: right; }
16
16
  .nav > li > a {
17
- color: rgba(136,153,166,1);
17
+ color: $color-gray;
18
18
  display: block;
19
19
  font-size: 14px;
20
20
  font-weight: bold;
@@ -23,14 +23,14 @@
23
23
  .nav > li > a:hover,
24
24
  .nav > li > a:active,
25
25
  .nav > li > a:focus {
26
- color: rgba(35,41,55,1);
26
+ color: $color-black;
27
27
  text-decoration: none;
28
28
  }
29
29
  .nav-header {
30
- background: $primary-color;
30
+ background: $color-primary;
31
31
  border-top-right-radius: 3px;
32
32
  border-top-left-radius: 3px;
33
- color: rgba(255,255,255,1);
33
+ color: $color-white;
34
34
  display: block;
35
35
  font-size: 14px;
36
36
  font-weight: bold;
@@ -49,22 +49,22 @@
49
49
  margin-right: -15px;
50
50
  }
51
51
  .nav-list > li > a {
52
- color: rgba(136,153,166,1);
52
+ color: $color-gray;
53
53
  font-weight: bold;
54
54
  padding: 11px 15px;
55
55
  }
56
56
  .nav-list > li > a:hover,
57
- .nav-list > li > a:focus { background: rgba(245,248,250,1); }
57
+ .nav-list > li > a:focus { background: $color-haze-light; }
58
58
  .nav-list > li > a:active,
59
59
  .nav-list > .active > a,
60
60
  .nav-list > .active > a:hover,
61
61
  .nav-list > .active > a:active,
62
62
  .nav-list > .active > a:focus {
63
- background: rgba(240,243,245,1);
64
- color: rgba(35,41,55,1);
63
+ background: $color-haze;
64
+ color: $color-black;
65
65
  }
66
66
  .nav-list > .divider {
67
- background: rgba(245,248,250,1);
67
+ background: $color-haze-light;
68
68
  height: 1px;
69
69
  margin: 10px 0 10px 0;
70
70
  overflow: hidden;
@@ -79,7 +79,7 @@
79
79
  }
80
80
  .nav-tabs:after,
81
81
  .nav-pills:after { clear: both; }
82
- .nav-tabs { border-bottom: 1px solid rgba(245,248,250,1); }
82
+ .nav-tabs { border-bottom: 1px solid $color-haze-light; }
83
83
  .nav-tabs > li,
84
84
  .nav-pills > li { float: left; }
85
85
  .nav-tabs > li > a {
@@ -91,33 +91,33 @@
91
91
  .nav-tabs > .active > a:hover,
92
92
  .nav-tabs > .active > a:active,
93
93
  .nav-tabs > .active > a:focus {
94
- border-bottom-color: rgba(245,248,250,1);
95
- color: $primary-color;
94
+ border-bottom-color: $color-haze-light;
95
+ color: $color-primary;
96
96
  }
97
97
  .nav-tabs .open a.dropdown-toggle { background: transparent; }
98
98
  .nav-pills > li > a {
99
- background: rgba(245,248,250,1);
99
+ background: $color-haze-light;
100
100
  border-radius: 2px;
101
- color: rgba(136,153,166,1);
101
+ color: $color-gray;
102
102
  margin-right: 3px;
103
103
  padding: 9px 10px;
104
104
  }
105
105
  .nav-pills > li > a:hover,
106
106
  .nav-pills > li > a:active,
107
- .nav-pills > li > a:focus { background: rgba(240,243,245,1); }
107
+ .nav-pills > li > a:focus { background: $color-haze; }
108
108
  .nav-pills > .active > a,
109
109
  .nav-pills > .active > a:hover,
110
110
  .nav-pills > .active > a:active,
111
111
  .nav-pills > .active > a:focus {
112
- background: $primary-color;
113
- color: rgba(255,255,255,1);
112
+ background: $color-primary;
113
+ color: $color-white;
114
114
  }
115
115
  .nav-stacked > li { float: none; }
116
116
  .nav-stacked > li > a { margin-right: 0; }
117
117
  .nav-tabs.nav-stacked { border-bottom: 0; }
118
118
  .nav-tabs.nav-stacked > li > a {
119
- background: rgba(245,248,250,1);
120
- color: rgba(136,153,166,1);
119
+ background: $color-haze-light;
120
+ color: $color-gray;
121
121
  padding: 10px 10px 8px 10px;
122
122
  }
123
123
  .nav-tabs.nav-stacked > li:first-child > a {
@@ -131,13 +131,13 @@
131
131
  .nav-tabs.nav-stacked > li > a:hover,
132
132
  .nav-tabs.nav-stacked > li > a:active,
133
133
  .nav-tabs.nav-stacked > li > a:focus {
134
- background: rgba(245,248,250,1);
135
- color: rgba(35,41,55,1);
134
+ background: $color-haze-light;
135
+ color: $color-black;
136
136
  z-index: 2;
137
137
  }
138
138
  .nav-tabs.nav-stacked > .active > a {
139
- background: $primary-color;
140
- color: rgba(255,255,255,1);
139
+ background: $color-primary;
140
+ color: $color-white;
141
141
  border-bottom: 0;
142
142
  padding: 10px;
143
143
  }
@@ -151,8 +151,8 @@
151
151
  .nav > li.dropdown.open.active > a:hover,
152
152
  .nav > li.dropdown.open.active > a:active,
153
153
  .nav > li.dropdown.open.active > a:focus {
154
- background: rgba(240,243,245,1);
155
- color: rgba(35,41,55,1);
154
+ background: $color-haze;
155
+ color: $color-black;
156
156
  }
157
157
 
158
158
  /* # Tab
@@ -14,9 +14,9 @@
14
14
  z-index: 1030;
15
15
  }
16
16
  .navbar {
17
- background: rgba(255,255,255,1);
17
+ background: $color-white;
18
18
  border-collapse: separate;
19
- border-top: 2px solid rgba(230,237,242,1);
19
+ border-top: 2px solid $color-haze;
20
20
  box-sizing: border-box;
21
21
  display: table;
22
22
  height: 48px;
@@ -24,7 +24,7 @@
24
24
  width: 100%;
25
25
  }
26
26
  .navbar > a {
27
- color: $primary-color;
27
+ color: $color-primary;
28
28
  display: table-cell;
29
29
  float: none;
30
30
  font-size: 27px;
@@ -37,13 +37,13 @@
37
37
  ================================================== */
38
38
  .navbar-dark,
39
39
  .navbar-primary { border-color: rgba(0,0,0,0.2); }
40
- .navbar-dark { background: rgba(35,41,55,1); }
41
- .navbar-primary { background: $primary-color; }
40
+ .navbar-dark { background: $color-black; }
41
+ .navbar-primary { background: $color-primary; }
42
42
  .navbar-dark > a,
43
- .navbar-primary > a { color: rgba(255,255,255,1); }
43
+ .navbar-primary > a { color: $color-white; }
44
44
  .navbar-light {
45
- background: rgba(245,248,250,1);
46
- border-color: rgba(225,232,237,1);
45
+ background: $color-haze-light;
46
+ border-color: $color-haze-dark;
47
47
  }
48
48
 
49
49
  /* # Media Queries
@@ -17,9 +17,9 @@
17
17
  }
18
18
  .pagination > ul > li > a,
19
19
  .pagination > ul > li.active {
20
- background: rgba(245,248,250,1);
20
+ background: $color-haze-light;
21
21
  border-radius: 500px;
22
- color: rgba(35,41,55,1);
22
+ color: $color-black;
23
23
  min-width: 8px;
24
24
  padding: 9px 10px 7px 10px;
25
25
  text-align: center;
@@ -27,15 +27,15 @@
27
27
  }
28
28
  .pagination > ul > li > a:active,
29
29
  .pagination > ul > li.active {
30
- background: $primary-color;
31
- color: rgba(255,255,255,1);
30
+ background: $color-primary;
31
+ color: $color-white;
32
32
  }
33
33
  .pagination > ul > li.active {
34
34
  padding-bottom: 6px;
35
35
  padding-top: 8px;
36
36
  }
37
37
  .pagination > ul > li > a:hover,
38
- .pagination > ul > li > a:focus { background: rgba(235,238,240,1); }
38
+ .pagination > ul > li > a:focus { background: $color-haze; }
39
39
  .pagination > ul > li.pagination-icon:first-child > a { padding-right: 11px; }
40
40
  .pagination > ul > li.pagination-icon:last-child > a { padding-left: 11px; }
41
41
  .pagination-centered { text-align: center; }
@@ -5,26 +5,26 @@
5
5
  /* # Panel
6
6
  ================================================== */
7
7
  .panel {
8
- background: rgba(255,255,255,1);
9
- border: 1px solid rgba(225,232,237,1);
8
+ background: $color-white;
9
+ border: 1px solid $color-haze-dark;
10
10
  margin-bottom: 20px;
11
11
  }
12
12
  .panel-header {
13
- background: rgba(245,248,250,1);
14
- border-bottom: 1px solid rgba(225,232,237,1);
13
+ background: $color-haze-light;
14
+ border-bottom: 1px solid $color-haze-dark;
15
15
  padding: 16px 15px 14px 15px;
16
16
  }
17
17
  .panel-header > .btn { margin-top: -2px; }
18
18
  .panel-header > .btn-group { margin: -5px 0 -3px 0; }
19
19
  .panel-title {
20
- color: rgba(35,41,55,1);
20
+ color: $color-black;
21
21
  display: inline-block;
22
22
  font-size: 17px;
23
23
  line-height: 1;
24
24
  margin-bottom: 0;
25
25
  margin-top: 0;
26
26
  }
27
- .panel-title > a { color: rgba(35,41,55,1); }
27
+ .panel-title > a { color: $color-black; }
28
28
  .panel-body { padding: 15px; }
29
29
  .panel-body-chart {
30
30
  margin-bottom: -10px;
@@ -35,7 +35,7 @@
35
35
  margin-bottom: 0;
36
36
  }
37
37
  .panel-footer {
38
- background: rgba(245,248,250,1);
39
- border-top: 1px solid rgba(225,232,237,1);
38
+ background: $color-haze-light;
39
+ border-top: 1px solid $color-haze-dark;
40
40
  padding: 13px 15px 10px 15px;
41
41
  }
@@ -8,9 +8,9 @@
8
8
  ================================================== */
9
9
  .placeholder { text-align: center; }
10
10
  .placeholder > i {
11
- background: $primary-color;
11
+ background: $color-primary;
12
12
  border-radius: 500px;
13
- color: rgba(255,255,255,1);
13
+ color: $color-white;
14
14
  display: inline-block;
15
15
  font-size: 86px;
16
16
  height: 120px;
@@ -18,12 +18,12 @@
18
18
  width: 120px;
19
19
  }
20
20
  .placeholder > h6 {
21
- color: rgba(85,94,113,1);
21
+ color: $color-gray-dark;
22
22
  letter-spacing: 1px;
23
23
  text-transform: uppercase;
24
24
  }
25
25
  .placeholder > p {
26
- color: rgba(136,153,166,1);
26
+ color: $color-gray;
27
27
  font-size: 14px;
28
28
  line-height: 22px;
29
29
  }
@@ -32,7 +32,7 @@
32
32
  ================================================== */
33
33
  .placeholder-large > i {
34
34
  background: transparent;
35
- color: rgba(85,94,113,1);
35
+ color: $color-gray-dark;
36
36
  display: inline-block;
37
37
  font-size: 256px;
38
38
  height: initial;
@@ -40,7 +40,7 @@
40
40
  width: initial;
41
41
  }
42
42
  .placeholder-divider {
43
- background: rgba(245,248,250,1);
43
+ background: $color-haze-light;
44
44
  border-radius: 500px;
45
45
  height: 8px;
46
46
  margin: 20px auto;
@@ -6,9 +6,9 @@
6
6
  ================================================== */
7
7
  .popover {
8
8
  background-clip: padding-box;
9
- background: rgba(255,255,255,1);
10
- border: 1px solid rgba(225,232,237,1);
11
- box-shadow: 0 0 3px rgba(225,232,237,1);
9
+ background: $color-white;
10
+ border: 1px solid $color-haze-dark;
11
+ box-shadow: 0 0 3px $color-haze-dark;
12
12
  display: none;
13
13
  float: none;
14
14
  font-style: normal;
@@ -29,7 +29,7 @@
29
29
  .popover.left { margin-left: -10px; }
30
30
  .popover-title,
31
31
  .popover-content {
32
- color: rgba(35,41,55,1);
32
+ color: $color-black;
33
33
  font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
34
34
  font-size: 14px;
35
35
  letter-spacing: 0;
@@ -37,14 +37,14 @@
37
37
  padding: 10px 15px;
38
38
  }
39
39
  .popover-title {
40
- background: rgba(245,248,250,1);
41
- border-bottom: 1px solid rgba(225,232,237,1);
40
+ background: $color-haze-light;
41
+ border-bottom: 1px solid $color-haze-dark;
42
42
  font-weight: bold;
43
43
  line-height: 18px;
44
44
  }
45
45
  .popover-title:empty { display: none; }
46
46
  .popover-content {
47
- background: rgba(255,255,255,1);
47
+ background: $color-white;
48
48
  font-weight: normal;
49
49
  line-height: 20px;
50
50
  }
@@ -64,53 +64,53 @@
64
64
  }
65
65
  .popover.top > .arrow {
66
66
  border-bottom-width: 0;
67
- border-top-color: rgba(235,238,240,1);
67
+ border-top-color: $color-haze;
68
68
  bottom: -11px;
69
69
  left: 50%;
70
70
  margin-left: -11px;
71
71
  }
72
72
  .popover.top > .arrow:after {
73
73
  border-bottom-width: 0;
74
- border-top-color: rgba(255,255,255,1);
74
+ border-top-color: $color-white;
75
75
  bottom: 1px;
76
76
  margin-left: -10px;
77
77
  }
78
78
  .popover.right > .arrow {
79
- border-right-color: rgba(235,238,240,1);
79
+ border-right-color: $color-haze;
80
80
  border-left-width: 0;
81
81
  left: -11px;
82
82
  margin-top: -11px;
83
83
  top: 50%;
84
84
  }
85
85
  .popover.right > .arrow:after {
86
- border-right-color: rgba(255,255,255,1);
86
+ border-right-color: $color-white;
87
87
  border-left-width: 0;
88
88
  bottom: -10px;
89
89
  left: 1px;
90
90
  }
91
91
  .popover.bottom > .arrow {
92
- border-bottom-color: rgba(235,238,240,1);
92
+ border-bottom-color: $color-haze;
93
93
  border-top-width: 0;
94
94
  left: 50%;
95
95
  margin-left: -11px;
96
96
  top: -11px;
97
97
  }
98
98
  .popover.bottom > .arrow:after {
99
- border-bottom-color: rgba(255,255,255,1);
99
+ border-bottom-color: $color-white;
100
100
  border-top-width: 0;
101
101
  margin-left: -10px;
102
102
  top: 1px;
103
103
  }
104
104
  .popover.left > .arrow {
105
105
  border-right-width: 0;
106
- border-left-color: rgba(235,238,240,1);
106
+ border-left-color: $color-haze;
107
107
  margin-top: -11px;
108
108
  right: -11px;
109
109
  top: 50%;
110
110
  }
111
111
  .popover.left > .arrow:after {
112
112
  border-right-width: 0;
113
- border-left-color: rgba(255,255,255,1);
113
+ border-left-color: $color-white;
114
114
  bottom: -10px;
115
115
  right: 1px;
116
116
  }