@posiwise/core-styles 0.0.27 → 0.0.29

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/core-styles",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -638,6 +638,16 @@
638
638
  border-width: 0 !important;
639
639
  }
640
640
 
641
+ .dropdown-menu .dropdown-item.active {
642
+ background-color: var(--tabs_bg) !important;
643
+ color: var(--tabs_text) !important;
644
+ }
645
+
646
+ .dropdown-menu .dropdown-item:focus {
647
+ background-color: var(--tabs_bg) !important;
648
+ color: var(--tabs_text) !important;
649
+ }
650
+
641
651
  .p-dropdown-panel {
642
652
  .p-dropdown-items {
643
653
  .p-dropdown-item {
@@ -692,7 +702,7 @@
692
702
  .content-quill-wrapper {
693
703
  margin: 0 auto;
694
704
  max-width: 1000px;
695
- background: rgb(249, 249, 249);
705
+ background: map-get($white-color, base);
696
706
  border: 1px solid rgb(238, 238, 238);
697
707
 
698
708
  .content-quill-box {
@@ -703,7 +713,7 @@
703
713
  @media only screen and (max-width: 1024px) {
704
714
  .content-quill-wrapper {
705
715
  padding: 1rem;
706
- background: rgb(249, 249, 249);
716
+ background: map-get($white-color, base);
707
717
 
708
718
  .content-quill-box {
709
719
  padding: 1rem;
@@ -714,7 +724,7 @@
714
724
  @media only screen and (max-width: 767px) {
715
725
  .content-quill-wrapper {
716
726
  padding: 0.5rem;
717
- background: rgb(249, 249, 249);
727
+ background: map-get($white-color, base);
718
728
 
719
729
  .content-quill-box {
720
730
  padding: 0.5rem;
@@ -807,6 +817,11 @@
807
817
  }
808
818
  }
809
819
 
820
+ ::ng-deep .dropdown-item.active {
821
+ background-color: red !important;
822
+ color: white !important;
823
+ }
824
+
810
825
  .product-header-color {
811
826
  color: rgb(24, 37, 39) !important;
812
827
  }
@@ -817,3 +832,15 @@
817
832
  padding-bottom: 60px !important;
818
833
  }
819
834
  }
835
+
836
+ .view-all {
837
+ font-size: 1.5rem;
838
+ font-weight: 600;
839
+ color: black !important;
840
+ text-decoration: none;
841
+ margin-bottom: 2.5rem;
842
+
843
+ &:hover {
844
+ color: var(--first) !important;
845
+ }
846
+ }