@appartmint/mint 2.10.18 → 2.10.19
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/css/mint.css +32 -0
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/form/_edit-info.scss +28 -0
- package/src/scss/imports/components/form/_index.scss +1 -0
- package/src/scss/imports/components/form/input/_label.scss +21 -0
- package/src/scss/imports/components/widget/_accordion.scss +20 -0
- package/src/scss/imports/components/widget/_button.scss +2 -2
- package/src/scss/imports/components/widget/_card.scss +2 -2
- package/src/scss/imports/components/widget/_image.scss +1 -1
- package/src/scss/imports/components/widget/_index.scss +2 -1
- package/src/scss/imports/components/widget/_panel.scss +1 -1
- package/src/scss/imports/components/widget/_table.scss +2 -2
- package/src/scss/imports/components/widget/_tooltip.scss +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/// _edit-info.scss - Edit info form styles
|
|
2
|
+
/// @author App Art Mint LLC
|
|
3
|
+
///
|
|
4
|
+
/// @group Form
|
|
5
|
+
@charset 'utf-8';
|
|
6
|
+
|
|
7
|
+
/// Imports
|
|
8
|
+
@use '../../util' as *;
|
|
9
|
+
|
|
10
|
+
/// Edit info form styles
|
|
11
|
+
#{class(edit-info)} {
|
|
12
|
+
&:not(#{class(editing)}) {
|
|
13
|
+
input {
|
|
14
|
+
background: transparent;
|
|
15
|
+
border: none;
|
|
16
|
+
color: css-var(fore);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&-toggle {
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: flex-end;
|
|
24
|
+
gap: 0.5rem;
|
|
25
|
+
margin-bottom: 1rem;
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// _label.scss - Label styles
|
|
2
|
+
/// @author App Art Mint LLC
|
|
3
|
+
///
|
|
4
|
+
/// @group Input
|
|
5
|
+
@charset 'utf-8';
|
|
6
|
+
|
|
7
|
+
/// Imports
|
|
8
|
+
@use '../../../util' as *;
|
|
9
|
+
|
|
10
|
+
/// Label styles
|
|
11
|
+
#{class(label)} {
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
gap: 0.5rem;
|
|
15
|
+
|
|
16
|
+
span {
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
gap: 0.5rem;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// _accordion.scss - Accordion styles
|
|
2
|
+
/// @author App Art Mint LLC
|
|
3
|
+
///
|
|
4
|
+
/// @group Widget
|
|
5
|
+
@charset 'utf-8';
|
|
6
|
+
|
|
7
|
+
/// Imports
|
|
8
|
+
@use '../../util' as *;
|
|
9
|
+
|
|
10
|
+
/// Accordion styles
|
|
11
|
+
#{class(accordion)} {
|
|
12
|
+
#{class(item)} {
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
|
|
15
|
+
#{class(wrapper)} {
|
|
16
|
+
transition: height 0.3s ease;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|