@spaziodati/atoka-design-system 2.2.0 → 2.2.1
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/AddableItems/AddableItems.d.ts +1 -1
- package/AddableItems/index.js +1 -1
- package/Alert/index.js +1 -1
- package/Badge/index.js +1 -1
- package/Bs4V3Wrapper/index.js +1 -1
- package/BubbleChart/index.js +1 -1
- package/Button/index.js +1 -1
- package/ButtonDropdown/index.js +1 -1
- package/CardsPage/index.js +1 -1
- package/CursorPagination/index.js +1 -1
- package/DatePicker/index.js +1 -1
- package/DetailPage/index.js +1 -1
- package/Dropdown/index.js +1 -1
- package/EditableString/index.js +1 -1
- package/EllipsableContent/index.js +1 -1
- package/EmptyState/index.js +1 -1
- package/Facet/index.js +1 -1
- package/FacetSection/index.js +1 -1
- package/FadeAnimation/index.js +1 -1
- package/FeedbackButton/index.js +1 -1
- package/Form/index.js +1 -1
- package/Funnel/index.js +1 -1
- package/Gauge/index.js +1 -1
- package/GridCard/index.js +1 -1
- package/HighlightableText/index.js +1 -1
- package/Histogram/Types.d.ts +1 -1
- package/Histogram/index.js +1 -1
- package/InlineStringEditor/index.js +1 -1
- package/InputGroup/index.js +1 -1
- package/Jumbotron/Jumbotron.d.ts +1 -1
- package/Jumbotron/index.js +1 -1
- package/Map/index.js +1 -1
- package/Modal/index.js +1 -1
- package/Navbar/NavbarUserMenuItem.d.ts +1 -1
- package/Navbar/index.js +1 -1
- package/Pagination/index.js +1 -1
- package/PieChart/index.js +1 -1
- package/PublicFooter/index.js +1 -1
- package/PublicNavbar/index.js +1 -1
- package/RecordBit/index.js +1 -1
- package/ResultItemCard/index.js +1 -1
- package/SelectDropdown/index.js +1 -1
- package/Spinner/index.js +1 -1
- package/StatisticsItemCard/index.js +1 -1
- package/StatisticsItemNumeric/index.js +1 -1
- package/StatisticsLegend/index.js +1 -1
- package/StatisticsTooltip/index.js +1 -1
- package/Suggester/index.js +1 -1
- package/SunBurst/index.js +1 -1
- package/TabSwitcher/index.js +1 -1
- package/Title/index.js +1 -1
- package/Toasts/Toast.d.ts +1 -1
- package/Toasts/index.js +1 -1
- package/ToggleButtonGroup/index.js +1 -1
- package/Tooltip/index.js +1 -1
- package/Utils/index.js +1 -1
- package/{atoka-design-system-2.2.0.min.css → atoka-design-system-2.2.1.min.css} +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/styles/atoka-bs.less +34 -2
package/package.json
CHANGED
package/styles/atoka-bs.less
CHANGED
|
@@ -44,14 +44,17 @@
|
|
|
44
44
|
@import '@{path}_utilities';
|
|
45
45
|
//@import "@{path}_print";
|
|
46
46
|
|
|
47
|
+
// ICONS
|
|
47
48
|
.svg-inline--fa {
|
|
48
49
|
vertical-align: -0.125em;
|
|
49
50
|
}
|
|
50
51
|
|
|
52
|
+
// BORDERS
|
|
51
53
|
.rounded-md {
|
|
52
54
|
border-radius: @border-radius;
|
|
53
55
|
}
|
|
54
56
|
|
|
57
|
+
// FONTS
|
|
55
58
|
span.first-letter-capitalize {
|
|
56
59
|
display: inline-block; // the first-letter does not work on inline elements
|
|
57
60
|
}
|
|
@@ -61,18 +64,47 @@ span.first-letter-capitalize {
|
|
|
61
64
|
}
|
|
62
65
|
}
|
|
63
66
|
|
|
64
|
-
.
|
|
65
|
-
|
|
67
|
+
.font-size-sm,
|
|
68
|
+
.font-size-small {
|
|
69
|
+
font-size: @font-size-sm;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.font-size-md,
|
|
73
|
+
.font-size-normal {
|
|
74
|
+
font-size: @font-size-normal;
|
|
66
75
|
}
|
|
76
|
+
|
|
77
|
+
.font-weight-semibold {
|
|
78
|
+
font-weight: 500;
|
|
79
|
+
}
|
|
80
|
+
|
|
67
81
|
// remove me when we upgrade to bootstrap 5
|
|
68
82
|
.text-decoration-underlined {
|
|
69
83
|
text-decoration: underline !important;
|
|
70
84
|
}
|
|
71
85
|
|
|
86
|
+
// BOXES
|
|
87
|
+
.with-box-shadow {
|
|
88
|
+
box-shadow: @box-shadow;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// remove me when we upgrade to bootstrap 5
|
|
92
|
+
.cursor-pointer {
|
|
93
|
+
& * {
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.cursor-default {
|
|
99
|
+
cursor: default;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// COLORS
|
|
72
103
|
.color-gray-400 {
|
|
73
104
|
color: @gray400;
|
|
74
105
|
}
|
|
75
106
|
|
|
107
|
+
// SPECIFICS
|
|
76
108
|
// I added the class here because atoka could not find it when it was imported in StatisticsTooltip
|
|
77
109
|
.statistics-tooltip {
|
|
78
110
|
max-width: 200px;
|