@softheon/armature 17.5.12 → 17.5.14
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/assets/styles/sof-styles.scss +35 -17
- package/package.json +1 -1
|
@@ -1726,63 +1726,81 @@ mat-card {
|
|
|
1726
1726
|
padding-top: 0px !important;
|
|
1727
1727
|
}
|
|
1728
1728
|
|
|
1729
|
-
|
|
1729
|
+
.mdc-tooltip__surface {
|
|
1730
1730
|
color: #fff !important;
|
|
1731
1731
|
font-size: 14px !important;
|
|
1732
1732
|
font-style: normal !important;
|
|
1733
|
-
font-weight:
|
|
1733
|
+
font-weight: 100 !important;
|
|
1734
1734
|
font-family: Poppins !important;
|
|
1735
1735
|
line-height: normal !important;
|
|
1736
1736
|
background-color: #333333!important;
|
|
1737
|
-
border-radius:
|
|
1737
|
+
border-radius: 4px !important;
|
|
1738
|
+
text-align: center !important;
|
|
1738
1739
|
position: relative;
|
|
1739
|
-
padding:
|
|
1740
|
+
padding-left: 4px !important;
|
|
1741
|
+
padding-right: 4px !important;
|
|
1742
|
+
padding-bottom: 0px !important;
|
|
1743
|
+
padding-top: 1px !important;
|
|
1740
1744
|
&::after {
|
|
1741
1745
|
width: 0;
|
|
1742
1746
|
height: 0;
|
|
1743
1747
|
content: '';
|
|
1744
1748
|
position: absolute;
|
|
1745
|
-
border-left: 0.5rem solid transparent;
|
|
1746
|
-
border-right: 0.5rem solid transparent;
|
|
1747
|
-
border-bottom: 0.5rem solid #333333 !important;
|
|
1748
1749
|
}
|
|
1749
1750
|
&.below {
|
|
1750
1751
|
overflow: initial;
|
|
1751
|
-
margin-top:
|
|
1752
|
+
margin-top: 0.75rem;
|
|
1752
1753
|
&:after {
|
|
1753
1754
|
top: -0.5rem;
|
|
1754
|
-
right: calc(50% - 0.
|
|
1755
|
+
right: calc(50% - 0.3rem);
|
|
1755
1756
|
transform: rotate(0);
|
|
1757
|
+
border-left: 0.25rem solid transparent;
|
|
1758
|
+
border-right: 0.25rem solid transparent;
|
|
1759
|
+
border-bottom: 0.5rem solid #333333 !important;
|
|
1760
|
+
|
|
1756
1761
|
}
|
|
1757
1762
|
}
|
|
1758
1763
|
|
|
1759
1764
|
&.above {
|
|
1760
1765
|
overflow: initial;
|
|
1761
|
-
margin-bottom:
|
|
1766
|
+
margin-bottom: 0.75rem;
|
|
1762
1767
|
&:after {
|
|
1763
1768
|
bottom: -0.5rem;
|
|
1764
|
-
right: calc(50% - 0.
|
|
1769
|
+
right: calc(50% - 0.3rem);
|
|
1765
1770
|
transform: rotate(180deg);
|
|
1771
|
+
border-left: 0.25rem solid transparent;
|
|
1772
|
+
border-right: 0.25rem solid transparent;
|
|
1773
|
+
border-bottom: 0.5rem solid #333333 !important;
|
|
1774
|
+
|
|
1766
1775
|
}
|
|
1767
1776
|
}
|
|
1768
1777
|
|
|
1769
1778
|
&.right {
|
|
1770
1779
|
overflow: initial;
|
|
1771
|
-
margin-left:
|
|
1780
|
+
margin-left: 0.75rem;
|
|
1772
1781
|
&:after {
|
|
1773
|
-
left: -0.
|
|
1774
|
-
top: calc(50% -
|
|
1782
|
+
left: -0.40rem;
|
|
1783
|
+
top: calc(50% - 0.50rem);
|
|
1775
1784
|
transform: rotate(270deg);
|
|
1785
|
+
border-left: 0.3rem solid transparent;
|
|
1786
|
+
border-right: 0.3rem solid transparent;
|
|
1787
|
+
border-bottom: 1rem solid #333333 !important;
|
|
1788
|
+
|
|
1776
1789
|
}
|
|
1777
1790
|
}
|
|
1778
1791
|
|
|
1779
1792
|
&.left {
|
|
1780
1793
|
overflow: initial;
|
|
1781
|
-
margin-right:
|
|
1794
|
+
margin-right: 0.75rem;
|
|
1782
1795
|
&:after {
|
|
1783
|
-
right: -0.
|
|
1784
|
-
top: calc(50% -
|
|
1796
|
+
right: -0.40rem;
|
|
1797
|
+
top: calc(50% - 0.50rem) ;
|
|
1785
1798
|
transform: rotate(90deg);
|
|
1799
|
+
border-left: 0.3rem solid transparent;
|
|
1800
|
+
border-right: 0.3rem solid transparent;
|
|
1801
|
+
border-top: 0.3rem solid transparent;
|
|
1802
|
+
border-bottom: 1rem solid #333333 !important;
|
|
1803
|
+
|
|
1786
1804
|
}
|
|
1787
1805
|
}
|
|
1788
1806
|
}
|