@acorex/styles 3.0.27 → 3.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/fonts/font-awesome/fa-brands-400.svg +3570 -3570
- package/fonts/font-awesome/fa-duotone-900.svg +15055 -15055
- package/fonts/font-awesome/fa-light-300.svg +12330 -12330
- package/fonts/font-awesome/fa-regular-400.svg +11256 -11256
- package/fonts/font-awesome/fa-solid-900.svg +9588 -9588
- package/fonts/font-awesome/font-awesome.css +16960 -16960
- package/package.json +11 -11
- package/scss/buttons.scss +64 -64
- package/scss/calendar.scss +129 -129
- package/scss/checkbox.scss +36 -36
- package/scss/context-menu.scss +80 -80
- package/scss/data-grid.scss +106 -106
- package/scss/drawer.scss +27 -27
- package/scss/fieldset.scss +22 -22
- package/scss/forms.scss +528 -528
- package/scss/list.scss +48 -48
- package/scss/master.scss +258 -258
- package/scss/menu.scss +471 -471
- package/scss/mixin.scss +11 -11
- package/scss/page.scss +53 -53
- package/scss/progress.scss +10 -10
- package/scss/selection-list.scss +116 -116
- package/scss/style.scss +49 -49
- package/scss/tab-strip.scss +23 -23
- package/scss/tab.scss +32 -32
- package/scss/toast.scss +23 -23
- package/scss/tooltip.scss +52 -52
- package/scss/treeview.scss +133 -133
- package/scss/upload.scss +168 -168
- package/scss/variables.scss +106 -106
package/scss/mixin.scss
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
@mixin ax-border-radius($size) {
|
|
2
|
-
border-radius: $size;
|
|
3
|
-
-moz-border-radius: $size;
|
|
4
|
-
-webkit-border-radius: $size;
|
|
5
|
-
-o-border-radius: $size;
|
|
6
|
-
}
|
|
7
|
-
@mixin ax-transition-all {
|
|
8
|
-
transition: all 0.3s;
|
|
9
|
-
-moz-transition: all 0.3s;
|
|
10
|
-
-webkit-transition: all 0.3s;
|
|
11
|
-
-o-transition: all 0.3s;
|
|
1
|
+
@mixin ax-border-radius($size) {
|
|
2
|
+
border-radius: $size;
|
|
3
|
+
-moz-border-radius: $size;
|
|
4
|
+
-webkit-border-radius: $size;
|
|
5
|
+
-o-border-radius: $size;
|
|
6
|
+
}
|
|
7
|
+
@mixin ax-transition-all {
|
|
8
|
+
transition: all 0.3s;
|
|
9
|
+
-moz-transition: all 0.3s;
|
|
10
|
+
-webkit-transition: all 0.3s;
|
|
11
|
+
-o-transition: all 0.3s;
|
|
12
12
|
}
|
package/scss/page.scss
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
.ax-page-toolbar {
|
|
2
|
-
position: sticky;
|
|
3
|
-
top: 0;
|
|
4
|
-
z-index: 1600;
|
|
5
|
-
background: white;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.page-content-wrap {
|
|
9
|
-
height: 100%;
|
|
10
|
-
|
|
11
|
-
.inner-content {
|
|
12
|
-
height: 100%;
|
|
13
|
-
max-height: 90vh;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.ax-overlay-wrapper {
|
|
18
|
-
z-index: 1701;
|
|
19
|
-
position: fixed;
|
|
20
|
-
left: 0px;
|
|
21
|
-
top: 0px;
|
|
22
|
-
transform: translate(0px, 0px);
|
|
23
|
-
width: 100%;
|
|
24
|
-
height: 100%;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.ax-overlay-modal {
|
|
28
|
-
width: 100%;
|
|
29
|
-
height: 100%;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.ax-loading-host {
|
|
33
|
-
display: block;
|
|
34
|
-
position: relative;
|
|
35
|
-
min-height: 100%;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.ax-loading-overlay {
|
|
39
|
-
position: absolute !important;
|
|
40
|
-
background: rgba(255, 255, 255, 0.5);
|
|
41
|
-
display: flex;
|
|
42
|
-
justify-content: center;
|
|
43
|
-
align-content: center;
|
|
44
|
-
align-items: center;
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.ax-tab-page-host {
|
|
49
|
-
height: 100%;
|
|
50
|
-
display: block;
|
|
51
|
-
position: relative;
|
|
52
|
-
overflow-y: auto;
|
|
53
|
-
width: 100%;
|
|
1
|
+
.ax-page-toolbar {
|
|
2
|
+
position: sticky;
|
|
3
|
+
top: 0;
|
|
4
|
+
z-index: 1600;
|
|
5
|
+
background: white;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.page-content-wrap {
|
|
9
|
+
height: 100%;
|
|
10
|
+
|
|
11
|
+
.inner-content {
|
|
12
|
+
height: 100%;
|
|
13
|
+
max-height: 90vh;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ax-overlay-wrapper {
|
|
18
|
+
z-index: 1701;
|
|
19
|
+
position: fixed;
|
|
20
|
+
left: 0px;
|
|
21
|
+
top: 0px;
|
|
22
|
+
transform: translate(0px, 0px);
|
|
23
|
+
width: 100%;
|
|
24
|
+
height: 100%;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ax-overlay-modal {
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: 100%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ax-loading-host {
|
|
33
|
+
display: block;
|
|
34
|
+
position: relative;
|
|
35
|
+
min-height: 100%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.ax-loading-overlay {
|
|
39
|
+
position: absolute !important;
|
|
40
|
+
background: rgba(255, 255, 255, 0.5);
|
|
41
|
+
display: flex;
|
|
42
|
+
justify-content: center;
|
|
43
|
+
align-content: center;
|
|
44
|
+
align-items: center;
|
|
45
|
+
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ax-tab-page-host {
|
|
49
|
+
height: 100%;
|
|
50
|
+
display: block;
|
|
51
|
+
position: relative;
|
|
52
|
+
overflow-y: auto;
|
|
53
|
+
width: 100%;
|
|
54
54
|
}
|
package/scss/progress.scss
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
.ax{
|
|
2
|
-
&.progress {
|
|
3
|
-
background: var(--ax-light-light-color);
|
|
4
|
-
margin: 0.2em 0;
|
|
5
|
-
.progress-bar {
|
|
6
|
-
background: var(--ax-primary-color);
|
|
7
|
-
color: var(--ax-primary-fore-color);
|
|
8
|
-
padding: 0.2em 0;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
1
|
+
.ax{
|
|
2
|
+
&.progress {
|
|
3
|
+
background: var(--ax-light-light-color);
|
|
4
|
+
margin: 0.2em 0;
|
|
5
|
+
.progress-bar {
|
|
6
|
+
background: var(--ax-primary-color);
|
|
7
|
+
color: var(--ax-primary-fore-color);
|
|
8
|
+
padding: 0.2em 0;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
11
|
}
|
package/scss/selection-list.scss
CHANGED
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
.ax {
|
|
2
|
-
&.selection-list {
|
|
3
|
-
display: flex;
|
|
4
|
-
|
|
5
|
-
&.vertical {
|
|
6
|
-
flex-direction: column;
|
|
7
|
-
margin-block-end: 1em;
|
|
8
|
-
|
|
9
|
-
label {
|
|
10
|
-
margin-block-end: 1em;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&.horizontal {
|
|
15
|
-
flex-direction: row;
|
|
16
|
-
margin-block-end: 1em;
|
|
17
|
-
|
|
18
|
-
label {
|
|
19
|
-
margin-inline-end: 1em;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
.ax {
|
|
25
|
-
&.radio {
|
|
26
|
-
display: block;
|
|
27
|
-
position: relative;
|
|
28
|
-
padding-left: 2em;
|
|
29
|
-
line-height: 1.5em;
|
|
30
|
-
cursor: pointer;
|
|
31
|
-
font-size: inherit;
|
|
32
|
-
-webkit-user-select: none;
|
|
33
|
-
-moz-user-select: none;
|
|
34
|
-
-ms-user-select: none;
|
|
35
|
-
user-select: none;
|
|
36
|
-
|
|
37
|
-
[dir="rtl"] &{
|
|
38
|
-
padding-left: 0 !important;
|
|
39
|
-
padding-right: 2em;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&.disabled .checkmark {
|
|
43
|
-
background: var(--ax-light-light-color) !important;
|
|
44
|
-
border-color: var(--ax-light-light-color) !important;
|
|
45
|
-
cursor: not-allowed;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
&.disabled .checkmark:after {
|
|
49
|
-
background-color: var(--ax-gray-color) !important;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Hide the browser's default radio */
|
|
54
|
-
&.radio input {
|
|
55
|
-
position: absolute;
|
|
56
|
-
opacity: 0;
|
|
57
|
-
cursor: pointer;
|
|
58
|
-
height: 0;
|
|
59
|
-
width: 0;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/* Create a custom radio */
|
|
63
|
-
&.radio .checkmark {
|
|
64
|
-
position: absolute;
|
|
65
|
-
top: 0;
|
|
66
|
-
left: 0;
|
|
67
|
-
height: 1.5em;
|
|
68
|
-
width: 1.5em;
|
|
69
|
-
background-color: var(--ax-white-color);
|
|
70
|
-
border-style: solid;
|
|
71
|
-
border-width: 1px;
|
|
72
|
-
border-color: var(--ax-border-color);
|
|
73
|
-
-webkit-border-radius: 50%;
|
|
74
|
-
-moz-border-radius: 50%;
|
|
75
|
-
border-radius: 50%;
|
|
76
|
-
|
|
77
|
-
[dir="rtl"] &{
|
|
78
|
-
right: 0 !important;
|
|
79
|
-
left: inherit !important;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* On mouse-over, add a grey background color */
|
|
84
|
-
&.radio:hover input ~ .checkmark {
|
|
85
|
-
border-color: var(--ax-border-dark-color);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
/* When the radio is checked, add a blue background */
|
|
89
|
-
&.radio input:checked ~ .checkmark {
|
|
90
|
-
background-color: var(--ax-white-color);
|
|
91
|
-
border-color: var(--ax-primary-color);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
/* Create the checkmark/indicator (hidden when not checked) */
|
|
95
|
-
&.radio .checkmark:after {
|
|
96
|
-
content: "";
|
|
97
|
-
position: absolute;
|
|
98
|
-
display: none;
|
|
99
|
-
border-radius: 50%;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
/* Show the checkmark when checked */
|
|
103
|
-
&.radio input:checked ~ .checkmark:after {
|
|
104
|
-
display: block;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/* Style the checkmark/indicator */
|
|
108
|
-
&.radio .checkmark:after {
|
|
109
|
-
left: 31.5%;
|
|
110
|
-
top: 33.3%;
|
|
111
|
-
width: 0.5em;
|
|
112
|
-
height: 0.5em;
|
|
113
|
-
background-color: var(--ax-primary-color);
|
|
114
|
-
border-radius: 50%;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
1
|
+
.ax {
|
|
2
|
+
&.selection-list {
|
|
3
|
+
display: flex;
|
|
4
|
+
|
|
5
|
+
&.vertical {
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
margin-block-end: 1em;
|
|
8
|
+
|
|
9
|
+
label {
|
|
10
|
+
margin-block-end: 1em;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.horizontal {
|
|
15
|
+
flex-direction: row;
|
|
16
|
+
margin-block-end: 1em;
|
|
17
|
+
|
|
18
|
+
label {
|
|
19
|
+
margin-inline-end: 1em;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
.ax {
|
|
25
|
+
&.radio {
|
|
26
|
+
display: block;
|
|
27
|
+
position: relative;
|
|
28
|
+
padding-left: 2em;
|
|
29
|
+
line-height: 1.5em;
|
|
30
|
+
cursor: pointer;
|
|
31
|
+
font-size: inherit;
|
|
32
|
+
-webkit-user-select: none;
|
|
33
|
+
-moz-user-select: none;
|
|
34
|
+
-ms-user-select: none;
|
|
35
|
+
user-select: none;
|
|
36
|
+
|
|
37
|
+
[dir="rtl"] &{
|
|
38
|
+
padding-left: 0 !important;
|
|
39
|
+
padding-right: 2em;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.disabled .checkmark {
|
|
43
|
+
background: var(--ax-light-light-color) !important;
|
|
44
|
+
border-color: var(--ax-light-light-color) !important;
|
|
45
|
+
cursor: not-allowed;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.disabled .checkmark:after {
|
|
49
|
+
background-color: var(--ax-gray-color) !important;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* Hide the browser's default radio */
|
|
54
|
+
&.radio input {
|
|
55
|
+
position: absolute;
|
|
56
|
+
opacity: 0;
|
|
57
|
+
cursor: pointer;
|
|
58
|
+
height: 0;
|
|
59
|
+
width: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* Create a custom radio */
|
|
63
|
+
&.radio .checkmark {
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: 0;
|
|
66
|
+
left: 0;
|
|
67
|
+
height: 1.5em;
|
|
68
|
+
width: 1.5em;
|
|
69
|
+
background-color: var(--ax-white-color);
|
|
70
|
+
border-style: solid;
|
|
71
|
+
border-width: 1px;
|
|
72
|
+
border-color: var(--ax-border-color);
|
|
73
|
+
-webkit-border-radius: 50%;
|
|
74
|
+
-moz-border-radius: 50%;
|
|
75
|
+
border-radius: 50%;
|
|
76
|
+
|
|
77
|
+
[dir="rtl"] &{
|
|
78
|
+
right: 0 !important;
|
|
79
|
+
left: inherit !important;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* On mouse-over, add a grey background color */
|
|
84
|
+
&.radio:hover input ~ .checkmark {
|
|
85
|
+
border-color: var(--ax-border-dark-color);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* When the radio is checked, add a blue background */
|
|
89
|
+
&.radio input:checked ~ .checkmark {
|
|
90
|
+
background-color: var(--ax-white-color);
|
|
91
|
+
border-color: var(--ax-primary-color);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Create the checkmark/indicator (hidden when not checked) */
|
|
95
|
+
&.radio .checkmark:after {
|
|
96
|
+
content: "";
|
|
97
|
+
position: absolute;
|
|
98
|
+
display: none;
|
|
99
|
+
border-radius: 50%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* Show the checkmark when checked */
|
|
103
|
+
&.radio input:checked ~ .checkmark:after {
|
|
104
|
+
display: block;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* Style the checkmark/indicator */
|
|
108
|
+
&.radio .checkmark:after {
|
|
109
|
+
left: 31.5%;
|
|
110
|
+
top: 33.3%;
|
|
111
|
+
width: 0.5em;
|
|
112
|
+
height: 0.5em;
|
|
113
|
+
background-color: var(--ax-primary-color);
|
|
114
|
+
border-radius: 50%;
|
|
115
|
+
}
|
|
116
|
+
}
|
package/scss/style.scss
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
@import "./buttons.scss";
|
|
2
|
-
@import "./calendar.scss";
|
|
3
|
-
@import "./checkbox.scss";
|
|
4
|
-
@import "./context-menu.scss";
|
|
5
|
-
@import "./drawer.scss";
|
|
6
|
-
@import "./data-grid.scss";
|
|
7
|
-
@import "./fieldset.scss";
|
|
8
|
-
@import "./list.scss";
|
|
9
|
-
@import "./menu.scss";
|
|
10
|
-
@import "./progress.scss";
|
|
11
|
-
@import "./selection-list.scss";
|
|
12
|
-
@import "./forms.scss";
|
|
13
|
-
@import "./tooltip.scss";
|
|
14
|
-
@import "./tab.scss";
|
|
15
|
-
@import "./tab-strip.scss";
|
|
16
|
-
@import "./toast.scss";
|
|
17
|
-
@import "./treeview.scss";
|
|
18
|
-
@import "./upload.scss";
|
|
19
|
-
@import "./master.scss";
|
|
20
|
-
@import "./page.scss";
|
|
21
|
-
@import "~animate.css/animate.min.css";
|
|
22
|
-
* {
|
|
23
|
-
box-sizing: border-box;
|
|
24
|
-
outline-color: transparent;
|
|
25
|
-
&:focus {
|
|
26
|
-
outline: none;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
html,
|
|
31
|
-
body {
|
|
32
|
-
-webkit-overflow-scrolling: touch;
|
|
33
|
-
scroll-behavior: smooth;
|
|
34
|
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
35
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
36
|
-
font-size: 12px;
|
|
37
|
-
line-height: 1.4285em;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.rtl {
|
|
41
|
-
direction: rtl;
|
|
42
|
-
text-align: right;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.ltr {
|
|
46
|
-
direction: ltr;
|
|
47
|
-
text-align: left;
|
|
48
|
-
}
|
|
49
|
-
|
|
1
|
+
@import "./buttons.scss";
|
|
2
|
+
@import "./calendar.scss";
|
|
3
|
+
@import "./checkbox.scss";
|
|
4
|
+
@import "./context-menu.scss";
|
|
5
|
+
@import "./drawer.scss";
|
|
6
|
+
@import "./data-grid.scss";
|
|
7
|
+
@import "./fieldset.scss";
|
|
8
|
+
@import "./list.scss";
|
|
9
|
+
@import "./menu.scss";
|
|
10
|
+
@import "./progress.scss";
|
|
11
|
+
@import "./selection-list.scss";
|
|
12
|
+
@import "./forms.scss";
|
|
13
|
+
@import "./tooltip.scss";
|
|
14
|
+
@import "./tab.scss";
|
|
15
|
+
@import "./tab-strip.scss";
|
|
16
|
+
@import "./toast.scss";
|
|
17
|
+
@import "./treeview.scss";
|
|
18
|
+
@import "./upload.scss";
|
|
19
|
+
@import "./master.scss";
|
|
20
|
+
@import "./page.scss";
|
|
21
|
+
@import "~animate.css/animate.min.css";
|
|
22
|
+
* {
|
|
23
|
+
box-sizing: border-box;
|
|
24
|
+
outline-color: transparent;
|
|
25
|
+
&:focus {
|
|
26
|
+
outline: none;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
html,
|
|
31
|
+
body {
|
|
32
|
+
-webkit-overflow-scrolling: touch;
|
|
33
|
+
scroll-behavior: smooth;
|
|
34
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
35
|
+
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
36
|
+
font-size: 12px;
|
|
37
|
+
line-height: 1.4285em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.rtl {
|
|
41
|
+
direction: rtl;
|
|
42
|
+
text-align: right;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ltr {
|
|
46
|
+
direction: ltr;
|
|
47
|
+
text-align: left;
|
|
48
|
+
}
|
|
49
|
+
|
package/scss/tab-strip.scss
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
.tab-strip-container {
|
|
2
|
-
padding: 0;
|
|
3
|
-
margin: 0;
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
|
|
7
|
-
li {
|
|
8
|
-
display: inline;
|
|
9
|
-
padding: 0.5em;
|
|
10
|
-
border-bottom: 1px solid;
|
|
11
|
-
border-color: var(--ax-border-color);
|
|
12
|
-
margin-inline-end: 0.3em;
|
|
13
|
-
cursor: pointer;
|
|
14
|
-
background-color: var(--ax-white-color);
|
|
15
|
-
|
|
16
|
-
&.active {
|
|
17
|
-
border-color: var(--ax-primary-color) !important;
|
|
18
|
-
}
|
|
19
|
-
&:hover{
|
|
20
|
-
background-color: var(--ax-light-light-color);
|
|
21
|
-
border-color: transparent;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
.tab-strip-container {
|
|
2
|
+
padding: 0;
|
|
3
|
+
margin: 0;
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
|
|
7
|
+
li {
|
|
8
|
+
display: inline;
|
|
9
|
+
padding: 0.5em;
|
|
10
|
+
border-bottom: 1px solid;
|
|
11
|
+
border-color: var(--ax-border-color);
|
|
12
|
+
margin-inline-end: 0.3em;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
background-color: var(--ax-white-color);
|
|
15
|
+
|
|
16
|
+
&.active {
|
|
17
|
+
border-color: var(--ax-primary-color) !important;
|
|
18
|
+
}
|
|
19
|
+
&:hover{
|
|
20
|
+
background-color: var(--ax-light-light-color);
|
|
21
|
+
border-color: transparent;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
24
|
}
|
package/scss/tab.scss
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
.ax {
|
|
2
|
-
&.nav-tabs {
|
|
3
|
-
display: flex;
|
|
4
|
-
list-style: none;
|
|
5
|
-
margin: 0;
|
|
6
|
-
padding: 0;
|
|
7
|
-
padding: 0;
|
|
8
|
-
border-bottom: 1px solid var(--ax-border-color);
|
|
9
|
-
li {
|
|
10
|
-
margin-inline-end: 0.5em;
|
|
11
|
-
padding: 1em;
|
|
12
|
-
background: var(--ax-light-light-color);
|
|
13
|
-
border-bottom: 2px solid var(--ax-primary-color);
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
-webkit-border-top-left-radius: var(--ax-size-border-radius);
|
|
16
|
-
-webkit-border-top-right-radius: var(--ax-size-border-radius);
|
|
17
|
-
-moz-border-radius-topleft: var(--ax-size-border-radius);
|
|
18
|
-
-moz-border-radius-topright: var(--ax-size-border-radius);
|
|
19
|
-
border-top-left-radius: var(--ax-size-border-radius);
|
|
20
|
-
border-top-right-radius: var(--ax-size-border-radius);
|
|
21
|
-
&:hover {
|
|
22
|
-
background: var(--ax-primary-color);
|
|
23
|
-
color: var(--ax-primary-fore-color);
|
|
24
|
-
transition: all 0.3s;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&.active {
|
|
28
|
-
background: var(--ax-primary-color);
|
|
29
|
-
color: var(--ax-primary-fore-color);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
1
|
+
.ax {
|
|
2
|
+
&.nav-tabs {
|
|
3
|
+
display: flex;
|
|
4
|
+
list-style: none;
|
|
5
|
+
margin: 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
padding: 0;
|
|
8
|
+
border-bottom: 1px solid var(--ax-border-color);
|
|
9
|
+
li {
|
|
10
|
+
margin-inline-end: 0.5em;
|
|
11
|
+
padding: 1em;
|
|
12
|
+
background: var(--ax-light-light-color);
|
|
13
|
+
border-bottom: 2px solid var(--ax-primary-color);
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
-webkit-border-top-left-radius: var(--ax-size-border-radius);
|
|
16
|
+
-webkit-border-top-right-radius: var(--ax-size-border-radius);
|
|
17
|
+
-moz-border-radius-topleft: var(--ax-size-border-radius);
|
|
18
|
+
-moz-border-radius-topright: var(--ax-size-border-radius);
|
|
19
|
+
border-top-left-radius: var(--ax-size-border-radius);
|
|
20
|
+
border-top-right-radius: var(--ax-size-border-radius);
|
|
21
|
+
&:hover {
|
|
22
|
+
background: var(--ax-primary-color);
|
|
23
|
+
color: var(--ax-primary-fore-color);
|
|
24
|
+
transition: all 0.3s;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.active {
|
|
28
|
+
background: var(--ax-primary-color);
|
|
29
|
+
color: var(--ax-primary-fore-color);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
33
|
}
|
package/scss/toast.scss
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
@import "./variables.scss";
|
|
2
|
-
.ax {
|
|
3
|
-
&.toast {
|
|
4
|
-
&.info {
|
|
5
|
-
background-color: var(--ax-info-color);
|
|
6
|
-
color: var(--ax-info-fore-color);
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
&.success {
|
|
10
|
-
background-color: var(--ax-success-color);
|
|
11
|
-
color: var(--ax-success-fore-color);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&.warning {
|
|
15
|
-
background-color: var(--ax-warning-color);
|
|
16
|
-
color: var(--ax-warning-fore-color);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&.error {
|
|
20
|
-
background-color: var(--ax-danger-color);
|
|
21
|
-
color: var(--ax-danger-fore-color);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
@import "./variables.scss";
|
|
2
|
+
.ax {
|
|
3
|
+
&.toast {
|
|
4
|
+
&.info {
|
|
5
|
+
background-color: var(--ax-info-color);
|
|
6
|
+
color: var(--ax-info-fore-color);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&.success {
|
|
10
|
+
background-color: var(--ax-success-color);
|
|
11
|
+
color: var(--ax-success-fore-color);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.warning {
|
|
15
|
+
background-color: var(--ax-warning-color);
|
|
16
|
+
color: var(--ax-warning-fore-color);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.error {
|
|
20
|
+
background-color: var(--ax-danger-color);
|
|
21
|
+
color: var(--ax-danger-fore-color);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
24
|
}
|