evui 3.3.36 → 3.3.39
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/LICENSE +21 -21
- package/README.md +40 -40
- package/dist/evui.common.js +1907 -1832
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +1907 -1832
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/dist/img/{EVUI.7f3588fb.svg → EVUI.b82ee81a.svg} +292 -292
- package/dist/img/{icon_mysql.7ea26d5d.svg → icon_mysql.1085fdc9.svg} +78 -78
- package/dist/img/{icon_oracle.9009b108.svg → icon_oracle.0572d3ee.svg} +13 -13
- package/dist/img/{icon_postgresql.f8fffba9.svg → icon_postgresql.ee12bde8.svg} +58 -58
- package/package.json +61 -61
- package/src/common/emitter.js +20 -20
- package/src/common/utils.debounce.js +223 -223
- package/src/common/utils.js +134 -134
- package/src/common/utils.table.js +78 -78
- package/src/common/utils.throttle.js +83 -83
- package/src/common/utils.tree.js +18 -18
- package/src/components/button/Button.vue +198 -198
- package/src/components/button/index.js +7 -7
- package/src/components/buttonGroup/ButtonGroup.vue +11 -11
- package/src/components/buttonGroup/index.js +7 -7
- package/src/components/calendar/Calendar.vue +661 -661
- package/src/components/calendar/index.js +7 -7
- package/src/components/calendar/uses.js +1272 -1272
- package/src/components/chart/Chart.vue +189 -192
- package/src/components/chart/chart.core.js +870 -870
- package/src/components/chart/element/element.bar.js +524 -524
- package/src/components/chart/element/element.bar.time.js +156 -156
- package/src/components/chart/element/element.heatmap.js +533 -533
- package/src/components/chart/element/element.line.js +339 -339
- package/src/components/chart/element/element.pie.js +197 -197
- package/src/components/chart/element/element.scatter.js +184 -184
- package/src/components/chart/element/element.tip.js +550 -542
- package/src/components/chart/helpers/helpers.canvas.js +265 -265
- package/src/components/chart/helpers/helpers.constant.js +206 -206
- package/src/components/chart/helpers/helpers.util.js +346 -338
- package/src/components/chart/index.js +9 -9
- package/src/components/chart/model/index.js +4 -4
- package/src/components/chart/model/model.series.js +93 -93
- package/src/components/chart/model/model.store.js +977 -967
- package/src/components/chart/plugins/plugins.interaction.js +769 -769
- package/src/components/chart/plugins/plugins.legend.gradient.js +602 -602
- package/src/components/chart/plugins/plugins.legend.js +1155 -1151
- package/src/components/chart/plugins/plugins.pie.js +254 -254
- package/src/components/chart/plugins/plugins.title.js +56 -56
- package/src/components/chart/plugins/plugins.tooltip.js +692 -692
- package/src/components/chart/scale/scale.js +848 -848
- package/src/components/chart/scale/scale.linear.js +38 -38
- package/src/components/chart/scale/scale.logarithmic.js +128 -128
- package/src/components/chart/scale/scale.step.js +336 -336
- package/src/components/chart/scale/scale.time.category.js +277 -277
- package/src/components/chart/scale/scale.time.js +48 -48
- package/src/components/chart/style/chart.scss +312 -312
- package/src/components/chart/uses.js +264 -252
- package/src/components/checkbox/Checkbox.vue +200 -200
- package/src/components/checkbox/index.js +7 -7
- package/src/components/checkboxGroup/CheckboxGroup.vue +44 -44
- package/src/components/checkboxGroup/index.js +7 -7
- package/src/components/contextMenu/ContextMenu.vue +80 -80
- package/src/components/contextMenu/MenuList.vue +149 -149
- package/src/components/contextMenu/index.js +7 -7
- package/src/components/contextMenu/uses.js +203 -203
- package/src/components/datePicker/DatePicker.vue +437 -437
- package/src/components/datePicker/index.js +7 -7
- package/src/components/datePicker/uses.js +419 -419
- package/src/components/grid/Grid.vue +827 -827
- package/src/components/grid/grid.filter.window.vue +493 -493
- package/src/components/grid/grid.pagination.vue +75 -75
- package/src/components/grid/grid.summary.vue +265 -265
- package/src/components/grid/grid.toolbar.vue +26 -26
- package/src/components/grid/index.js +11 -11
- package/src/components/grid/style/grid.scss +263 -263
- package/src/components/grid/uses.js +1002 -1007
- package/src/components/icon/Icon.vue +49 -49
- package/src/components/icon/index.js +8 -8
- package/src/components/inputNumber/InputNumber.vue +212 -212
- package/src/components/inputNumber/index.js +7 -7
- package/src/components/inputNumber/uses.js +217 -217
- package/src/components/loading/Loading.vue +125 -125
- package/src/components/loading/index.js +7 -7
- package/src/components/menu/Menu.vue +68 -68
- package/src/components/menu/MenuItem.vue +187 -187
- package/src/components/menu/index.js +7 -7
- package/src/components/message/Message.vue +223 -223
- package/src/components/message/index.js +31 -31
- package/src/components/messageBox/MessageBox.vue +358 -358
- package/src/components/messageBox/index.js +22 -22
- package/src/components/notification/Notification.vue +316 -316
- package/src/components/notification/index.js +49 -49
- package/src/components/pagination/Pagination.vue +271 -271
- package/src/components/pagination/index.js +7 -7
- package/src/components/pagination/pageButton.vue +30 -30
- package/src/components/progress/Progress.vue +139 -139
- package/src/components/progress/index.js +7 -7
- package/src/components/radio/Radio.vue +159 -159
- package/src/components/radio/index.js +7 -7
- package/src/components/radioGroup/RadioGroup.vue +41 -41
- package/src/components/radioGroup/index.js +7 -7
- package/src/components/scheduler/Scheduler.vue +149 -149
- package/src/components/scheduler/index.js +7 -7
- package/src/components/scheduler/uses.js +183 -183
- package/src/components/select/Select.vue +440 -440
- package/src/components/select/index.js +7 -7
- package/src/components/select/uses.js +270 -270
- package/src/components/slider/Slider.vue +505 -505
- package/src/components/slider/index.js +7 -7
- package/src/components/slider/uses.js +390 -390
- package/src/components/tabPanel/TabPanel.vue +74 -74
- package/src/components/tabPanel/index.js +7 -7
- package/src/components/tabs/Tabs.vue +517 -517
- package/src/components/tabs/index.js +7 -7
- package/src/components/textField/TextField.vue +375 -375
- package/src/components/textField/index.js +7 -7
- package/src/components/timePicker/TimePicker.vue +352 -352
- package/src/components/timePicker/index.js +7 -7
- package/src/components/toggle/Toggle.vue +115 -115
- package/src/components/toggle/index.js +7 -7
- package/src/components/tree/Tree.vue +313 -313
- package/src/components/tree/TreeNode.vue +293 -293
- package/src/components/tree/index.js +7 -7
- package/src/components/treeGrid/TreeGrid.vue +758 -758
- package/src/components/treeGrid/TreeGridNode.vue +275 -275
- package/src/components/treeGrid/index.js +9 -9
- package/src/components/treeGrid/style/treeGrid.scss +261 -261
- package/src/components/treeGrid/treeGrid.toolbar.vue +26 -26
- package/src/components/treeGrid/uses.js +867 -867
- package/src/components/window/Window.vue +329 -329
- package/src/components/window/index.js +7 -7
- package/src/components/window/uses.js +899 -899
- package/src/directives/clickoutside.js +90 -90
- package/src/main.js +116 -116
- package/src/style/components/input.scss +108 -108
- package/src/style/functions.scss +3 -3
- package/src/style/index.scss +6 -6
- package/src/style/lib/fonts/EVUI.svg +292 -292
- package/src/style/lib/icon.css +888 -888
- package/src/style/mixins.scss +94 -94
- package/src/style/themes.scss +67 -67
- package/src/style/variables.scss +22 -22
package/src/style/mixins.scss
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
@mixin evThemify($ev-themes: $ev-themes) {
|
|
2
|
-
@each $theme, $map in $ev-themes {
|
|
3
|
-
@if $theme == 'dark' {
|
|
4
|
-
.#{$theme} & {
|
|
5
|
-
$ev-theme-map: () !global;
|
|
6
|
-
|
|
7
|
-
@each $key, $submap in $map {
|
|
8
|
-
$value: map-get(map-get($ev-themes, $theme), '#{$key}');
|
|
9
|
-
$ev-theme-map: map-merge($ev-theme-map, ($key: $value)) !global;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
/* stylelint-disable */
|
|
13
|
-
@content;
|
|
14
|
-
$ev-theme-map: null !global;
|
|
15
|
-
/* stylelint-enable */
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@else {
|
|
20
|
-
$ev-theme-map: () !global;
|
|
21
|
-
|
|
22
|
-
@each $key, $submap in $map {
|
|
23
|
-
$value: map-get(map-get($ev-themes, $theme), '#{$key}');
|
|
24
|
-
$ev-theme-map: map-merge($ev-theme-map, ($key: $value)) !global;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/* stylelint-disable */
|
|
28
|
-
@content;
|
|
29
|
-
$ev-theme-map: null !global;
|
|
30
|
-
/* stylelint-enable */
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
@mixin state($state) {
|
|
35
|
-
@at-root {
|
|
36
|
-
&.#{$state} {
|
|
37
|
-
@content;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
@mixin prefix($property, $value, $vendors: webkit moz ms o, $default: true) {
|
|
42
|
-
@if $vendors {
|
|
43
|
-
@each $vendor in $vendors {
|
|
44
|
-
#{'-' + $vendor + '-' + $property}: #{$value};
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
@if $default {
|
|
48
|
-
#{$property}: #{$value};
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
@mixin shortening($display: inline-block, $width: 100%, $line: 1) {
|
|
52
|
-
max-width: $width;
|
|
53
|
-
overflow: hidden;
|
|
54
|
-
text-overflow: ellipsis;
|
|
55
|
-
|
|
56
|
-
@if $line == 1 {
|
|
57
|
-
display: $display;
|
|
58
|
-
white-space: nowrap;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@else {
|
|
62
|
-
display: -webkit-box;
|
|
63
|
-
height: auto;
|
|
64
|
-
text-align: left;
|
|
65
|
-
word-wrap: break-word;
|
|
66
|
-
white-space: normal;
|
|
67
|
-
-webkit-line-clamp: $line;
|
|
68
|
-
-webkit-box-orient: vertical;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
@mixin clearfix() {
|
|
72
|
-
&:after {
|
|
73
|
-
display: table;
|
|
74
|
-
clear: both;
|
|
75
|
-
content: '';
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
@mixin place-at-center() {
|
|
79
|
-
top: 50%;
|
|
80
|
-
left: 50%;
|
|
81
|
-
transform: translate(-50%, -50%);
|
|
82
|
-
}
|
|
83
|
-
@mixin font-hide() {
|
|
84
|
-
font-size: 0;
|
|
85
|
-
text-indent: -999px;
|
|
86
|
-
}
|
|
87
|
-
@mixin visible-hide() {
|
|
88
|
-
position: absolute;
|
|
89
|
-
width: 0;
|
|
90
|
-
height: 0;
|
|
91
|
-
visibility: hidden;
|
|
92
|
-
overflow: hidden;
|
|
93
|
-
z-index: -1;
|
|
94
|
-
}
|
|
1
|
+
@mixin evThemify($ev-themes: $ev-themes) {
|
|
2
|
+
@each $theme, $map in $ev-themes {
|
|
3
|
+
@if $theme == 'dark' {
|
|
4
|
+
.#{$theme} & {
|
|
5
|
+
$ev-theme-map: () !global;
|
|
6
|
+
|
|
7
|
+
@each $key, $submap in $map {
|
|
8
|
+
$value: map-get(map-get($ev-themes, $theme), '#{$key}');
|
|
9
|
+
$ev-theme-map: map-merge($ev-theme-map, ($key: $value)) !global;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/* stylelint-disable */
|
|
13
|
+
@content;
|
|
14
|
+
$ev-theme-map: null !global;
|
|
15
|
+
/* stylelint-enable */
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@else {
|
|
20
|
+
$ev-theme-map: () !global;
|
|
21
|
+
|
|
22
|
+
@each $key, $submap in $map {
|
|
23
|
+
$value: map-get(map-get($ev-themes, $theme), '#{$key}');
|
|
24
|
+
$ev-theme-map: map-merge($ev-theme-map, ($key: $value)) !global;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* stylelint-disable */
|
|
28
|
+
@content;
|
|
29
|
+
$ev-theme-map: null !global;
|
|
30
|
+
/* stylelint-enable */
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
@mixin state($state) {
|
|
35
|
+
@at-root {
|
|
36
|
+
&.#{$state} {
|
|
37
|
+
@content;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
@mixin prefix($property, $value, $vendors: webkit moz ms o, $default: true) {
|
|
42
|
+
@if $vendors {
|
|
43
|
+
@each $vendor in $vendors {
|
|
44
|
+
#{'-' + $vendor + '-' + $property}: #{$value};
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
@if $default {
|
|
48
|
+
#{$property}: #{$value};
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
@mixin shortening($display: inline-block, $width: 100%, $line: 1) {
|
|
52
|
+
max-width: $width;
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
text-overflow: ellipsis;
|
|
55
|
+
|
|
56
|
+
@if $line == 1 {
|
|
57
|
+
display: $display;
|
|
58
|
+
white-space: nowrap;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@else {
|
|
62
|
+
display: -webkit-box;
|
|
63
|
+
height: auto;
|
|
64
|
+
text-align: left;
|
|
65
|
+
word-wrap: break-word;
|
|
66
|
+
white-space: normal;
|
|
67
|
+
-webkit-line-clamp: $line;
|
|
68
|
+
-webkit-box-orient: vertical;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
@mixin clearfix() {
|
|
72
|
+
&:after {
|
|
73
|
+
display: table;
|
|
74
|
+
clear: both;
|
|
75
|
+
content: '';
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
@mixin place-at-center() {
|
|
79
|
+
top: 50%;
|
|
80
|
+
left: 50%;
|
|
81
|
+
transform: translate(-50%, -50%);
|
|
82
|
+
}
|
|
83
|
+
@mixin font-hide() {
|
|
84
|
+
font-size: 0;
|
|
85
|
+
text-indent: -999px;
|
|
86
|
+
}
|
|
87
|
+
@mixin visible-hide() {
|
|
88
|
+
position: absolute;
|
|
89
|
+
width: 0;
|
|
90
|
+
height: 0;
|
|
91
|
+
visibility: hidden;
|
|
92
|
+
overflow: hidden;
|
|
93
|
+
z-index: -1;
|
|
94
|
+
}
|
package/src/style/themes.scss
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
@import 'variables';
|
|
2
|
-
|
|
3
|
-
$ev-themes: (
|
|
4
|
-
light: (
|
|
5
|
-
/* primary color
|
|
6
|
-
------------------------- */
|
|
7
|
-
primary: #1A6AFE,
|
|
8
|
-
info: #5AC8FA,
|
|
9
|
-
success: #00CC47,
|
|
10
|
-
warning: #FF9500,
|
|
11
|
-
error: #FF3B30,
|
|
12
|
-
selected: #730EF4,
|
|
13
|
-
not-allow: #B01012,
|
|
14
|
-
disabled: #B2B2B2,
|
|
15
|
-
default: #666666,
|
|
16
|
-
|
|
17
|
-
/* common
|
|
18
|
-
-------------------------- */
|
|
19
|
-
font-base: $color-black,
|
|
20
|
-
border-base: #B2B2B2,
|
|
21
|
-
border-light: #E3E3E3,
|
|
22
|
-
background-base: $color-white,
|
|
23
|
-
background-lighten: rgba(#B2B2B2, 0.1),
|
|
24
|
-
|
|
25
|
-
/* components
|
|
26
|
-
-------------------------- */
|
|
27
|
-
slider-mark-background: #F8F8F8,
|
|
28
|
-
tooltip-background: $color-black,
|
|
29
|
-
|
|
30
|
-
/* grid
|
|
31
|
-
-------------------------- */
|
|
32
|
-
grid-header-border: #7F7F7F,
|
|
33
|
-
grid-bottom-border: #CFCFCF,
|
|
34
|
-
grid-row-selected: rgba(#DBF0F9, 0.6),
|
|
35
|
-
grid-cell-text: rgba(#191919, 0.8),
|
|
36
|
-
grid-row-stripe: rgba(#E5E5E5, 0.6),
|
|
37
|
-
grid-filter-add-background: #E5E5E5,
|
|
38
|
-
grid-filter-add-label: #4C4C4C,
|
|
39
|
-
grid-filter-add-split: #B2B2B2,
|
|
40
|
-
),
|
|
41
|
-
dark: (
|
|
42
|
-
/* primary color
|
|
43
|
-
------------------------- */
|
|
44
|
-
primary: #007AFF,
|
|
45
|
-
info: #64D2FF,
|
|
46
|
-
success: #32D74B,
|
|
47
|
-
warning: #FF9F0A,
|
|
48
|
-
error: #FF453A,
|
|
49
|
-
selected: #791BF2,
|
|
50
|
-
not-allow: #B01012,
|
|
51
|
-
disabled: #555555,
|
|
52
|
-
default: #444444,
|
|
53
|
-
|
|
54
|
-
/* common
|
|
55
|
-
-------------------------- */
|
|
56
|
-
font-base: $color-white,
|
|
57
|
-
border-base: #666666,
|
|
58
|
-
border-light: #333333,
|
|
59
|
-
background-base: $color-black,
|
|
60
|
-
background-lighten: rgba(#666666, 0.3),
|
|
61
|
-
|
|
62
|
-
/* components
|
|
63
|
-
-------------------------- */
|
|
64
|
-
slider-mark-background: #B2B2B2,
|
|
65
|
-
tooltip-background: #555555,
|
|
66
|
-
),
|
|
67
|
-
) !default;
|
|
1
|
+
@import 'variables';
|
|
2
|
+
|
|
3
|
+
$ev-themes: (
|
|
4
|
+
light: (
|
|
5
|
+
/* primary color
|
|
6
|
+
------------------------- */
|
|
7
|
+
primary: #1A6AFE,
|
|
8
|
+
info: #5AC8FA,
|
|
9
|
+
success: #00CC47,
|
|
10
|
+
warning: #FF9500,
|
|
11
|
+
error: #FF3B30,
|
|
12
|
+
selected: #730EF4,
|
|
13
|
+
not-allow: #B01012,
|
|
14
|
+
disabled: #B2B2B2,
|
|
15
|
+
default: #666666,
|
|
16
|
+
|
|
17
|
+
/* common
|
|
18
|
+
-------------------------- */
|
|
19
|
+
font-base: $color-black,
|
|
20
|
+
border-base: #B2B2B2,
|
|
21
|
+
border-light: #E3E3E3,
|
|
22
|
+
background-base: $color-white,
|
|
23
|
+
background-lighten: rgba(#B2B2B2, 0.1),
|
|
24
|
+
|
|
25
|
+
/* components
|
|
26
|
+
-------------------------- */
|
|
27
|
+
slider-mark-background: #F8F8F8,
|
|
28
|
+
tooltip-background: $color-black,
|
|
29
|
+
|
|
30
|
+
/* grid
|
|
31
|
+
-------------------------- */
|
|
32
|
+
grid-header-border: #7F7F7F,
|
|
33
|
+
grid-bottom-border: #CFCFCF,
|
|
34
|
+
grid-row-selected: rgba(#DBF0F9, 0.6),
|
|
35
|
+
grid-cell-text: rgba(#191919, 0.8),
|
|
36
|
+
grid-row-stripe: rgba(#E5E5E5, 0.6),
|
|
37
|
+
grid-filter-add-background: #E5E5E5,
|
|
38
|
+
grid-filter-add-label: #4C4C4C,
|
|
39
|
+
grid-filter-add-split: #B2B2B2,
|
|
40
|
+
),
|
|
41
|
+
dark: (
|
|
42
|
+
/* primary color
|
|
43
|
+
------------------------- */
|
|
44
|
+
primary: #007AFF,
|
|
45
|
+
info: #64D2FF,
|
|
46
|
+
success: #32D74B,
|
|
47
|
+
warning: #FF9F0A,
|
|
48
|
+
error: #FF453A,
|
|
49
|
+
selected: #791BF2,
|
|
50
|
+
not-allow: #B01012,
|
|
51
|
+
disabled: #555555,
|
|
52
|
+
default: #444444,
|
|
53
|
+
|
|
54
|
+
/* common
|
|
55
|
+
-------------------------- */
|
|
56
|
+
font-base: $color-white,
|
|
57
|
+
border-base: #666666,
|
|
58
|
+
border-light: #333333,
|
|
59
|
+
background-base: $color-black,
|
|
60
|
+
background-lighten: rgba(#666666, 0.3),
|
|
61
|
+
|
|
62
|
+
/* components
|
|
63
|
+
-------------------------- */
|
|
64
|
+
slider-mark-background: #B2B2B2,
|
|
65
|
+
tooltip-background: #555555,
|
|
66
|
+
),
|
|
67
|
+
) !default;
|
package/src/style/variables.scss
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
// Font
|
|
2
|
-
$font-size-base: 12px !default;
|
|
3
|
-
$font-size-small: 11px !default;
|
|
4
|
-
$font-size-medium: 14px !default;
|
|
5
|
-
$font-size-large: 16px !default;
|
|
6
|
-
|
|
7
|
-
$font-weight-base: 400 !default;
|
|
8
|
-
$font-family-base: inherit !default;
|
|
9
|
-
|
|
10
|
-
// Common Color
|
|
11
|
-
$color-white: #FFFFFF !default;
|
|
12
|
-
$color-black: #0D0D0D !default;
|
|
13
|
-
|
|
14
|
-
// animate level
|
|
15
|
-
$animate-base: 0.3s ease-in-out !default;
|
|
16
|
-
$animate-fast: 0.2s ease-in-out !default;
|
|
17
|
-
|
|
18
|
-
// layout
|
|
19
|
-
$default-radius: 4px;
|
|
20
|
-
$input-default-height: 35px;
|
|
21
|
-
$textarea-default-height: 100px;
|
|
22
|
-
$input-default-padding: 15px;
|
|
1
|
+
// Font
|
|
2
|
+
$font-size-base: 12px !default;
|
|
3
|
+
$font-size-small: 11px !default;
|
|
4
|
+
$font-size-medium: 14px !default;
|
|
5
|
+
$font-size-large: 16px !default;
|
|
6
|
+
|
|
7
|
+
$font-weight-base: 400 !default;
|
|
8
|
+
$font-family-base: inherit !default;
|
|
9
|
+
|
|
10
|
+
// Common Color
|
|
11
|
+
$color-white: #FFFFFF !default;
|
|
12
|
+
$color-black: #0D0D0D !default;
|
|
13
|
+
|
|
14
|
+
// animate level
|
|
15
|
+
$animate-base: 0.3s ease-in-out !default;
|
|
16
|
+
$animate-fast: 0.2s ease-in-out !default;
|
|
17
|
+
|
|
18
|
+
// layout
|
|
19
|
+
$default-radius: 4px;
|
|
20
|
+
$input-default-height: 35px;
|
|
21
|
+
$textarea-default-height: 100px;
|
|
22
|
+
$input-default-padding: 15px;
|