vbax-becky_thatcher 0.1.0 → 0.2.0

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
  SHA256:
3
- metadata.gz: 851227be357281276672cb8f633c34e5719ae053fcf8604c691d817994015dd6
4
- data.tar.gz: 9d893691474aab6e1b0c93e6590e195bd7fcc7ed57d370faa5bb2adaca84f289
3
+ metadata.gz: 5eac9e7d2191ed06a999f9fcce0e90b49ad3370982356b1df26a6d28cd51e90a
4
+ data.tar.gz: 191d697c41c73c6ab27326b4dbd5d61fb39c8beb95f5106698fe4370f104d3b2
5
5
  SHA512:
6
- metadata.gz: a2b3807a21d15daea01b4b67825ad9412a5eb2a0ac5b0b7ccab07784317dcf3f22e6b3ac5a3a40a07483b7805a99ee417a366cac7794914c38f3a6c352ee2324
7
- data.tar.gz: 97ccabe3b46c8035fe7056d6d5958d2bc87bff591bbc0bfb2e93833519b0a247a951283f49a3fddebedc109601c8e6e922d2eb6a6adfb68b2790c55f9370273c
6
+ metadata.gz: 1ca75b5b3300c26c2a99557c5b1f529bac47fe9da5c291d26afded3e2a5fd4b4dc070dbf48cc864e0cfd3d86cc6b390f779999a242faba1ebf63b6cdda5d8bd5
7
+ data.tar.gz: 36546cc508856b9b9f834f19d717ad07b010db9834c3420f2b9398021f3d4e57f27e1ac93dfcdbee0b099e895a4c793517d03829ccb8bde420a1a9426e315f69
@@ -1,5 +1,5 @@
1
1
  module Vbax
2
2
  module BeckyThatcher
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
@@ -29,6 +29,10 @@
29
29
  @include border-bottom-radius($card-border-radius);
30
30
  }
31
31
  }
32
+
33
+ &.transparency{
34
+ background-color: $table-bg!important;
35
+ }
32
36
  }
33
37
 
34
38
  .card-body {
@@ -3,7 +3,7 @@
3
3
  //
4
4
  // Textual form controls
5
5
  //
6
-
6
+ .field_with_errors .form-control,
7
7
  .form-control {
8
8
  display: block;
9
9
  width: 100%;
@@ -165,7 +165,7 @@ $body-color: $gray-900 !default;
165
165
  //
166
166
  // Style anchor elements.
167
167
 
168
- $link-color: theme-color("primary") !default;
168
+ $link-color: theme-color("rework") !default;
169
169
  $link-decoration: none !default;
170
170
  $link-hover-color: darken($link-color, 15%) !default;
171
171
  $link-hover-decoration: underline !default;
@@ -234,7 +234,7 @@ $box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
234
234
  $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
235
235
 
236
236
  $component-active-color: $white !default;
237
- $component-active-bg: theme-color("primary") !default;
237
+ $component-active-bg: theme-color("rework") !default;
238
238
 
239
239
  $caret-width: .3em !default;
240
240
 
@@ -483,7 +483,7 @@ $custom-control-label-disabled-color: $gray-600 !default;
483
483
 
484
484
  $custom-control-indicator-checked-color: $component-active-color !default;
485
485
  $custom-control-indicator-checked-bg: $component-active-bg !default;
486
- $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
486
+ $custom-control-indicator-checked-disabled-bg: rgba(theme-color("rework"), .5) !default;
487
487
  $custom-control-indicator-checked-box-shadow: none !default;
488
488
 
489
489
  $custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
@@ -842,7 +842,7 @@ $progress-bg: $gray-200 !default;
842
842
  $progress-border-radius: $border-radius !default;
843
843
  $progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
844
844
  $progress-bar-color: $white !default;
845
- $progress-bar-bg: theme-color("primary") !default;
845
+ $progress-bar-bg: theme-color("rework") !default;
846
846
  $progress-bar-animation-timing: 1s linear infinite !default;
847
847
  $progress-bar-transition: width .6s ease !default;
848
848
 
@@ -120,6 +120,12 @@
120
120
  .btn-danger { @include btn-styles($danger, $danger-states);
121
121
 
122
122
  }
123
+ .btn-rework { @include btn-styles($rework, $success);
124
+ }
125
+
126
+ .btn-pro { @include btn-styles($proA,$proB);
127
+ }
128
+
123
129
  .btn-neutral { @include btn-styles($white, $white); }
124
130
 
125
131
  .btn{
@@ -17,6 +17,16 @@
17
17
  text-transform: lowercase;
18
18
  margin-left: -5px;
19
19
  z-index: 1;
20
+ &.pro{
21
+ text-transform: capitalize;
22
+ }
23
+ }
24
+ .card-title-span{
25
+ position: relative;
26
+ display: flex;
27
+ justify-content: flex-end;
28
+ width: 60%;
29
+ align-items: flex-start;
20
30
  }
21
31
  }
22
32
  .btn-wd{
@@ -2,7 +2,7 @@
2
2
  color: $nav-link-color;
3
3
 
4
4
  &:hover {
5
- color: theme-color("primary");
5
+ color: theme-color("rework");
6
6
  }
7
7
  }
8
8
 
@@ -164,6 +164,9 @@
164
164
  font-size: $font-size-xs;
165
165
  padding: 10px 8px;
166
166
  line-height: $line-height-lg;
167
+ &.admin-link{
168
+ border-radius: 6px;
169
+ }
167
170
  }
168
171
 
169
172
  &:first-child > a{
@@ -22,11 +22,14 @@ h1,h2,h3,h4,h5,h6{
22
22
  }
23
23
 
24
24
  a{
25
- color: $primary-states;
25
+ color: $rework;
26
26
  font-weight: $font-weight-light;
27
+ &.footer-bold{
28
+ font-weight: $font-weight-bold;
29
+ }
27
30
  &:hover,
28
31
  &:focus{
29
- color: $primary;
32
+ color: $rework;
30
33
  }
31
34
  }
32
35
  h1, .h1 {
@@ -104,7 +104,9 @@ $info: #1d8cf8 !default;
104
104
  $warning: #ff8d72 !default;
105
105
  $danger: #fd5d93 !default;
106
106
  $black: #222a42 !default;
107
-
107
+ $rework: #34e79a !default;
108
+ $proA: #3a3a41 !default;
109
+ $proB: #84767e !default;
108
110
 
109
111
  // gradient
110
112
  $default-states: #263148 !default;
@@ -179,7 +181,8 @@ $theme-colors: map-merge((
179
181
  "white": $white,
180
182
  "neutral": $white,
181
183
  "dark": $dark,
182
- "darker": $darker
184
+ "darker": $darker,
185
+ "rework": $rework
183
186
  ), $theme-colors);
184
187
 
185
188
  $brand-colors: () !default;
@@ -350,8 +353,8 @@ $box-shadow-raised: 0px 10px 25px 0px rgba(0, 0, 0, 0.3);
350
353
  $box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.1);
351
354
 
352
355
  $component-active-color: $white !default;
353
- $component-active-bg: theme-color("primary") !default;
354
- $component-active-border-color: theme-color("primary") !default;
356
+ $component-active-bg: theme-color("rework") !default;
357
+ $component-active-border-color: theme-color("rework") !default;
355
358
 
356
359
  $component-hover-color: $gray-300 !default;
357
360
  $component-hover-bg: $gray-300 !default;
@@ -642,7 +645,7 @@ $custom-control-indicator-checked-color: $component-active-color !default
642
645
  $custom-control-indicator-checked-bg: $component-active-bg !default;
643
646
  $custom-control-indicator-checked-border-color: $component-active-border-color !default;
644
647
  $custom-control-indicator-checked-box-shadow: $custom-control-indicator-box-shadow !default;
645
- $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5);
648
+ $custom-control-indicator-checked-disabled-bg: rgba(theme-color("rework"), .5);
646
649
 
647
650
  $custom-control-indicator-disabled-bg: $gray-200 !default;
648
651
  $custom-control-label-disabled-color: $gray-600 !default;
@@ -651,7 +654,7 @@ $custom-checkbox-indicator-border-radius: $border-radius-sm !default;
651
654
  //$custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml !default;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23") !default;
652
655
 
653
656
  $custom-toggle-slider-bg: #ddd !default;
654
- $custom-toggle-checked-bg: theme-color("primary") !default;
657
+ $custom-toggle-checked-bg: theme-color("rework") !default;
655
658
 
656
659
  // Form validation
657
660
 
@@ -681,7 +684,7 @@ $noui-slider-connect-bg: $primary !default;
681
684
  $noui-slider-connect-disabled-bg: #b2b2b2 !default;
682
685
 
683
686
  $noui-handle-width: 15px !default;
684
- $noui-handle-bg: theme-color("primary") !default;
687
+ $noui-handle-bg: theme-color("rework") !default;
685
688
  $noui-handle-border: 0 !default;
686
689
  $noui-handle-border-radius: 100% !default;
687
690
 
@@ -713,13 +716,13 @@ $nav-pills-space-x: 1rem !default;
713
716
 
714
717
  $nav-pills-bg: $white;
715
718
  $nav-pills-border-width: 1px !default;
716
- $nav-pills-border-color: theme-color("primary") !default;
719
+ $nav-pills-border-color: theme-color("rework") !default;
717
720
  $nav-pills-border-radius: $border-radius !default;
718
721
 
719
- $nav-pills-link-color: theme-color("primary") !default;
720
- $nav-pills-link-hover-color: darken(theme-color("primary"), 5%);
721
- $nav-pills-link-active-color: color-yiq(theme-color("primary"));
722
- $nav-pills-link-active-bg: theme-color("primary") !default;
722
+ $nav-pills-link-color: theme-color("rework") !default;
723
+ $nav-pills-link-hover-color: darken(theme-color("rework"), 5%);
724
+ $nav-pills-link-active-color: color-yiq(theme-color("rework"));
725
+ $nav-pills-link-active-bg: theme-color("rework") !default;
723
726
  $nav-pills-box-shadow: $btn-box-shadow !default;
724
727
 
725
728
  // Navbar
@@ -968,10 +971,10 @@ $datepicker-disabled-old-new-color: $gray-500 !default;
968
971
  $datepicker-header-cell-border-radius: $border-radius !default;
969
972
 
970
973
  $datepicker-active-color: $white !default;
971
- $datepicker-active-background: theme-color("primary") !default;
974
+ $datepicker-active-background: theme-color("rework") !default;
972
975
  $datepicker-active-box-shadow: none !default;
973
976
 
974
- $datepicker-range-background: theme-color("primary") !default;
977
+ $datepicker-range-background: theme-color("rework") !default;
975
978
  $datepicker-range-cell-focused-background: darken($datepicker-range-background, 5%);
976
979
  $datepicker-range-color: $white !default;
977
980
  $datepicker-range-highlighted-bg: $gray-200 !default;
@@ -39,6 +39,9 @@
39
39
 
40
40
  .main-panel{
41
41
  background: $light-bg;
42
+ &.main-panel-admin{
43
+ background: $white;
44
+ }
42
45
  }
43
46
 
44
47
  h1, h2, h3, h4, h5, h6, p, ol li, ul li, pre {
@@ -413,3 +413,36 @@
413
413
  .popo-1060{
414
414
  z-index: 1060;
415
415
  };
416
+
417
+ // for administrate
418
+ .default_icon::before{
419
+ content: "\ea38";
420
+
421
+ }
422
+ .icon-custom-projects::before {
423
+ content: "\ea15";
424
+ }
425
+ .icon-custom-quotations:before {
426
+ content: "\ea40";
427
+ }
428
+ .icon-custom-customers::before {
429
+ content: "\ea49";
430
+ }
431
+ .icon-custom-supplier_profiles::before{
432
+ content: "\ea65";
433
+ }
434
+ .icon-custom-orders::before {
435
+ content: "\ea22";
436
+ }
437
+ .icon-custom-products::before {
438
+ content: "\ea05";
439
+ }
440
+ .icon-custom-categories::before,
441
+ .icon-custom-sub_categories::before{
442
+ content: "\ea38";
443
+ }
444
+
445
+
446
+ // [class^='icon-custom-']::before {
447
+ // content: "\ea38";
448
+ // }
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.1.0
4
+ version: 0.2.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-14 00:00:00.000000000 Z
11
+ date: 2019-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler