vbax-becky_thatcher 0.7.0 → 0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3ba3dcb6180db3bb8fcd3f745dbee97e50931cf9316a610e20a74bc934b540a
4
- data.tar.gz: 462bc959412ec30097cfb2b245c849b3fe6ea6b8d3d6318559934464e2f79523
3
+ metadata.gz: '0814b713314d7b3cbfdaf79c5f435ebb3be36718800e702b867c6fc29c879fe4'
4
+ data.tar.gz: cb6a18e84593a73ef41449cba38ec4f8f4f011cf1d5f1c624ce10d5c1c6dac71
5
5
  SHA512:
6
- metadata.gz: 89ed97bafc74ca3c88b36a790ce0258749c0f3d6be3e963682bf19134d2e505e1fdeecde1cfed14e36a3670868bc18c5cf4c9f364f7e9ad92fea4c6262839451
7
- data.tar.gz: cb07bdd86a19b1d5c33283e63ef074e84224f53c937cb1fce1e1408c1eddda4440840a10eaae41d990056cd4a2d4d005afbfd2bb2c0691ecd0d549461ace4784
6
+ metadata.gz: 3acd2a4fa282d1757cf0227a3564fd23313c9fe33f5dec74cec992d91cc0a9b622329da94df54a401f6c65cb1aecf4daa62dd1af221954cfef24578a3ba4923d
7
+ data.tar.gz: 3105967bbf7ed7220922c8ed57923a481f779a2210b2e406c9a2c99db83d9586dff41f4a2254c371fcf937464c8535830f5564c9a1b55e893a22480c165f2610
data/Gemfile.lock ADDED
@@ -0,0 +1,20 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ vbax-becky_thatcher (0.7.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (10.5.0)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ bundler (~> 2.0)
16
+ rake (~> 10.0)
17
+ vbax-becky_thatcher!
18
+
19
+ BUNDLED WITH
20
+ 2.0.1
@@ -1,5 +1,5 @@
1
1
  module Vbax
2
2
  module BeckyThatcher
3
- VERSION = "0.7.0"
3
+ VERSION = "0.8.0"
4
4
  end
5
5
  end
@@ -0,0 +1,134 @@
1
+ // GRPD
2
+ .sticker {
3
+ position: fixed;
4
+ padding: 0 30px;
5
+ left: 0;
6
+ right: 0;
7
+ bottom: 30px;
8
+ display: flex;
9
+ justify-content: center;
10
+ z-index: 999;
11
+ }
12
+ .consent {
13
+ font-size: 14px;
14
+ display: flex;
15
+ align-items: center;
16
+ position: relative;
17
+ box-sizing: border-box;
18
+ padding: 20px;
19
+ max-width: 940px;
20
+ background-color: #fff;
21
+ pointer-events: auto;
22
+ box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
23
+ border: 1px solid #ECECEE;
24
+ border-radius: 8px;
25
+ }
26
+ .consent .consent-large-flag {
27
+ height: 80px;
28
+ width: 120px;
29
+
30
+ background-size: contain;
31
+ }
32
+ .consent .consent-body {
33
+ flex: 1 1 auto;
34
+ margin: 0 25px;
35
+ }
36
+ .consent .consent-text span {
37
+ font-weight: bold;
38
+ }
39
+ .cui-button.cui-is-small {
40
+ padding: 6px 12px 5px;
41
+ min-height: 32px;
42
+ }
43
+ .consent > * {
44
+ flex: 0 0 auto;
45
+ }
46
+ .consent .consent-close {
47
+ position: absolute;
48
+ height: 32px;
49
+ width: 32px;
50
+ right: -16px;
51
+ top: -16px;
52
+ box-sizing: border-box;
53
+ border: 1px solid #ececee;
54
+ border-radius: 16px;
55
+ padding-top: 6px;
56
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
57
+ background-color: #ffffff;
58
+ color: #ececee;
59
+ text-align: center;
60
+ font-size: 19px;
61
+ cursor: pointer;
62
+ }
63
+ // [class^="icon-"] {
64
+ // display: inline-block;
65
+ // font-family: 'icomoon' !important;
66
+ // speak: none;
67
+ // font-style: normal;
68
+ // font-weight: normal;
69
+ // -webkit-font-feature-settings: normal;
70
+ // font-feature-settings: normal;
71
+ // font-variant: normal;
72
+ // text-transform: none;
73
+ // line-height: 1;
74
+ // -webkit-font-smoothing: antialiased;
75
+ // -moz-osx-font-smoothing: grayscale;
76
+ // }
77
+ .icon-close:before {
78
+ content: "\e601";
79
+ }
80
+ .cui-button {
81
+ position: relative;
82
+ box-sizing: border-box;
83
+ display: inline-flex;
84
+ align-items: center;
85
+ padding: 10px 15px 8px;
86
+ min-height: 44px;
87
+ background-color: RGB(0, 162, 255);
88
+ background-color: var(--primary-color, #00a2ff);
89
+ border: 1px solid RGB(0, 162, 255);
90
+ border: 1px solid var(--primary-color, #00a2ff);
91
+ border-radius: 6px;
92
+ text-decoration: none;
93
+ text-align: center;
94
+ font-size: 14px;
95
+ justify-content: center;
96
+ color: #fff;
97
+ cursor: pointer;
98
+ -webkit-user-select: none;
99
+ -moz-user-select: none;
100
+ -ms-user-select: none;
101
+ user-select: none;
102
+ }
103
+ @media only screen and (max-width: 800px){
104
+
105
+ .consent {
106
+ display: block;
107
+ }
108
+ }
109
+ @media only screen and (max-width: 800px){
110
+ .consent .consent-large-flag {
111
+ display: none;
112
+ }
113
+
114
+ }
115
+ @media only screen and (max-width: 800px){
116
+ .consent .consent-body {
117
+ margin: 0 0 20px 0;
118
+ }
119
+ }
120
+
121
+ @media only screen and (max-width: 800px){
122
+
123
+ .consent .consent-small-flag {
124
+ display: inline-block;
125
+ }
126
+ .consent .consent-small-flag::before {
127
+ content: '🇪🇺';
128
+ }
129
+ }
130
+ @media (max-width: 800px){
131
+ .cui-button:not(.cui-is-not-responsive) {
132
+ width: 100%;
133
+ }
134
+ }
@@ -138,11 +138,12 @@
138
138
  }
139
139
  }
140
140
  .btn-simple{
141
- border: $border;
141
+ border: $border!important;
142
142
  border-color: $default;
143
143
  box-shadow: none;
144
144
  padding: $padding-btn-vertical - 1 $padding-round-horizontal - 1;
145
145
  background-color: $transparent-bg;
146
+
146
147
  }
147
148
 
148
149
  .btn-simple,
@@ -322,10 +322,10 @@
322
322
  margin:0;
323
323
  }
324
324
  &.on-quotation{
325
- width: 144px;
326
- background: rgba(0, 0, 0, 0.0);
325
+ width: 154px;
326
+ background: rgba(0, 0, 0, 0);
327
327
  top: 90%;
328
- right: 50px;
328
+ right: 90px;
329
329
  }
330
330
  }
331
331
 
@@ -13,3 +13,4 @@
13
13
  @import "mixins/inputs.scss";
14
14
  @import "mixins/dropdown.scss";
15
15
  @import "mixins/wizard.scss";
16
+ @import "mixins/hhgb12.scss";
@@ -19,7 +19,7 @@
19
19
  .sidebar,
20
20
  .off-canvas-sidebar{
21
21
  @include linear-gradient($primary-states, $primary);
22
- height: calc(100vh - 90px);
22
+ height: calc(80vh - 90px);
23
23
  width: 230px;
24
24
  position: fixed;
25
25
  top: 0;
@@ -146,6 +146,7 @@ $darker: darken($gray-900, 15%) !default;
146
146
 
147
147
  $facebook: #3b5998 !default;
148
148
  $facebook-states: darken($facebook, 5%) !default;
149
+ $invision: #ff3366!default;
149
150
  $twitter: #55acee !default;
150
151
  $twitter-states: darken($twitter, 5%) !default;
151
152
  $google-plus: #dd4b39 !default;
@@ -177,7 +178,7 @@ $theme-colors: map-merge((
177
178
  "success": $success,
178
179
  "info": $info,
179
180
  "warning": $warning,
180
- "danger": $danger,
181
+ "danger": $invision,
181
182
  "white": $white,
182
183
  "neutral": $white,
183
184
  "dark": $dark,
@@ -208,6 +209,7 @@ $brand-info: $info !default;
208
209
  $brand-success: $success !default;
209
210
  $brand-warning: $warning !default;
210
211
  $brand-danger: $danger !default;
212
+ $brand-danger: $invision !default;
211
213
  $brand-inverse: $black !default;
212
214
 
213
215
  $topbar-x: topbar-x !default;
@@ -244,7 +244,8 @@
244
244
 
245
245
  .card:not(.card-white){
246
246
  background: $white;
247
- box-shadow: 0 1px 15px 0 rgba(123, 123, 123, 0.05);
247
+ // box-shadow: 0 1px 15px 0 rgba(123, 123, 123, 0.05);
248
+ box-shadow: 0 12px 40px -12px rgba(56, 40, 77, 0.3);
248
249
  .card-header{
249
250
  color: $black;
250
251
  a[data-toggle="collapse"]{
@@ -49,6 +49,9 @@
49
49
  &.icon-success {
50
50
  @include diagonal-gradient($success,$success-states);
51
51
  }
52
+ &.icon-success-reverse {
53
+ @include diagonal-gradient($success-states,$success);
54
+ }
52
55
 
53
56
  &.icon-info {
54
57
  @include diagonal-gradient($info,$info-states);
@@ -92,6 +95,13 @@
92
95
  border-color: rgba(43, 53, 83, 0.2)
93
96
  }
94
97
  }
98
+
99
+ }
100
+ .add_quotation_button_general_cta{
101
+ @include button_floating;
102
+ @include hover {
103
+ z-index: 1;
104
+ }
95
105
  }
96
106
 
97
107
  @include media-breakpoint-down(sm){
@@ -173,6 +173,9 @@
173
173
  box-shadow: none;
174
174
  }
175
175
  }
176
+ a{
177
+ color: $btn-color!important;
178
+ }
176
179
  }
177
180
 
178
181
  &.btn-link{
@@ -0,0 +1,15 @@
1
+ @mixin button_floating {
2
+ padding: 0.0;
3
+ font-size: 27px;
4
+ width: 70px;
5
+ height: 70px;
6
+ position: fixed;
7
+ border-radius: 50%;
8
+ cursor: pointer;
9
+ background-color: #f36;
10
+ bottom: 3%;
11
+ left: 0%;
12
+ margin-left: 27px;
13
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
14
+ z-index: 999999999999;
15
+ }
@@ -417,7 +417,7 @@
417
417
  // for administrate
418
418
  .default_icon::before{
419
419
  content: "\ea38";
420
-
420
+
421
421
  }
422
422
  .icon-custom-projects::before {
423
423
  content: "\ea15";
@@ -437,11 +437,19 @@
437
437
  .icon-custom-products::before {
438
438
  content: "\ea05";
439
439
  }
440
- .icon-custom-categories::before,
441
- .icon-custom-sub_categories::before{
440
+ .icon-custom-categories::before{
442
441
  content: "\ea38";
443
442
  }
443
+ .icon-custom-sub_categories::before{
444
+ content: "\ea50";
445
+ }
444
446
 
447
+ .icon-custom-prospects::before{
448
+ content: "\ea29";
449
+ }
450
+ .icon-custom-single_options::before{
451
+ content: "\ea06";
452
+ }
445
453
 
446
454
  // [class^='icon-custom-']::before {
447
455
  // content: "\ea38";
@@ -127,3 +127,4 @@
127
127
 
128
128
  // some perso scss
129
129
  @import 'becky_thatcher/custom/hhgb12';
130
+ @import 'becky_thatcher/custom/GRPD';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vbax-becky_thatcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - v baxter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-30 00:00:00.000000000 Z
11
+ date: 2019-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -47,6 +47,7 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
49
  - Gemfile
50
+ - Gemfile.lock
50
51
  - LICENSE.txt
51
52
  - README.md
52
53
  - Rakefile
@@ -139,6 +140,7 @@ files:
139
140
  - lib/vbax/sass/becky_thatcher/bootstrap/utilities/_spacing.scss
140
141
  - lib/vbax/sass/becky_thatcher/bootstrap/utilities/_text.scss
141
142
  - lib/vbax/sass/becky_thatcher/bootstrap/utilities/_visibility.scss
143
+ - lib/vbax/sass/becky_thatcher/custom/_GRPD.scss
142
144
  - lib/vbax/sass/becky_thatcher/custom/_alerts.scss
143
145
  - lib/vbax/sass/becky_thatcher/custom/_avatars.scss
144
146
  - lib/vbax/sass/becky_thatcher/custom/_badge.scss
@@ -202,6 +204,7 @@ files:
202
204
  - lib/vbax/sass/becky_thatcher/custom/mixins/_buttons.scss
203
205
  - lib/vbax/sass/becky_thatcher/custom/mixins/_dropdown.scss
204
206
  - lib/vbax/sass/becky_thatcher/custom/mixins/_forms.scss
207
+ - lib/vbax/sass/becky_thatcher/custom/mixins/_hhgb12.scss
205
208
  - lib/vbax/sass/becky_thatcher/custom/mixins/_icon.scss
206
209
  - lib/vbax/sass/becky_thatcher/custom/mixins/_inputs.scss
207
210
  - lib/vbax/sass/becky_thatcher/custom/mixins/_modals.scss