7fa943eb
梁灏
init
|
1
2
|
// Prefix
@css-prefix : ivu-;
|
e1596b7e
梁灏
add Button UI
|
3
|
@css-prefix-iconfont : ivu-icon;
|
7fa943eb
梁灏
init
|
4
|
// Color
|
d2203972
梁灏
add gutter to Row...
|
5
|
@primary-color : #3399ff;
|
7fa943eb
梁灏
init
|
6
|
@info-color : #2db7f5;
|
d2203972
梁灏
add gutter to Row...
|
7
8
|
@success-color : #00cc66;
@warning-color : #ff9900;
|
7fa943eb
梁灏
init
|
9
|
@error-color : #ff5500;
|
d2203972
梁灏
add gutter to Row...
|
10
|
@link-color : #3399ff;
|
7fa943eb
梁灏
init
|
11
12
|
@link-hover-color : tint(@link-color, 20%);
@link-active-color : shade(@link-color, 5%);
|
e355dd49
梁灏
add Select Component
|
13
|
@selected-color : fade(@primary-color, 90%);
|
dce3e753
梁灏
add Tooltip compo...
|
14
|
@tooltip-color : #fff;
|
7fa943eb
梁灏
init
|
15
16
17
|
// Base
@body-background : #fff;
|
7fa943eb
梁灏
init
|
18
19
|
@font-family : "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
@code-family : Consolas,Menlo,Courier,monospace;
|
d2203972
梁灏
add gutter to Row...
|
20
|
@text-color : #657180;
|
7fa943eb
梁灏
init
|
21
|
@font-size-base : 14px;
|
dce3e753
梁灏
add Tooltip compo...
|
22
|
@font-size-small : 12px;
|
7fa943eb
梁灏
init
|
23
24
25
|
@line-height-base : 1.5;
@line-height-computed : floor((@font-size-base * @line-height-base));
@border-radius-base : 6px;
|
15bae144
梁灏
add Card component
|
26
|
@border-radius-small : 4px;
|
e1596b7e
梁灏
add Button UI
|
27
|
@cursor-disabled : not-allowed;
|
15bae144
梁灏
add Card component
|
28
29
|
// Border color
|
d2203972
梁灏
add gutter to Row...
|
30
31
|
@border-color-base : #d7dde4; // outside
@border-color-split : #e3e8ee; // inside
|
15bae144
梁灏
add Card component
|
32
33
|
// Background color
|
e355dd49
梁灏
add Select Component
|
34
35
|
@background-color-base : #f7f7f7; // base
@background-color-select-hover: @input-disabled-bg;
|
dce3e753
梁灏
add Tooltip compo...
|
36
|
@tooltip-bg : #373737;
|
15bae144
梁灏
add Card component
|
37
38
39
40
41
42
43
44
45
|
// Shadow
@shadow-color : rgba(100, 100, 100, .2);
@shadow-base : @shadow-down;
@shadow-card : 0 1px 1px 0 rgba(0,0,0,.1);
@shadow-up : 0 -1px 6px @shadow-color;
@shadow-down : 0 1px 6px @shadow-color;
@shadow-left : -1px 0 6px @shadow-color;
@shadow-right : 1px 0 6px @shadow-color;
|
7fa943eb
梁灏
init
|
46
|
|
e1596b7e
梁灏
add Button UI
|
47
48
49
|
// Button
@btn-font-weight : 400;
@btn-padding-base : 4px 15px;
|
698e3b61
梁灏
iButton add some ...
|
50
51
|
@btn-padding-large : 6px 15px 7px 15px;
@btn-padding-small : 2px 7px;
|
e1596b7e
梁灏
add Button UI
|
52
53
54
55
56
57
|
@btn-font-size : 12px;
@btn-font-size-large : 14px;
@btn-border-radius : 4px;
@btn-border-radius-small: 3px;
@btn-group-border : shade(@primary-color, 5%);
|
d2203972
梁灏
add gutter to Row...
|
58
|
@btn-disable-color : #c3cbd6;
|
e1596b7e
梁灏
add Button UI
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
@btn-disable-bg : @background-color-base;
@btn-disable-border : @border-color-base;
@btn-default-color : @text-color;
@btn-default-bg : @background-color-base;
@btn-default-border : @border-color-base;
@btn-primary-color : #fff;
@btn-primary-bg : @primary-color;
@btn-ghost-color : @text-color;
@btn-ghost-bg : transparent;
@btn-ghost-border : @border-color-base;
@btn-circle-size : 28px;
@btn-circle-size-large : 32px;
@btn-circle-size-small : 22px;
|
7fa943eb
梁灏
init
|
77
78
79
80
|
// Layout and Grid
@grid-columns : 24;
@grid-gutter-width : 0;
|
9d69bab6
梁灏
add Alert component
|
81
82
83
|
// Legend
@legend-color : #999;
|
95436eeb
梁灏
add InputNumber UI
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
// Input
@input-height-base : 28px;
@input-height-large : 32px;
@input-height-small : 22px;
@input-padding-horizontal : 7px;
@input-padding-vertical-base : 4px;
@input-padding-vertical-small: 1px;
@input-padding-vertical-large: 6px;
@input-placeholder-color : #ccc;
@input-color : @text-color;
@input-border-color : @border-color-base;
@input-bg : #fff;
@input-hover-border-color : @primary-color;
@input-focus-border-color : @primary-color;
@input-disabled-bg : #f3f3f3;
|
4ec205b6
梁灏
add Tag UI
|
103
104
105
|
// Tag
@tag-font-size : 12px;
|
7fa943eb
梁灏
init
|
106
|
// Z-index
|
be966e9f
梁灏
add Modal component
|
107
|
@zindex-spin : 8;
|
7fa943eb
梁灏
init
|
108
109
|
@zindex-affix : 10;
@zindex-back-top : 10;
|
e355dd49
梁灏
add Select Component
|
110
|
@zindex-select : 900;
|
be966e9f
梁灏
add Modal component
|
111
|
@zindex-modal : 1000;
|
7c15ac9e
梁灏
add Message compo...
|
112
|
@zindex-message : 1010;
|
40f8606f
梁灏
add Notice component
|
113
|
@zindex-notification : 1010;
|
dce3e753
梁灏
add Tooltip compo...
|
114
|
@zindex-tooltip : 1060;
|
9dde24b6
梁灏
add LoadingBar co...
|
115
|
@zindex-loading-bar : 2000;
|
7fa943eb
梁灏
init
|
116
117
|
// Animation
|
7c15ac9e
梁灏
add Message compo...
|
118
|
@animation-time : .3s;
|
7fa943eb
梁灏
init
|
119
|
@transition-time : .2s;
|
7c15ac9e
梁灏
add Message compo...
|
120
|
@ease-in-out : ease-in-out;
|