wini-web-components 0.3.0 → 0.4.0
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/index.js +1 -0
- package/package.json +25 -9
- package/src/component/calendar/calendar.css +0 -133
- package/src/component/calendar/calendar.tsx +0 -448
- package/src/component/checkbox/checkbox.css +0 -46
- package/src/component/checkbox/checkbox.tsx +0 -59
- package/src/component/component-status.tsx +0 -53
- package/src/component/date-picker/date-picker.css +0 -114
- package/src/component/date-picker/date-picker.tsx +0 -363
- package/src/component/dialog/dialog.css +0 -125
- package/src/component/dialog/dialog.tsx +0 -91
- package/src/component/import-file/import-file.css +0 -86
- package/src/component/import-file/import-file.tsx +0 -154
- package/src/component/infinite-scroll/infinite-scroll.css +0 -37
- package/src/component/infinite-scroll/infinite-scroll.tsx +0 -33
- package/src/component/input-multi-select/input-multi-select.css +0 -127
- package/src/component/input-multi-select/input-multi-select.tsx +0 -261
- package/src/component/pagination/pagination.css +0 -69
- package/src/component/pagination/pagination.tsx +0 -65
- package/src/component/popup/popup.css +0 -90
- package/src/component/popup/popup.tsx +0 -105
- package/src/component/progress-bar/progress-bar.css +0 -47
- package/src/component/progress-bar/progress-bar.tsx +0 -34
- package/src/component/progress-circle/progress-circle.css +0 -47
- package/src/component/progress-circle/progress-circle.tsx +0 -24
- package/src/component/radio-button/radio-button.css +0 -49
- package/src/component/radio-button/radio-button.tsx +0 -59
- package/src/component/rating/rating.css +0 -11
- package/src/component/rating/rating.tsx +0 -65
- package/src/component/select1/select1.css +0 -155
- package/src/component/select1/select1.tsx +0 -241
- package/src/component/slider/slider.css +0 -16
- package/src/component/slider/slider.tsx +0 -87
- package/src/component/switch/switch.css +0 -53
- package/src/component/switch/switch.tsx +0 -67
- package/src/component/table/table.css +0 -74
- package/src/component/table/table.tsx +0 -99
- package/src/component/text/text.css +0 -16
- package/src/component/text/text.tsx +0 -21
- package/src/component/text-area/text-area.css +0 -63
- package/src/component/text-area/text-area.tsx +0 -55
- package/src/component/text-field/text-field.css +0 -64
- package/src/component/text-field/text-field.tsx +0 -63
- package/src/component/toast-noti/toast-noti.css +0 -0
- package/src/component/toast-noti/toast-noti.tsx +0 -21
- package/src/index.js +0 -51
- package/src/logo.svg +0 -1
- package/src/skin/color.css +0 -17
- package/src/skin/layout.css +0 -601
- package/src/skin/typography.css +0 -378
package/src/index.js
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import './skin/color.css'
|
|
2
|
-
import './skin/layoout.css'
|
|
3
|
-
import './skin/typography.css'
|
|
4
|
-
import { Checkbox } from './component/checkbox/checkbox.tsx'
|
|
5
|
-
import { Select1 } from './component/select1/select1.tsx'
|
|
6
|
-
import { Switch } from './component/switch/switch.tsx'
|
|
7
|
-
import { showPopup, closePopup, Popup } from './component/popup/popup.tsx'
|
|
8
|
-
import { showDialog, Dialog, DialogAlignment } from './component/dialog/dialog.tsx'
|
|
9
|
-
import { DatePicker } from './component/date-picker/date-picker.tsx'
|
|
10
|
-
import { SelectMultiple } from './component/input-multi-select/input-multi-select.tsx'
|
|
11
|
-
import { ProgressBar } from './component/progress-bar/progress-bar.tsx'
|
|
12
|
-
import { ComponentStatus, getStatusIcon } from './component/component-status.tsx'
|
|
13
|
-
import { Text } from './component/text/text.tsx'
|
|
14
|
-
import { Pagination } from './component/pagination/pagination.tsx'
|
|
15
|
-
import { Table, TbCell, TbHeader, TbRow, TbBody, CellAlignItems } from './component/table/table.tsx'
|
|
16
|
-
import { TextField } from './component/text-field/text-field.tsx'
|
|
17
|
-
import { RadioButton } from './component/radio-button/radio-button.tsx'
|
|
18
|
-
import { TextArea } from './component/text-area/text-area.tsx'
|
|
19
|
-
import { ImportFile } from './component/import-file/import-file.tsx'
|
|
20
|
-
import { ToastMessage } from './component/toast-noti/toast-noti.tsx'
|
|
21
|
-
import { Calendar, CalendarType } from './component/calendar/calendar'
|
|
22
|
-
import { InfiniteScroll } from './component/infinite-scroll/infinite-scroll.tsx'
|
|
23
|
-
import { Rating } from './component/rating/rating.tsx'
|
|
24
|
-
import { ProgressCircle } from './component/progress-circle/progress-circle.tsx'
|
|
25
|
-
import { CustomSlider } from './component/slider/slider.tsx'
|
|
26
|
-
|
|
27
|
-
export {
|
|
28
|
-
Calendar, CalendarType,
|
|
29
|
-
ComponentStatus,
|
|
30
|
-
getStatusIcon,
|
|
31
|
-
Checkbox,
|
|
32
|
-
Select1,
|
|
33
|
-
Switch,
|
|
34
|
-
Popup, showPopup, closePopup,
|
|
35
|
-
Dialog, showDialog, DialogAlignment,
|
|
36
|
-
DatePicker,
|
|
37
|
-
SelectMultiple,
|
|
38
|
-
ProgressBar,
|
|
39
|
-
Text,
|
|
40
|
-
Pagination,
|
|
41
|
-
Table, TbCell, TbHeader, TbBody, TbRow, CellAlignItems,
|
|
42
|
-
TextField,
|
|
43
|
-
RadioButton,
|
|
44
|
-
TextArea,
|
|
45
|
-
ImportFile,
|
|
46
|
-
ToastMessage,
|
|
47
|
-
InfiniteScroll,
|
|
48
|
-
Rating,
|
|
49
|
-
ProgressCircle,
|
|
50
|
-
CustomSlider,
|
|
51
|
-
}
|
package/src/logo.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
|
package/src/skin/color.css
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--primary-color: #0968D3;
|
|
3
|
-
--infor-color: #366AE2;
|
|
4
|
-
--infor-background: #EDF2FD;
|
|
5
|
-
--success-color: #39AC6D;
|
|
6
|
-
--success-background: #E8F7EF;
|
|
7
|
-
--warning-color: #FC6B03;
|
|
8
|
-
--warning-background: #FFF3EB;
|
|
9
|
-
--error-color: #E14337;
|
|
10
|
-
--error-background: #FCEEED;
|
|
11
|
-
--background: #F2F5F8;
|
|
12
|
-
--hover-background: #f1f1f1;
|
|
13
|
-
--selected-background: #C0CBD83D;
|
|
14
|
-
--disabled-background: #f5f7fa;
|
|
15
|
-
--disabled-font-color: #9fb0c7b3;
|
|
16
|
-
--border-grey1: 1px solid #00358014;
|
|
17
|
-
}
|
package/src/skin/layout.css
DELETED
|
@@ -1,601 +0,0 @@
|
|
|
1
|
-
* {
|
|
2
|
-
flex-shrink: 0;
|
|
3
|
-
box-sizing: border-box;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.row {
|
|
7
|
-
display: -webkit-flex;
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-direction: row;
|
|
10
|
-
align-items: center;
|
|
11
|
-
overflow: hidden;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.col {
|
|
15
|
-
display: flex;
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
overflow: hidden;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.row>.col0 {
|
|
21
|
-
display: none !important;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.row>.col1 {
|
|
25
|
-
width: auto !important;
|
|
26
|
-
min-width: auto !important;
|
|
27
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.row>.col2 {
|
|
31
|
-
width: auto !important;
|
|
32
|
-
min-width: auto !important;
|
|
33
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.row>.col3 {
|
|
37
|
-
width: auto !important;
|
|
38
|
-
min-width: auto !important;
|
|
39
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.row>.col4 {
|
|
43
|
-
width: auto !important;
|
|
44
|
-
min-width: auto !important;
|
|
45
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.row>.col6 {
|
|
49
|
-
width: auto !important;
|
|
50
|
-
min-width: auto !important;
|
|
51
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.row>.col8 {
|
|
55
|
-
width: auto !important;
|
|
56
|
-
min-width: auto !important;
|
|
57
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.row>.col10 {
|
|
61
|
-
width: auto !important;
|
|
62
|
-
min-width: auto !important;
|
|
63
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.row>.col12 {
|
|
67
|
-
width: auto !important;
|
|
68
|
-
min-width: auto !important;
|
|
69
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.row>.col16 {
|
|
73
|
-
width: auto !important;
|
|
74
|
-
min-width: auto !important;
|
|
75
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.row>.col18 {
|
|
79
|
-
width: auto !important;
|
|
80
|
-
min-width: auto !important;
|
|
81
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.row>.col20 {
|
|
85
|
-
width: auto !important;
|
|
86
|
-
min-width: auto !important;
|
|
87
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.row>.col24 {
|
|
91
|
-
width: auto !important;
|
|
92
|
-
min-width: auto !important;
|
|
93
|
-
flex: 0 100% !important;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/* Extra small devices (phones, 576px and down) min*/
|
|
97
|
-
@media only screen and (max-width: 576px) {
|
|
98
|
-
:root {
|
|
99
|
-
font-size: 6px !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.row>.col0-min {
|
|
103
|
-
display: none !important;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.row>.col1-min {
|
|
107
|
-
width: auto !important;
|
|
108
|
-
min-width: auto !important;
|
|
109
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.row>.col2-min {
|
|
113
|
-
width: auto !important;
|
|
114
|
-
min-width: auto !important;
|
|
115
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.row>.col3-min {
|
|
119
|
-
width: auto !important;
|
|
120
|
-
min-width: auto !important;
|
|
121
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.row>.col4-min {
|
|
125
|
-
width: auto !important;
|
|
126
|
-
min-width: auto !important;
|
|
127
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.row>.col6-min {
|
|
131
|
-
width: auto !important;
|
|
132
|
-
min-width: auto !important;
|
|
133
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.row>.col8-min {
|
|
137
|
-
width: auto !important;
|
|
138
|
-
min-width: auto !important;
|
|
139
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.row>.col10-min {
|
|
143
|
-
width: auto !important;
|
|
144
|
-
min-width: auto !important;
|
|
145
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.row>.col12-min {
|
|
149
|
-
width: auto !important;
|
|
150
|
-
min-width: auto !important;
|
|
151
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.row>.col16-min {
|
|
155
|
-
width: auto !important;
|
|
156
|
-
min-width: auto !important;
|
|
157
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.row>.col18-min {
|
|
161
|
-
width: auto !important;
|
|
162
|
-
min-width: auto !important;
|
|
163
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.row>.col20-min {
|
|
167
|
-
width: auto !important;
|
|
168
|
-
min-width: auto !important;
|
|
169
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.row>.col24-min {
|
|
173
|
-
width: auto !important;
|
|
174
|
-
min-width: auto !important;
|
|
175
|
-
flex: 0 100% !important;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/* more config responsive */
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/* Small devices (portrait tablets and large phones, 576px and up) Small (sm)*/
|
|
182
|
-
@media only screen and (min-width: 576px) and (max-width: 768px) {
|
|
183
|
-
:root {
|
|
184
|
-
font-size: 6.8px !important;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.row>.col0-sm {
|
|
188
|
-
display: none !important;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.row>.col1-sm {
|
|
192
|
-
width: auto !important;
|
|
193
|
-
min-width: auto !important;
|
|
194
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.row>.col2-sm {
|
|
198
|
-
width: auto !important;
|
|
199
|
-
min-width: auto !important;
|
|
200
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.row>.col3-sm {
|
|
204
|
-
width: auto !important;
|
|
205
|
-
min-width: auto !important;
|
|
206
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.row>.col4-sm {
|
|
210
|
-
width: auto !important;
|
|
211
|
-
min-width: auto !important;
|
|
212
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.row>.col6-sm {
|
|
216
|
-
width: auto !important;
|
|
217
|
-
min-width: auto !important;
|
|
218
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.row>.col8-sm {
|
|
222
|
-
width: auto !important;
|
|
223
|
-
min-width: auto !important;
|
|
224
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.row>.col10-sm {
|
|
228
|
-
width: auto !important;
|
|
229
|
-
min-width: auto !important;
|
|
230
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
.row>.col12-sm {
|
|
235
|
-
width: auto !important;
|
|
236
|
-
min-width: auto !important;
|
|
237
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.row>.col16-sm {
|
|
241
|
-
width: auto !important;
|
|
242
|
-
min-width: auto !important;
|
|
243
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.row>.col18-sm {
|
|
247
|
-
width: auto !important;
|
|
248
|
-
min-width: auto !important;
|
|
249
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.row>.col20-sm {
|
|
253
|
-
width: auto !important;
|
|
254
|
-
min-width: auto !important;
|
|
255
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.row>.col24-sm {
|
|
259
|
-
width: auto !important;
|
|
260
|
-
min-width: auto !important;
|
|
261
|
-
flex: 0 100% !important;
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
/* Medium devices (landscape tablets, 768px and up) Medium (md)*/
|
|
266
|
-
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
|
267
|
-
:root {
|
|
268
|
-
font-size: 7.6px !important;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.row>.col0-md {
|
|
272
|
-
display: none !important;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.row>.col1-md {
|
|
276
|
-
width: auto !important;
|
|
277
|
-
min-width: auto !important;
|
|
278
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.row>.col2-md {
|
|
282
|
-
width: auto !important;
|
|
283
|
-
min-width: auto !important;
|
|
284
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.row>.col3-md {
|
|
288
|
-
width: auto !important;
|
|
289
|
-
min-width: auto !important;
|
|
290
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.row>.col4-md {
|
|
294
|
-
width: auto !important;
|
|
295
|
-
min-width: auto !important;
|
|
296
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.row>.col6-md {
|
|
300
|
-
width: auto !important;
|
|
301
|
-
min-width: auto !important;
|
|
302
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.row>.col8-md {
|
|
306
|
-
width: auto !important;
|
|
307
|
-
min-width: auto !important;
|
|
308
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.row>.col10-md {
|
|
312
|
-
width: auto !important;
|
|
313
|
-
min-width: auto !important;
|
|
314
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
.row>.col12-md {
|
|
318
|
-
width: auto !important;
|
|
319
|
-
min-width: auto !important;
|
|
320
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.row>.col16-md {
|
|
324
|
-
width: auto !important;
|
|
325
|
-
min-width: auto !important;
|
|
326
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.row>.col18-md {
|
|
330
|
-
width: auto !important;
|
|
331
|
-
min-width: auto !important;
|
|
332
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
.row>.col20-md {
|
|
336
|
-
width: auto !important;
|
|
337
|
-
min-width: auto !important;
|
|
338
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.row>.col24-md {
|
|
342
|
-
width: auto !important;
|
|
343
|
-
min-width: auto !important;
|
|
344
|
-
flex: 0 100% !important;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
/* more config resposive */
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
/* Large devices (laptops/desktops, 992px and up) Large (lg)*/
|
|
351
|
-
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
|
352
|
-
:root {
|
|
353
|
-
font-size: 8.4px !important;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.row>.col0-lg {
|
|
357
|
-
display: none !important;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
.row>.col1-lg {
|
|
361
|
-
width: auto !important;
|
|
362
|
-
min-width: auto !important;
|
|
363
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.row>.col2-lg {
|
|
367
|
-
width: auto !important;
|
|
368
|
-
min-width: auto !important;
|
|
369
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.row>.col3-lg {
|
|
373
|
-
width: auto !important;
|
|
374
|
-
min-width: auto !important;
|
|
375
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.row>.col4-lg {
|
|
379
|
-
width: auto !important;
|
|
380
|
-
min-width: auto !important;
|
|
381
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.row>.col6-lg {
|
|
385
|
-
width: auto !important;
|
|
386
|
-
min-width: auto !important;
|
|
387
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.row>.col8-lg {
|
|
391
|
-
width: auto !important;
|
|
392
|
-
min-width: auto !important;
|
|
393
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.row>.col10-lg {
|
|
397
|
-
width: auto !important;
|
|
398
|
-
min-width: auto !important;
|
|
399
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.row>.col12-lg {
|
|
403
|
-
width: auto !important;
|
|
404
|
-
min-width: auto !important;
|
|
405
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.row>.col16-lg {
|
|
409
|
-
width: auto !important;
|
|
410
|
-
min-width: auto !important;
|
|
411
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.row>.col20-lg {
|
|
415
|
-
width: auto !important;
|
|
416
|
-
min-width: auto !important;
|
|
417
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.row>.col18-lg {
|
|
421
|
-
width: auto !important;
|
|
422
|
-
min-width: auto !important;
|
|
423
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.row>.col24-lg {
|
|
427
|
-
width: auto !important;
|
|
428
|
-
min-width: auto !important;
|
|
429
|
-
flex: 0 100% !important;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
/* more config resposive */
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
/* Extra large devices (large laptops and desktops, 1200px and up) X-large (xl)*/
|
|
436
|
-
@media only screen and (min-width: 1200px) {
|
|
437
|
-
:root {
|
|
438
|
-
font-size: 8.8px !important;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.row>.col0-xl {
|
|
442
|
-
display: none !important;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.row>.col1-xl {
|
|
446
|
-
width: auto !important;
|
|
447
|
-
min-width: auto !important;
|
|
448
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.row>.col2-xl {
|
|
452
|
-
width: auto !important;
|
|
453
|
-
min-width: auto !important;
|
|
454
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.row>.col3-xl {
|
|
458
|
-
width: auto !important;
|
|
459
|
-
min-width: auto !important;
|
|
460
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
.row>.col4-xl {
|
|
464
|
-
width: auto !important;
|
|
465
|
-
min-width: auto !important;
|
|
466
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.row>.col6-xl {
|
|
470
|
-
width: auto !important;
|
|
471
|
-
min-width: auto !important;
|
|
472
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
.row>.col8-xl {
|
|
476
|
-
width: auto !important;
|
|
477
|
-
min-width: auto !important;
|
|
478
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.row>.col10-xl {
|
|
482
|
-
width: auto !important;
|
|
483
|
-
min-width: auto !important;
|
|
484
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
.row>.col12-xl {
|
|
488
|
-
width: auto !important;
|
|
489
|
-
min-width: auto !important;
|
|
490
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.row>.col16-xl {
|
|
494
|
-
width: auto !important;
|
|
495
|
-
min-width: auto !important;
|
|
496
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.row>.col18-xl {
|
|
500
|
-
width: auto !important;
|
|
501
|
-
min-width: auto !important;
|
|
502
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.row>.col20-xl {
|
|
506
|
-
width: auto !important;
|
|
507
|
-
min-width: auto !important;
|
|
508
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
.row>.col24-xl {
|
|
512
|
-
width: auto !important;
|
|
513
|
-
min-width: auto !important;
|
|
514
|
-
flex: 0 100% !important;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
/* more config resposive */
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
/* Extra large devices (large laptops and desktops, 1600px and up) XX-large (xxl) */
|
|
521
|
-
@media only screen and (min-width: 1600px) {
|
|
522
|
-
:root {
|
|
523
|
-
font-size: 10px !important;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.row>.col0-xxl {
|
|
527
|
-
display: none !important;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
.row>.col1-xxl {
|
|
531
|
-
width: auto !important;
|
|
532
|
-
min-width: auto !important;
|
|
533
|
-
flex: 0 calc((100% * 1 / 24) - var(--gutter) * 23 / 24) !important;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.row>.col2-xxl {
|
|
537
|
-
width: auto !important;
|
|
538
|
-
min-width: auto !important;
|
|
539
|
-
flex: 0 calc((100% * 2 / 24) - var(--gutter) * 11 / 12) !important;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.row>.col3-xxl {
|
|
543
|
-
width: auto !important;
|
|
544
|
-
min-width: auto !important;
|
|
545
|
-
flex: 0 calc((100% * 3 / 24) - var(--gutter) * 7 / 8) !important;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.row>.col4-xxl {
|
|
549
|
-
width: auto !important;
|
|
550
|
-
min-width: auto !important;
|
|
551
|
-
flex: 0 calc((100% * 4 / 24) - var(--gutter) * 5 / 6) !important;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.row>.col6-xxl {
|
|
555
|
-
width: auto !important;
|
|
556
|
-
min-width: auto !important;
|
|
557
|
-
flex: 0 calc((100% * 6 / 24) - var(--gutter) * 3 / 4) !important;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.row>.col8-xxl {
|
|
561
|
-
width: auto !important;
|
|
562
|
-
min-width: auto !important;
|
|
563
|
-
flex: 0 calc((100% * 8 / 24) - var(--gutter) * 2 / 3) !important;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.row>.col10-xxl {
|
|
567
|
-
width: auto !important;
|
|
568
|
-
min-width: auto !important;
|
|
569
|
-
flex: 0 calc((100% * 10 / 24) - var(--gutter) * 5 / 6) !important;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
.row>.col12-xxl {
|
|
573
|
-
width: auto !important;
|
|
574
|
-
min-width: auto !important;
|
|
575
|
-
flex: 0 calc((100% * 12 / 24) - var(--gutter) / 2) !important;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.row>.col16-xxl {
|
|
579
|
-
width: auto !important;
|
|
580
|
-
min-width: auto !important;
|
|
581
|
-
flex: 0 calc((100% * 16 / 24) - var(--gutter) * 2 / 3) !important;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.row>.col18-xxl {
|
|
585
|
-
width: auto !important;
|
|
586
|
-
min-width: auto !important;
|
|
587
|
-
flex: 0 calc((100% * 18 / 24) - var(--gutter) * 3 / 4) !important;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
.row>.col20-xxl {
|
|
591
|
-
width: auto !important;
|
|
592
|
-
min-width: auto !important;
|
|
593
|
-
flex: 0 calc((100% * 20 / 24) - var(--gutter) * 5 / 6) !important;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
.row>.col24-xxl {
|
|
597
|
-
width: auto !important;
|
|
598
|
-
min-width: auto !important;
|
|
599
|
-
flex: 0 100% !important;
|
|
600
|
-
}
|
|
601
|
-
}
|