vbax-becky_thatcher 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/becky_thatcher/asc.gif +0 -0
  3. data/app/assets/images/becky_thatcher/bg.gif +0 -0
  4. data/app/assets/images/becky_thatcher/desc.gif +0 -0
  5. data/lib/vbax/becky_thatcher/engine.rb +4 -1
  6. data/lib/vbax/becky_thatcher/version.rb +1 -1
  7. data/lib/vbax/sass/becky_thatcher/bootstrap/_card.scss +1 -0
  8. data/lib/vbax/sass/becky_thatcher/bootstrap/_tables.scss +0 -4
  9. data/lib/vbax/sass/becky_thatcher/bootstrap/_type.scss +60 -6
  10. data/lib/vbax/sass/becky_thatcher/bootstrap/_variables.scss +4 -1
  11. data/lib/vbax/sass/becky_thatcher/custom/_buttons.scss +2 -0
  12. data/lib/vbax/sass/becky_thatcher/custom/_card.scss +3 -0
  13. data/lib/vbax/sass/becky_thatcher/custom/_dropdown.scss +16 -18
  14. data/lib/vbax/sass/becky_thatcher/custom/_example-pages.scss +5 -0
  15. data/lib/vbax/sass/becky_thatcher/custom/_fixed-plugin.scss +10 -4
  16. data/lib/vbax/sass/becky_thatcher/custom/_hhgb12.scss +12 -0
  17. data/lib/vbax/sass/becky_thatcher/custom/_pills.scss +11 -0
  18. data/lib/vbax/sass/becky_thatcher/custom/_sidebar-and-main-panel.scss +15 -0
  19. data/lib/vbax/sass/becky_thatcher/custom/_tables.scss +6 -3
  20. data/lib/vbax/sass/becky_thatcher/custom/_variables.scss +8 -1
  21. data/lib/vbax/sass/becky_thatcher/custom/_white-content.scss +3 -2
  22. data/lib/vbax/sass/becky_thatcher/custom/cards/_card-stats.scss +21 -0
  23. data/lib/vbax/sass/becky_thatcher/custom/cards/_card-user.scss +4 -4
  24. data/lib/vbax/sass/becky_thatcher/custom/mixins/_buttons.scss +1 -1
  25. data/lib/vbax/sass/becky_thatcher/custom/vendor/_plugin-bootstrap-switch.scss +1 -1
  26. data/lib/vbax/sass/becky_thatcher/custom/vendor/_plugin-datetimepicker.scss +6 -6
  27. data/lib/vbax/sass/becky_thatcher.scss +4 -19
  28. metadata +6 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4158e5a5e98b80c7281995ce631878bbc1b9f44ca96d1e7174cb9d8537bb79ab
4
- data.tar.gz: f9265ba3d33ea1ba18626f1754348cd3560b6436de2009a19a7da2d87b2348d0
3
+ metadata.gz: f66b0e70c3cb2deade573c6bed4910b4c65452fc6bbecfd9b8272dee2adf152a
4
+ data.tar.gz: 2f49aa3433118f48eeb979611cbb1ec6cc8ec58493fb03938e9390e3474f8c73
5
5
  SHA512:
6
- metadata.gz: ae6e897b0f608256d00931284528a92dc943ffc03e7e94b19bc1abe8016007d0dfbbdfd5687f2f5d217c8538afaeb0d892b37dc369e12e37e6752ace4855f263
7
- data.tar.gz: 5f9a76bd80ce1568a43810c12011edd26ca6f2cd41dade01b084169a554c2b5305c8ca1effbe91014282740fc1d560439bb025dbcd42c11e05f36f03aef37237
6
+ metadata.gz: 01f2fecb27e7c6f8fbd444643084b7bf9eb71cc858e40147dc009cb61a20ee52ff07630522974ddd565f8cc824ab479382ba6a83d2020e2bbe0de16b9d9e7141
7
+ data.tar.gz: 724a78fd8b4cb7d143d0ac7747c243c1700c64e4e08670953dd2663dd017770726a5d55b6b63d6230e64f110e6ed2da853e8b6246e9980b48ee22197c180a0ca
@@ -1,6 +1,9 @@
1
1
  module Vbax
2
2
  module BeckyThatcher
3
3
  class Engine < ::Rails::Engine
4
+ initializer 'becky_thatcher.setup' do |app|
5
+ app.config.assets.precompile += Dir.glob(config.root + 'app/assets/images/becky_thatcher/**/*').select{ |f| File.file? f }.map { |m| "becky_thatcher/" + File.path(m).split("becky_thatcher/").last }
6
+ end
4
7
  initializer 'becky_thatcher.sass' do |app|
5
8
  # Set the sass load paths
6
9
  app.config.sass.load_paths << File.join(config.root, "lib","vbax", "sass")
@@ -8,7 +11,7 @@ module Vbax
8
11
  # Set the add becky_thatcher/lib/sass to assets path
9
12
  app.config.assets.paths << File.join(config.root, "lib","vbax", "sass")
10
13
  end
11
-
14
+
12
15
  end
13
16
  end
14
17
  end
@@ -1,5 +1,5 @@
1
1
  module Vbax
2
2
  module BeckyThatcher
3
- VERSION = "0.3.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
@@ -32,6 +32,7 @@
32
32
 
33
33
  &.transparency{
34
34
  background-color: $table-bg!important;
35
+ box-shadow:none!important;
35
36
  }
36
37
  }
37
38
 
@@ -22,10 +22,6 @@
22
22
  tbody + tbody {
23
23
  border-top: (2 * $table-border-width) solid $table-border-color;
24
24
  }
25
-
26
- .table {
27
- background-color: $body-bg;
28
- }
29
25
  }
30
26
 
31
27
 
@@ -13,12 +13,66 @@ h1, h2, h3, h4, h5, h6,
13
13
  color: $headings-color;
14
14
  }
15
15
 
16
- h1, .h1 { font-size: $h1-font-size; }
17
- h2, .h2 { font-size: $h2-font-size; }
18
- h3, .h3 { font-size: $h3-font-size; }
19
- h4, .h4 { font-size: $h4-font-size; }
20
- h5, .h5 { font-size: $h5-font-size; }
21
- h6, .h6 { font-size: $h6-font-size; }
16
+ @function strip-unit($value) {
17
+ @return $value / ($value * 0 + 1);
18
+ }
19
+
20
+ @mixin fluid-type($min-vw, $max-vw, $min-font-size, $max-font-size) {
21
+ $u1: unit($min-vw);
22
+ $u2: unit($max-vw);
23
+ $u3: unit($min-font-size);
24
+ $u4: unit($max-font-size);
25
+
26
+ @if $u1 == $u2 and $u1 == $u3 and $u1 == $u4 {
27
+ & {
28
+ font-size: $min-font-size;
29
+ @media screen and (min-width: $min-vw) {
30
+ font-size: calc(#{$min-font-size} + #{strip-unit($max-font-size - $min-font-size)} * ((100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)}));
31
+ }
32
+ @media screen and (min-width: $max-vw) {
33
+ font-size: $max-font-size;
34
+ }
35
+ }
36
+ }
37
+ }
38
+ $big-screen: 1;
39
+ $small-screen: 0.6;
40
+ h1, .h1 {
41
+ $average_font: 40px;
42
+ $max_font: $average_font*$big-screen ;
43
+ $min_font: $average_font*$small-screen ;
44
+ @include fluid-type($min_width, $max_width, $min_font, $max_font);
45
+ }
46
+ h2, .h2 {
47
+ $average_font: 32px;
48
+ $max_font: $average_font*$big-screen ;
49
+ $min_font: $average_font*$small-screen ;
50
+ @include fluid-type($min_width, $max_width, $min_font, $max_font);
51
+ }
52
+ h3, .h3 {
53
+ $average_font: 28px;
54
+ $max_font: $average_font*$big-screen ;
55
+ $min_font: $average_font*$small-screen ;
56
+ @include fluid-type($min_width, $max_width, $min_font, $max_font);
57
+ }
58
+ h4, .h4 {
59
+ $average_font: 24px;
60
+ $max_font: $average_font*$big-screen ;
61
+ $min_font: $average_font*$small-screen ;
62
+ @include fluid-type($min_width, $max_width, $min_font, $max_font);
63
+ }
64
+ h5, .h5 {
65
+ $average_font: 20px;
66
+ $max_font : $average_font*$big-screen ;
67
+ $min_font: $average_font*$small-screen ;
68
+ @include fluid-type($min_width, $max_width, $min_font, $max_font);
69
+ }
70
+ h6, .h6 {
71
+ $average_font: 16px;
72
+ $max_font: $average_font*$big-screen ;
73
+ $min_font: $average_font*$small-screen ;
74
+ @include fluid-type($min_width, $max_width, $min_font, $max_font);
75
+ }
22
76
 
23
77
  .lead {
24
78
  font-size: $lead-font-size;
@@ -79,6 +79,7 @@ $danger: $red !default;
79
79
  $light: $gray-100 !default;
80
80
  $dark: $gray-800 !default;
81
81
 
82
+
82
83
  $theme-colors: () !default;
83
84
  // stylelint-disable-next-line scss/dollar-variable-default
84
85
  $theme-colors: map-merge(
@@ -90,7 +91,9 @@ $theme-colors: map-merge(
90
91
  "warning": $warning,
91
92
  "danger": $danger,
92
93
  "light": $light,
93
- "dark": $dark
94
+ "dark": $dark,
95
+ "proA": #3a3a41,
96
+ "proB": #84767e,
94
97
  ),
95
98
  $theme-colors
96
99
  );
@@ -127,6 +127,7 @@
127
127
  }
128
128
 
129
129
  .btn-neutral { @include btn-styles($white, $white); }
130
+ .btn-white { @include btn-styles(#fff,#fff) }
130
131
 
131
132
  .btn{
132
133
  &:disabled,
@@ -184,6 +185,7 @@
184
185
  .btn-sm{
185
186
  @include btn-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-base, $border-radius-sm);
186
187
  }
188
+ .btn-xxl{ @include btn-size($btn-padding-y-lg, $btn-padding-x-lg, 19px, $border-radius-lg)}
187
189
 
188
190
  .btn-wd {
189
191
  min-width: 140px;
@@ -5,6 +5,9 @@
5
5
  width: 100%;
6
6
  margin-bottom: 30px;
7
7
  box-shadow: $box-shadow;
8
+ &.info-icon-dash-pro{
9
+ margin-bottom: 0px!important;
10
+ }
8
11
 
9
12
 
10
13
  label{
@@ -215,8 +215,7 @@
215
215
 
216
216
  .dropdown &,
217
217
  .dropup:not(.bootstrap-select) &,
218
- .bootstrap-select &:not(.inner),
219
- &.bootstrap-datetimepicker-widget.bottom {
218
+ .bootstrap-select &:not(.inner) {
220
219
  @include transform-translate-y-dropdown(-20px);
221
220
  visibility: hidden;
222
221
  display: block;
@@ -224,17 +223,17 @@
224
223
  top: 100% !important;
225
224
  }
226
225
 
227
- &.bootstrap-datetimepicker-widget.top {
228
- @include transform-translate-y-dropdown(-20px);
229
- visibility: hidden;
230
- display: block;
231
- @include opacity(0);
232
- }
233
-
234
- &.bootstrap-datetimepicker-widget.top,
235
- &.bootstrap-datetimepicker-widget.bottom {
236
- @include transform-translate-y-dropdown(-20px);
237
- }
226
+ // &.bootstrap-datetimepicker-widget.top {
227
+ // @include transform-translate-y-dropdown(-20px);
228
+ // visibility: hidden;
229
+ // display: block;
230
+ // @include opacity(0);
231
+ // }
232
+ //
233
+ // &.bootstrap-datetimepicker-widget.top,
234
+ // &.bootstrap-datetimepicker-widget.bottom {
235
+ // @include transform-translate-y-dropdown(-20px);
236
+ // }
238
237
 
239
238
  .bootstrap-select.dropup &:not(.inner){
240
239
  @include transform-translate-y-dropdown(25px);
@@ -249,7 +248,6 @@
249
248
  .dropdown.show &,
250
249
  .bootstrap-select.show &:not(.inner),
251
250
  &.bootstrap-datetimepicker-widget.top.open,
252
- &.bootstrap-datetimepicker-widget.bottom.open,
253
251
  .dropup.show:not(.bootstrap-select) &,
254
252
  .navbar .dropdown.show &{
255
253
  @include opacity(1);
@@ -257,10 +255,10 @@
257
255
  @include transform-translate-y-dropdown(1px);
258
256
  }
259
257
 
260
- &.bootstrap-datetimepicker-widget.top.open,
261
- &.bootstrap-datetimepicker-widget.bottom.open{
262
- @include transform-translate-y-dropdown(0px);
263
- }
258
+ // &.bootstrap-datetimepicker-widget.top.open,
259
+ // &.bootstrap-datetimepicker-widget.bottom.open{
260
+ // @include transform-translate-y-dropdown(0px);
261
+ // }
264
262
 
265
263
  .dropup.show:not(.bootstrap-select) &{
266
264
  @include transform-translate-y-dropdown(-2px);
@@ -273,6 +273,11 @@
273
273
 
274
274
  .login-page .card-login .card-header img {
275
275
  width: 70%;
276
+ position: absolute !important;
277
+ margin-left: -33px !important;
278
+ margin-top: -142px !important;
279
+ border-radius: 20% !important;
280
+ width: 350px !important;
276
281
  }
277
282
  }
278
283
 
@@ -27,9 +27,9 @@
27
27
  left: auto !important;
28
28
  top: -52px !important;
29
29
  width: 290px;
30
- border-radius: 0.1875rem;
31
- padding: 0 10px;
32
- background: linear-gradient($black, $black-states);
30
+ border-radius: 0.3875rem;
31
+ padding: 20px 10px;
32
+ background: linear-gradient($proA, $proB);
33
33
  }
34
34
 
35
35
  .dropdown .dropdown-menu .tim-icons{
@@ -71,7 +71,7 @@
71
71
  }
72
72
 
73
73
  .badge{
74
- border: 2px solid $white;
74
+ border: 0px solid $white;
75
75
  border-radius: 50%;
76
76
  cursor: pointer;
77
77
  display: inline-block;
@@ -321,6 +321,12 @@
321
321
  .bootstrap-switch{
322
322
  margin:0;
323
323
  }
324
+ &.on-quotation{
325
+ width: 144px;
326
+ background: rgba(0, 0, 0, 0.0);
327
+ top: 90%;
328
+ right: 50px;
329
+ }
324
330
  }
325
331
 
326
332
  @include media-breakpoint-down(xs){
@@ -0,0 +1,12 @@
1
+ .table-responsive {
2
+ font-size: 11px;
3
+ }
4
+ .br-6{
5
+ border-radius: 6px;
6
+ }
7
+ .br-1px{
8
+ border: 1px solid #8080801f;
9
+ }
10
+ .pd-0-7{
11
+ padding: 0.7rem
12
+ }
@@ -143,6 +143,17 @@
143
143
  }
144
144
  }
145
145
  }
146
+ &.nav-pills-rework{
147
+ .nav-item {
148
+ .nav-link.active{
149
+ &,
150
+ &:focus,
151
+ &:hover{
152
+ @include diagonal-gradient($rework, $success);
153
+ }
154
+ }
155
+ }
156
+ }
146
157
  }
147
158
  .tab-space{
148
159
  padding: 20px 0 50px 0px;
@@ -377,6 +377,12 @@
377
377
  border-bottom-color: $success;
378
378
  }
379
379
  }
380
+ &[data="pro"]{
381
+ @include linear-gradient($proA, $proB);
382
+ &:before{
383
+ border-bottom-color: $proB;
384
+ }
385
+ }
380
386
  &[data="orange"]{
381
387
  @include linear-gradient($warning-states, $warning);
382
388
  &:before{
@@ -503,6 +509,9 @@
503
509
  &[data="green"]{
504
510
  border-top: 2px solid $success;
505
511
  }
512
+ &[data="pro"]{
513
+ border-top: 2px solid $proB;
514
+ }
506
515
 
507
516
  &[data="orange"]{
508
517
  border-top: 2px solid $warning;
@@ -519,6 +528,12 @@
519
528
  > .content {
520
529
  padding: 80px 30px 30px 280px;
521
530
  min-height: calc(100vh - 70px);
531
+ &.inside-layout{
532
+ min-height: auto;
533
+ }
534
+ &.nopaddingtop{
535
+ padding-top: 0px!important;
536
+ }
522
537
  }
523
538
 
524
539
  > .navbar {
@@ -220,17 +220,20 @@
220
220
  }
221
221
 
222
222
  table.tablesorter thead tr .header{
223
- background-image: url("../img/bg.gif");
223
+ // background-image: url("../../../images/bg.gif");
224
+ background-image: url(image-path("becky_thatcher/bg.gif"));
224
225
  background-repeat: no-repeat;
225
226
  background-position: center right;
226
227
  cursor: pointer;
227
228
  }
228
229
 
229
230
  table.tablesorter thead tr .headerSortUp {
230
- background-image: url("../img/asc.gif");
231
+ // background-image: url("../../../images/asc.gif");
232
+ background-image: url(image-path("becky_thatcher/asc.gif"));
231
233
  }
232
234
  table.tablesorter thead tr .headerSortDown {
233
- background-image: url("../img/desc.gif");
235
+ // background-image: url("../../../images/desc.gif");
236
+ background-image: url(image-path("becky_thatcher/desc.gif"));
234
237
  }
235
238
 
236
239
 
@@ -381,6 +381,9 @@ $general-transition-time: 300ms !default;
381
381
  $font-family-base: 'Poppins', sans-serif !default;
382
382
  $font-family-alt: 'Poppins', sans-serif !default;
383
383
 
384
+ $min_width: 320px;
385
+ $max_width: 2400px;
386
+
384
387
  $font-size-dash: .875rem !default;
385
388
 
386
389
  $font-size-base: $font-size-dash !default; // Assumes the browser default, typically `16px`
@@ -391,7 +394,7 @@ $font-size-xs: ($font-size-base * .714);
391
394
 
392
395
  $h1-font-size: $font-size-base * 2.35714285 !default; //2.1875rem
393
396
  $h2-font-size: $font-size-base * 1.9285714 !default;
394
- $h3-font-size: $font-size-base * 1.642857 !default;
397
+ $h3-font-size: $font-size-base * 1.442857 !default;
395
398
  $h4-font-size: $font-size-base * 1.2142857 !default;
396
399
  $h5-font-size: $font-size-base * 0.9285714 !default;
397
400
  $h6-font-size: $font-size-base * 0.8571428 !default;
@@ -448,6 +451,10 @@ $lead-font-weight: 300 !default;
448
451
  $small-font-size: 80% !default;
449
452
 
450
453
  $text-muted: $gray-600 !default;
454
+ // text-whiteed Colors
455
+ $text-white-primary: $white;
456
+ $text-white-secondary: rgba($white, 0.5);
457
+ $text-white-border: rgba($white, 0.2);
451
458
 
452
459
  $blockquote-small-color: $gray-600 !default;
453
460
  $blockquote-font-size: ($font-size-base * 1.1);
@@ -52,7 +52,8 @@
52
52
  color: $black;
53
53
  }
54
54
 
55
- .btn:not([data-action]):hover{
55
+ .btn:not([data-action]):hover,
56
+ .btn:not(.btn-white):hover{
56
57
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
57
58
  }
58
59
 
@@ -372,7 +373,7 @@
372
373
  }
373
374
 
374
375
  .bootstrap-select button.dropdown-toggle{
375
- border-color: rgba($black-states,0.5);
376
+ border-color: rgba($dark-gray,0.5);
376
377
  .filter-option{
377
378
  color: $black-states;
378
379
  }
@@ -11,12 +11,30 @@
11
11
  height: 50px;
12
12
  width: 50px;
13
13
  border-radius: 50%;
14
+ &.info-icon-dash-pro{
15
+ height: 30px;
16
+ width: auto;
17
+ border-radius: 6px;
18
+ display: flex;
19
+ justify-content: center;
20
+ align-items: center;
21
+ p{
22
+ color: $white;
23
+ margin: 0px;
24
+ font-size: 11px;
25
+ padding: 0.4rem 1.2rem 0.4rem 0.5rem;
26
+ }
27
+ }
14
28
  @include diagonal-gradient($primary,$primary-states);
15
29
 
16
30
  i {
17
31
  color: $white;
18
32
  font-size: 1.7em;
19
33
  padding: 14px 13px;
34
+ &.info-icon-dash-pro{
35
+ font-size: 1.2em;
36
+ padding: 0.4rem 0.5rem 0.4rem 0.5rem;
37
+ }
20
38
 
21
39
  }
22
40
 
@@ -39,6 +57,9 @@
39
57
  &.icon-primary {
40
58
  @include diagonal-gradient($primary,$primary-states);
41
59
  }
60
+ &.icon-pro {
61
+ @include diagonal-gradient($proA,$proB);
62
+ }
42
63
  }
43
64
 
44
65
  .numbers{
@@ -18,21 +18,21 @@
18
18
  height: 100px;
19
19
  width: 250px;
20
20
  &.block-one{
21
- @include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
21
+ @include linear-gradient-right(rgba($rework,0.6), rgba($rework,0));
22
22
  @include nc-rotate(150deg,10);
23
23
  margin-top: -90px;
24
24
  margin-left: -50px;
25
25
  }
26
26
 
27
27
  &.block-two{
28
- @include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
28
+ @include linear-gradient-right(rgba($rework,0.6), rgba($rework,0));
29
29
  @include nc-rotate(30deg,10);
30
30
  margin-top: -40px;
31
31
  margin-left: -100px;
32
32
  }
33
33
 
34
34
  &.block-three{
35
- @include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
35
+ @include linear-gradient-right(rgba($rework,0.6), rgba($rework,0));
36
36
  @include nc-rotate(170deg,10);
37
37
  margin-top: -70px;
38
38
  right: -45px;
@@ -40,7 +40,7 @@
40
40
  }
41
41
 
42
42
  &.block-four{
43
- @include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
43
+ @include linear-gradient-right(rgba($rework,0.6), rgba($rework,0));
44
44
  @include nc-rotate(150deg,10);
45
45
  margin-top: -25px;
46
46
  right: -45px;
@@ -330,7 +330,7 @@
330
330
  }
331
331
 
332
332
  &.btn-neutral{
333
- color: $color;
333
+ color: $color!important;
334
334
  background-color: $white;
335
335
 
336
336
 
@@ -67,7 +67,7 @@
67
67
  vertical-align: middle;
68
68
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
69
69
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
70
- background: url("https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/J9H9WF0/night-sky-full-of-stars-fantasy-animation-made-of-magical-sparkly-light-particles-flickering-on-a-purple-blue-gradient-background_bajacpz7x_thumbnail-full01.png");
70
+ background: url("https://res.cloudinary.com/entrepreneur/image/upload/v1557482087/download_si8frm.png");
71
71
  background-position: center center;
72
72
  background-size: cover;
73
73
  }
@@ -145,7 +145,7 @@
145
145
  }
146
146
  .bootstrap-datetimepicker-widget a[data-action="togglePicker"],
147
147
  .bootstrap-datetimepicker-widget a[data-action="togglePicker"]:hover {
148
- color: $primary;
148
+ color: $rework;
149
149
  }
150
150
  .bootstrap-datetimepicker-widget a[data-action]:hover {
151
151
  background-color: transparent;
@@ -205,7 +205,7 @@
205
205
  .bootstrap-datetimepicker-widget .picker-switch {
206
206
  text-align: center;
207
207
  border-radius: 3px;
208
- color: $primary;
208
+ color: $rework;
209
209
  }
210
210
  .bootstrap-datetimepicker-widget .picker-switch::after {
211
211
  content: "Toggle Date and Time Screens";
@@ -254,7 +254,7 @@
254
254
  font-size: 12px;
255
255
  border-radius: 50%;
256
256
  text-align: center;
257
- color: $primary;
257
+ color: $rework;;
258
258
  }
259
259
  .bootstrap-datetimepicker-widget table th.prev::after {
260
260
  content: "Previous Month";
@@ -264,7 +264,7 @@
264
264
  }
265
265
  .bootstrap-datetimepicker-widget table th.dow {
266
266
  text-align: center;
267
- color: $primary;
267
+ color: $rework;;
268
268
  padding-bottom: 5px;
269
269
  padding-top: 10px;
270
270
  }
@@ -318,7 +318,7 @@
318
318
  right: 4px;
319
319
  }
320
320
  .bootstrap-datetimepicker-widget table td.active > div, .bootstrap-datetimepicker-widget table td.active:hover > div {
321
- background-color: $primary;
321
+ background-color: $rework;;
322
322
  color: $white;
323
323
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
324
324
  }
@@ -342,7 +342,7 @@
342
342
  }
343
343
 
344
344
  .bootstrap-datetimepicker-widget table td span.active {
345
- background-color: $primary;
345
+ background-color: $rework;;
346
346
  color: #FFFFFF;
347
347
  }
348
348
  .bootstrap-datetimepicker-widget table td span.old {
@@ -1,21 +1,3 @@
1
- /*!
2
-
3
- =========================================================
4
- * Black Dashboard Pro - v1.0.0
5
- =========================================================
6
-
7
- * Product Page: https://www.creative-tim.com/product/becky_thatcher-pro
8
- * Copyright 2018 Creative Tim (http://www.creative-tim.com)
9
-
10
-
11
- =========================================================
12
-
13
- * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14
-
15
- */
16
-
17
- // Core
18
-
19
1
  @import "becky_thatcher/custom/functions";
20
2
  @import "becky_thatcher/bootstrap/functions";
21
3
 
@@ -140,5 +122,8 @@
140
122
  @import "becky_thatcher/custom/cards/card-testimonials";
141
123
  @import "becky_thatcher/custom/cards/card-wizard";
142
124
 
143
- // End vendor and other stuff
125
+ // vendor and other stuff
144
126
  @import "becky_thatcher/custom/vendor/icons";
127
+
128
+ // some perso scss
129
+ @import 'becky_thatcher/custom/hhgb12';
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.3.0
4
+ version: 0.4.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-04-22 00:00:00.000000000 Z
11
+ date: 2019-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -50,6 +50,9 @@ files:
50
50
  - LICENSE.txt
51
51
  - README.md
52
52
  - Rakefile
53
+ - app/assets/images/becky_thatcher/asc.gif
54
+ - app/assets/images/becky_thatcher/bg.gif
55
+ - app/assets/images/becky_thatcher/desc.gif
53
56
  - bin/console
54
57
  - bin/setup
55
58
  - lib/vbax/becky_thatcher.rb
@@ -152,6 +155,7 @@ files:
152
155
  - lib/vbax/sass/becky_thatcher/custom/_functions.scss
153
156
  - lib/vbax/sass/becky_thatcher/custom/_global.scss
154
157
  - lib/vbax/sass/becky_thatcher/custom/_grid.scss
158
+ - lib/vbax/sass/becky_thatcher/custom/_hhgb12.scss
155
159
  - lib/vbax/sass/becky_thatcher/custom/_icons.scss
156
160
  - lib/vbax/sass/becky_thatcher/custom/_images.scss
157
161
  - lib/vbax/sass/becky_thatcher/custom/_info-areas.scss