test-bentoweb-ui 1.0.24 → 1.0.25
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/bentoweb-ui.css +1 -5
- package/dist/bentoweb-ui.es.js +4944 -8199
- package/dist/bentoweb-ui.umd.js +4 -8
- package/package.json +6 -3
- package/src/assets/styles/_bentowebicon.css +753 -0
- package/src/assets/styles/_breadcrumb.scss +22 -0
- package/src/assets/styles/_btwstyles.scss +102 -0
- package/src/assets/styles/_buttons.scss +99 -0
- package/src/assets/styles/_card.scss +3 -0
- package/src/assets/styles/_forms.scss +57 -0
- package/src/assets/styles/_mixins.scss +103 -0
- package/src/assets/styles/_modal.scss +55 -0
- package/src/assets/styles/_pagination.scss +40 -0
- package/src/assets/styles/_sidebar.scss +25 -0
- package/src/assets/styles/_tables.scss +20 -0
- package/src/assets/styles/_tabs.scss +24 -0
- package/src/assets/styles/_toggleswitch.scss +89 -0
- package/src/assets/styles/_variables.scss +176 -0
- package/src/assets/styles/index.scss +3 -0
- package/src/assets/styles/main.scss +13 -0
@@ -0,0 +1,176 @@
|
|
1
|
+
@import '_mixins.scss';
|
2
|
+
|
3
|
+
/*===================
|
4
|
+
1. Font
|
5
|
+
IBM Plex Sans Thai
|
6
|
+
=====================*/
|
7
|
+
@at-root {
|
8
|
+
@font-face {
|
9
|
+
font-family: 'IBM_Plex_Sans_Thai';
|
10
|
+
src: url('../fonts/IBMPlexSansThai-Regular.woff2') format('woff2'),
|
11
|
+
url('../fonts/IBMPlexSansThai-Regular.woff') format('woff');
|
12
|
+
font-weight: normal;
|
13
|
+
font-style: normal;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
@at-root {
|
17
|
+
@font-face {
|
18
|
+
font-family: 'IBM_Plex_Sans_Thai';
|
19
|
+
src: url('../fonts/IBMPlexSansThai-Bold.woff2') format('woff2'),
|
20
|
+
url('../fonts/IBMPlexSansThai-Bold.woff') format('woff');
|
21
|
+
font-weight: 600;
|
22
|
+
font-style: normal;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
@at-root {
|
26
|
+
@font-face {
|
27
|
+
font-family: 'IBM_Plex_Sans_Thai';
|
28
|
+
src: url('../fonts/IBMPlexSansThai-SemiBold.woff2') format('woff2'),
|
29
|
+
url('../fonts/IBMPlexSansThai-SemiBold.woff') format('woff');
|
30
|
+
font-weight: 700;
|
31
|
+
font-style: normal;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
/*==================
|
37
|
+
Variable
|
38
|
+
====================*/
|
39
|
+
/*=== Fonts ===*/
|
40
|
+
$font-primary: 'IBM_Plex_Sans_Thai',"tahoma","Helvetica Neue",Helvetica,Arial,sans-serif;
|
41
|
+
$font-tahoma:"Tahoma","Helvetica Neue",Helvetica,Arial,sans-serif;
|
42
|
+
|
43
|
+
/*=== Colors ===*/
|
44
|
+
$text-dark:#1E1E1E;
|
45
|
+
$text-primary:#F00051;
|
46
|
+
$text-secondary:#F5F5F6;
|
47
|
+
$text-muted:#636363;
|
48
|
+
$text-danger:#FF2A00;
|
49
|
+
$text-light: #F7F7F8;
|
50
|
+
$text-disable:#CCCCCC;
|
51
|
+
$text-link:#0077FF;
|
52
|
+
$text-success:#09C405;
|
53
|
+
$text-warning:#FF9409;
|
54
|
+
|
55
|
+
$blue-100:#0077FF;
|
56
|
+
|
57
|
+
$gray-200:#939393;
|
58
|
+
$gray-300:#BFBFBF;
|
59
|
+
|
60
|
+
$bg-100:#EEEEEE;
|
61
|
+
|
62
|
+
$border-color:#EEEEEE;
|
63
|
+
$line-gray-200:#DBDBDB;
|
64
|
+
|
65
|
+
|
66
|
+
$bg-dim-primary:#FFECF2;
|
67
|
+
$bg-dim-success:#EAFBEA;
|
68
|
+
$bg-dim-danger:#FFEEEB;
|
69
|
+
$bg-disable:#E3E3E3;
|
70
|
+
$bg-warning-subtle:#FFF2E1;
|
71
|
+
|
72
|
+
/*btw style*/
|
73
|
+
$body-bg:#EEE;
|
74
|
+
$body-font:$font-primary;
|
75
|
+
$body-color:$text-dark;
|
76
|
+
|
77
|
+
/*Modaal*/
|
78
|
+
$modal-lg: 1140px !default;
|
79
|
+
$modal-md: 660px !default;
|
80
|
+
$modal-sm: 300px !default;
|
81
|
+
|
82
|
+
/*Tabs*/
|
83
|
+
$nav-pills-border-color:$line-gray-200;
|
84
|
+
$nav-pills-color: $text-dark;
|
85
|
+
|
86
|
+
$nav-tabs-link-active-color:$text-primary;
|
87
|
+
$nav-tabs-link-active-bg:$bg-dim-primary;
|
88
|
+
$nav-tabs-link-active-border-color:$text-primary;
|
89
|
+
|
90
|
+
/*breadcrumb*/
|
91
|
+
$breadcrumb-color:$gray-200;
|
92
|
+
$breadcrumb-bg: white;
|
93
|
+
$breadcrumb-active-color: $text-dark;
|
94
|
+
|
95
|
+
/*pagination*/
|
96
|
+
$pagination-bg: $text-light;
|
97
|
+
$pagination-color: $text-dark;
|
98
|
+
|
99
|
+
$pagination-active-bg:$text-primary;
|
100
|
+
$pagination-active-color:white;
|
101
|
+
|
102
|
+
$pagination-disabled-bg: $text-light;
|
103
|
+
$pagination-disabled-color: $text-disable;
|
104
|
+
|
105
|
+
/*sidebar*/
|
106
|
+
$sidebar-heading-color:$gray-300;
|
107
|
+
$sidebar-color:$text-dark;
|
108
|
+
|
109
|
+
$sidebar-active-bg:$bg-dim-primary;
|
110
|
+
$sidebar-active-color:$text-primary;
|
111
|
+
|
112
|
+
/*table*/
|
113
|
+
$table-border-color:$border-color!important;
|
114
|
+
$table-th-color:$gray-200;
|
115
|
+
|
116
|
+
/*toggle switch*/
|
117
|
+
$toggle-bg-color:$text-light;
|
118
|
+
$toggle-label-text: $text-dark;
|
119
|
+
$toggle-active-bg:$bg-dim-primary;
|
120
|
+
$toggle-active-text:$text-primary;
|
121
|
+
$toggle-active-border:$text-primary;
|
122
|
+
|
123
|
+
/*Form*/
|
124
|
+
$form-text-font-weight:600;
|
125
|
+
$input-placeholder-color: $gray-200;
|
126
|
+
$input-border-color:$border-color;
|
127
|
+
|
128
|
+
/*Checkbox*/
|
129
|
+
$form-check-input-checked-bg-color:$text-primary;
|
130
|
+
$form-check-input-checked-border-color:$text-primary;
|
131
|
+
$form-check-input-checked-color: $text-primary;
|
132
|
+
|
133
|
+
$form-check-input-radio-bg-color:$text-dark;
|
134
|
+
$form-check-input-radio-border-color:$text-dark;
|
135
|
+
$form-check-input-radio-color:$text-dark;
|
136
|
+
|
137
|
+
/*vue3datepicke : Light mode configuration**/
|
138
|
+
$input-group-bg-color:$border-color!important;
|
139
|
+
$input-group-icon-color:$gray-200;
|
140
|
+
|
141
|
+
/*text*/
|
142
|
+
.text-primary{color: $text-primary!important;}
|
143
|
+
.text-danger{color: $text-danger!important;}
|
144
|
+
.text-muted{color: $gray-200!important;}
|
145
|
+
.text-gray-300{color: $gray-300;}
|
146
|
+
|
147
|
+
.size14{font-size: rem(14)!important;}
|
148
|
+
.size16{font-size: rem(16)!important;}
|
149
|
+
.size18{font-size: rem(18)!important;}
|
150
|
+
.size20{font-size: rem(20)!important;}
|
151
|
+
.size24{font-size: rem(24);}
|
152
|
+
.size25{font-size: rem(25);}
|
153
|
+
.size30{font-size: rem(30)!important;}
|
154
|
+
.size35{font-size: rem(35);}
|
155
|
+
.size40{font-size: rem(40);}
|
156
|
+
.size50{font-size: rem(50);}
|
157
|
+
|
158
|
+
.fw-bold{font-weight: 600!important;}
|
159
|
+
.fw-bolder{font-weight: 700!important;}
|
160
|
+
|
161
|
+
/*Padding*/
|
162
|
+
.py-10{padding-top: rem(10)!important; padding-bottom: rem(10)!important;}
|
163
|
+
|
164
|
+
.bg-primary{background-color: $bg-disable!important;}
|
165
|
+
.bg-warning-subtle{background-color: $bg-warning-subtle;}
|
166
|
+
.bg-100{background-color: $bg-100;}
|
167
|
+
|
168
|
+
.border-top{border-color: $border-color!important;}
|
169
|
+
.border-light{border-color: $border-color!important;}
|
170
|
+
|
171
|
+
.border-warning{border-color:$text-warning;}
|
172
|
+
|
173
|
+
.topic-normal{font-size: rem(25); font-weight: 700; margin-bottom: 0;}
|
174
|
+
|
175
|
+
/**/
|
176
|
+
.rounded-10{border-radius: rem(10);}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
@import '_bentowebicon.css';
|
2
|
+
@import '_variables';
|
3
|
+
@import '_buttons';
|
4
|
+
@import '_tabs';
|
5
|
+
@import '_card';
|
6
|
+
@import '_sidebar';
|
7
|
+
@import '_pagination';
|
8
|
+
@import '_toggleswitch';
|
9
|
+
@import '_breadcrumb';
|
10
|
+
@import '_modal';
|
11
|
+
@import '_tables';
|
12
|
+
@import '_forms';
|
13
|
+
@import '_btwstyles';
|