@posiwise/core-styles 0.0.30 → 0.0.31
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 +1 -1
- package/scss/_dynamic-styles.scss +97 -2
package/package.json
CHANGED
|
@@ -698,13 +698,108 @@
|
|
|
698
698
|
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
|
|
699
699
|
outline: none !important; /* Keep the outline removed */
|
|
700
700
|
}
|
|
701
|
-
.ql-editor li
|
|
702
|
-
|
|
701
|
+
.ql-editor li,
|
|
702
|
+
p {
|
|
703
|
+
font-size: 17px;
|
|
703
704
|
}
|
|
704
705
|
.ql-editor ol {
|
|
705
706
|
padding-left: 0.75em !important;
|
|
706
707
|
}
|
|
707
708
|
|
|
709
|
+
.ql-editor ul,
|
|
710
|
+
.ql-editor ol {
|
|
711
|
+
margin-top: 1rem;
|
|
712
|
+
margin-bottom: 0.5rem;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.ql-editor {
|
|
716
|
+
li > .ql-ui::before {
|
|
717
|
+
font-size: 2rem; /* you can adjust size here */
|
|
718
|
+
line-height: 1;
|
|
719
|
+
position: relative;
|
|
720
|
+
top: 0.1rem;
|
|
721
|
+
}
|
|
722
|
+
ul {
|
|
723
|
+
padding-left: 20px; /* instead of default 40px */
|
|
724
|
+
}
|
|
725
|
+
li.ql-indent-1 {
|
|
726
|
+
padding-left: 3.6rem !important;
|
|
727
|
+
.ql-ui::before {
|
|
728
|
+
font-size: 1.1rem;
|
|
729
|
+
list-style-type: circle;
|
|
730
|
+
top: -0.1rem;
|
|
731
|
+
position: relative;
|
|
732
|
+
content: '\25CB' !important;
|
|
733
|
+
right: 0.15rem;
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
li.ql-indent-2 {
|
|
738
|
+
padding-left: 4.6rem !important;
|
|
739
|
+
top: -0.1rem;
|
|
740
|
+
.ql-ui::before {
|
|
741
|
+
font-size: 1.1rem;
|
|
742
|
+
list-style-type: circle;
|
|
743
|
+
top: -0.1rem;
|
|
744
|
+
position: relative;
|
|
745
|
+
content: '\25CB' !important;
|
|
746
|
+
right: 0.15rem;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
li.ql-indent-3 {
|
|
751
|
+
padding-left: 5.6rem !important;
|
|
752
|
+
top: -0.1rem;
|
|
753
|
+
.ql-ui::before {
|
|
754
|
+
font-size: 1.1rem;
|
|
755
|
+
list-style-type: circle;
|
|
756
|
+
top: -0.1rem;
|
|
757
|
+
position: relative;
|
|
758
|
+
content: '\25CB' !important;
|
|
759
|
+
right: 0.15rem;
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
li.ql-indent-4 {
|
|
764
|
+
padding-left: 6.6rem !important;
|
|
765
|
+
top: -0.1rem;
|
|
766
|
+
.ql-ui::before {
|
|
767
|
+
font-size: 1.1rem;
|
|
768
|
+
list-style-type: circle;
|
|
769
|
+
top: -0.1rem;
|
|
770
|
+
position: relative;
|
|
771
|
+
content: '\25CB' !important;
|
|
772
|
+
right: 0.15rem;
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.ql-editor ul {
|
|
778
|
+
padding-left: 1.2rem; /* reduce from default ~2.5rem */
|
|
779
|
+
margin-left: 0;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.ql-editor ul li {
|
|
783
|
+
padding-left: 0.3rem; /* optional: less gap between bullet and text */
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.ql-editor {
|
|
787
|
+
line-height: 1.7 !important;
|
|
788
|
+
|
|
789
|
+
p,
|
|
790
|
+
li,
|
|
791
|
+
h1,
|
|
792
|
+
h2,
|
|
793
|
+
h3,
|
|
794
|
+
h4,
|
|
795
|
+
h5,
|
|
796
|
+
h6,
|
|
797
|
+
blockquote,
|
|
798
|
+
pre {
|
|
799
|
+
line-height: inherit; // ensures all block types follow 1.6
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
|
|
708
803
|
.quill-container {
|
|
709
804
|
max-width: 1000px;
|
|
710
805
|
width: 100%;
|