quasar-ui-sellmate-ui-kit 2.2.5 → 2.2.7
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/dist/index.common.js +2 -2
- package/dist/index.css +113 -30
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +2 -2
- package/dist/index.rtl.css +113 -30
- package/dist/index.rtl.min.css +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/css/default.scss +31 -46
package/package.json
CHANGED
package/src/css/default.scss
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
// q-@@-lg - 24px
|
|
8
8
|
// q-@@-xl - 48px
|
|
9
9
|
|
|
10
|
+
// SELLMATE
|
|
11
|
+
// s-@@-xxs - 6px
|
|
12
|
+
// s-@@-xs - 10px
|
|
13
|
+
// s-@@-sm - 12px
|
|
14
|
+
// s-@@-md - 18px
|
|
15
|
+
// s-@@-lg - 20px
|
|
16
|
+
// s-@@-xl - 22px
|
|
17
|
+
// s-@@-xxl - 30px
|
|
18
|
+
|
|
10
19
|
// padding
|
|
11
20
|
.s-pa-xxs {
|
|
12
21
|
padding: 6px;
|
|
@@ -586,11 +595,17 @@ $colorList: (
|
|
|
586
595
|
'Grey_Lighten-4': '#eeeeee',
|
|
587
596
|
'Grey_Lighten-5': '#f6f6f6',
|
|
588
597
|
'Grey_Lighten-6': '#f9f9f9',
|
|
589
|
-
'Grey_Lighten-7': '#E5E5E5',
|
|
590
|
-
'Grey_Lighten-8': '#D8D8D8',
|
|
598
|
+
'Grey_Lighten-7' : '#E5E5E5',
|
|
599
|
+
'Grey_Lighten-8' : '#D8D8D8',
|
|
600
|
+
'white': '#ffffff',
|
|
601
|
+
'black': '#000000',
|
|
591
602
|
);
|
|
603
|
+
|
|
604
|
+
|
|
592
605
|
$positions: 'top', 'right', 'left', 'bottom';
|
|
606
|
+
|
|
593
607
|
@mixin position($name, $color) {
|
|
608
|
+
|
|
594
609
|
@each $posi in $positions {
|
|
595
610
|
.s-border-#{$posi}-#{$name} {
|
|
596
611
|
border-#{$posi}: 1px solid unquote($color) !important;
|
|
@@ -598,23 +613,29 @@ $positions: 'top', 'right', 'left', 'bottom';
|
|
|
598
613
|
}
|
|
599
614
|
}
|
|
600
615
|
|
|
601
|
-
@each $name,
|
|
616
|
+
@each $name,
|
|
617
|
+
$color in $colorList {
|
|
602
618
|
.s-border-#{$name} {
|
|
603
619
|
border: 1px solid unquote($color) !important;
|
|
604
620
|
}
|
|
621
|
+
|
|
605
622
|
@include position($name, $color);
|
|
606
623
|
}
|
|
607
624
|
|
|
608
|
-
@each $name,
|
|
625
|
+
@each $name,
|
|
626
|
+
$color in $colorList {
|
|
609
627
|
.s-border-color-#{$name} {
|
|
610
628
|
border-color: unquote($color) !important;
|
|
611
629
|
}
|
|
630
|
+
|
|
612
631
|
.text-#{$name} {
|
|
613
632
|
color: unquote($color) !important;
|
|
614
633
|
}
|
|
634
|
+
|
|
615
635
|
.bg-#{$name} {
|
|
616
636
|
background-color: unquote($color) !important;
|
|
617
637
|
}
|
|
638
|
+
|
|
618
639
|
@include position($name, $color);
|
|
619
640
|
}
|
|
620
641
|
|
|
@@ -664,6 +685,10 @@ $positions: 'top', 'right', 'left', 'bottom';
|
|
|
664
685
|
border-radius: 16px;
|
|
665
686
|
}
|
|
666
687
|
|
|
688
|
+
.s-border-radius-chip {
|
|
689
|
+
border-radius: 40px;
|
|
690
|
+
}
|
|
691
|
+
|
|
667
692
|
.s-border-radius-left-rounded {
|
|
668
693
|
border-radius: 2px 0 0 2px;
|
|
669
694
|
}
|
|
@@ -827,6 +852,7 @@ $fontSize: (
|
|
|
827
852
|
'20': 20,
|
|
828
853
|
'24': 24,
|
|
829
854
|
'40': 40,
|
|
855
|
+
'66': 66,
|
|
830
856
|
);
|
|
831
857
|
$fontWeight: (
|
|
832
858
|
'400': 400,
|
|
@@ -834,6 +860,7 @@ $fontWeight: (
|
|
|
834
860
|
'600': 600,
|
|
835
861
|
'700': 700,
|
|
836
862
|
);
|
|
863
|
+
|
|
837
864
|
@mixin fonts($size, $weight) {
|
|
838
865
|
font-size: $size + 'px';
|
|
839
866
|
font-weight: $weight;
|
|
@@ -849,45 +876,3 @@ $fontWeight: (
|
|
|
849
876
|
}
|
|
850
877
|
}
|
|
851
878
|
}
|
|
852
|
-
|
|
853
|
-
.s-font-page-title {
|
|
854
|
-
font-size: 18px;
|
|
855
|
-
font-weight: 700;
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
.s-font-page-content-bold {
|
|
859
|
-
font-size: 16px;
|
|
860
|
-
font-weight: 700;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
.s-font-page-body-default {
|
|
864
|
-
font-size: 12px;
|
|
865
|
-
font-weight: 400;
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
.s-font-page-body-lg {
|
|
869
|
-
font-size: 14px;
|
|
870
|
-
font-weight: 400;
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.s-font-page-body-semi-bold {
|
|
874
|
-
font-size: 12px;
|
|
875
|
-
font-weight: 500;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.s-font-page-body-bold {
|
|
879
|
-
font-size: 12px;
|
|
880
|
-
font-weight: 700;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
.s-font-page-body-sm {
|
|
884
|
-
font-size: 11px;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.display-none {
|
|
888
|
-
display: none;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
.text-underline {
|
|
892
|
-
text-decoration: underline;
|
|
893
|
-
}
|