@kordar/easyui-tpl 2.0.6 → 2.0.8
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/index.umd.cjs.map +1 -1
- package/dist/public/en.json +164 -2
- package/dist/public/themes/modern-blue/accordion.css +89 -0
- package/dist/public/themes/modern-blue/calendar.css +213 -0
- package/dist/public/themes/modern-blue/checkbox.css +31 -0
- package/dist/public/themes/modern-blue/combo.css +35 -0
- package/dist/public/themes/modern-blue/combobox.css +40 -0
- package/dist/public/themes/modern-blue/datagrid.css +305 -0
- package/dist/public/themes/modern-blue/datalist.css +95 -0
- package/dist/public/themes/modern-blue/datebox.css +36 -0
- package/dist/public/themes/modern-blue/dialog.css +47 -0
- package/dist/public/themes/modern-blue/drawer.css +15 -0
- package/dist/public/themes/modern-blue/easyui.css +4750 -0
- package/dist/public/themes/modern-blue/filebox.css +20 -0
- package/dist/public/themes/modern-blue/flex.css +52 -0
- package/dist/public/themes/modern-blue/images/accordion_arrows.png +0 -0
- package/dist/public/themes/modern-blue/images/blank.gif +0 -0
- package/dist/public/themes/modern-blue/images/calendar_arrows.png +0 -0
- package/dist/public/themes/modern-blue/images/combo_arrow.png +0 -0
- package/dist/public/themes/modern-blue/images/datagrid_icons.png +0 -0
- package/dist/public/themes/modern-blue/images/datebox_arrow.png +0 -0
- package/dist/public/themes/modern-blue/images/layout_arrows.png +0 -0
- package/dist/public/themes/modern-blue/images/linkbutton_bg.png +0 -0
- package/dist/public/themes/modern-blue/images/loading.gif +0 -0
- package/dist/public/themes/modern-blue/images/menu_arrows.png +0 -0
- package/dist/public/themes/modern-blue/images/messager_icons.png +0 -0
- package/dist/public/themes/modern-blue/images/messager_icons16.png +0 -0
- package/dist/public/themes/modern-blue/images/pagination_icons.png +0 -0
- package/dist/public/themes/modern-blue/images/panel_tools.png +0 -0
- package/dist/public/themes/modern-blue/images/passwordbox_close.png +0 -0
- package/dist/public/themes/modern-blue/images/passwordbox_open.png +0 -0
- package/dist/public/themes/modern-blue/images/searchbox_button.png +0 -0
- package/dist/public/themes/modern-blue/images/slider_handle.png +0 -0
- package/dist/public/themes/modern-blue/images/spinner_arrows.png +0 -0
- package/dist/public/themes/modern-blue/images/tabs_icons.png +0 -0
- package/dist/public/themes/modern-blue/images/tagbox_icons.png +0 -0
- package/dist/public/themes/modern-blue/images/tree_icons.png +0 -0
- package/dist/public/themes/modern-blue/images/validatebox_warning.png +0 -0
- package/dist/public/themes/modern-blue/layout.css +150 -0
- package/dist/public/themes/modern-blue/linkbutton.css +203 -0
- package/dist/public/themes/modern-blue/menu.css +119 -0
- package/dist/public/themes/modern-blue/menubutton.css +94 -0
- package/dist/public/themes/modern-blue/messager.css +74 -0
- package/dist/public/themes/modern-blue/numberbox.css +0 -0
- package/dist/public/themes/modern-blue/pagination.css +77 -0
- package/dist/public/themes/modern-blue/panel.css +276 -0
- package/dist/public/themes/modern-blue/passwordbox.css +6 -0
- package/dist/public/themes/modern-blue/progressbar.css +33 -0
- package/dist/public/themes/modern-blue/propertygrid.css +27 -0
- package/dist/public/themes/modern-blue/radiobutton.css +25 -0
- package/dist/public/themes/modern-blue/searchbox.css +61 -0
- package/dist/public/themes/modern-blue/sidemenu.css +78 -0
- package/dist/public/themes/modern-blue/slider.css +101 -0
- package/dist/public/themes/modern-blue/spinner.css +114 -0
- package/dist/public/themes/modern-blue/splitbutton.css +12 -0
- package/dist/public/themes/modern-blue/switchbutton.css +83 -0
- package/dist/public/themes/modern-blue/tabs.css +415 -0
- package/dist/public/themes/modern-blue/tagbox.css +44 -0
- package/dist/public/themes/modern-blue/textbox.css +173 -0
- package/dist/public/themes/modern-blue/timepicker.css +93 -0
- package/dist/public/themes/modern-blue/tooltip.css +101 -0
- package/dist/public/themes/modern-blue/tree.css +168 -0
- package/dist/public/themes/modern-blue/validatebox.css +13 -0
- package/dist/public/themes/modern-blue/window.css +188 -0
- package/dist/public/zh_CN.json +130 -250
- package/dist/types/components/Card.d.ts +29 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/views/home/index.d.ts +2 -3
- package/dist/types/views/login/header.d.ts +9 -0
- package/dist/types/views/page/404.d.ts +2 -3
- package/package.json +6 -5
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.filebox .textbox-value {
|
|
2
|
+
vertical-align: top;
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0;
|
|
5
|
+
left: -5000px;
|
|
6
|
+
}
|
|
7
|
+
.filebox-label {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
position: absolute;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
left: 0;
|
|
14
|
+
top: 0;
|
|
15
|
+
z-index: 10;
|
|
16
|
+
background: url('images/blank.gif') no-repeat;
|
|
17
|
+
}
|
|
18
|
+
.l-btn-disabled .filebox-label {
|
|
19
|
+
cursor: default;
|
|
20
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
.f-row {
|
|
2
|
+
display: -webkit-box;
|
|
3
|
+
display: -webkit-flex;
|
|
4
|
+
display: -moz-flex;
|
|
5
|
+
display: -ms-flexbox;
|
|
6
|
+
display: flex;
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
.f-column {
|
|
10
|
+
display: -webkit-box;
|
|
11
|
+
display: -webkit-flex;
|
|
12
|
+
display: -moz-flex;
|
|
13
|
+
display: -ms-flexbox;
|
|
14
|
+
display: flex;
|
|
15
|
+
-webkit-box-direction: normal;
|
|
16
|
+
-webkit-box-orient: vertical;
|
|
17
|
+
-webkit-flex-direction: column;
|
|
18
|
+
-moz-flex-direction: column;
|
|
19
|
+
-ms-flex-direction: column;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
position: relative;
|
|
22
|
+
}
|
|
23
|
+
.f-full {
|
|
24
|
+
-webkit-box-flex: 1 1 auto;
|
|
25
|
+
-ms-flex: 1 1 auto;
|
|
26
|
+
flex: 1 1 auto;
|
|
27
|
+
}
|
|
28
|
+
.f-noshrink {
|
|
29
|
+
-webkit-flex-shrink: 0;
|
|
30
|
+
-moz-flex-shrink: 0;
|
|
31
|
+
-ms-flex-negative: 0;
|
|
32
|
+
flex-shrink: 0;
|
|
33
|
+
}
|
|
34
|
+
.f-content-center {
|
|
35
|
+
-webkit-box-pack: center;
|
|
36
|
+
-ms-flex-pack: center;
|
|
37
|
+
-webkit-justify-content: center;
|
|
38
|
+
-moz-justify-content: center;
|
|
39
|
+
justify-content: center;
|
|
40
|
+
-webkit-box-align: center;
|
|
41
|
+
-ms-flex-align: center;
|
|
42
|
+
-webkit-align-items: center;
|
|
43
|
+
-moz-align-items: center;
|
|
44
|
+
align-items: center;
|
|
45
|
+
}
|
|
46
|
+
.f-vcenter {
|
|
47
|
+
-webkit-box-align: center;
|
|
48
|
+
-ms-flex-align: center;
|
|
49
|
+
-webkit-align-items: center;
|
|
50
|
+
-moz-align-items: center;
|
|
51
|
+
align-items: center;
|
|
52
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
.layout {
|
|
2
|
+
position: relative;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
margin: 0;
|
|
5
|
+
padding: 0;
|
|
6
|
+
z-index: 0;
|
|
7
|
+
}
|
|
8
|
+
.layout-panel {
|
|
9
|
+
position: absolute;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
}
|
|
12
|
+
.layout-body {
|
|
13
|
+
min-width: 1px;
|
|
14
|
+
min-height: 1px;
|
|
15
|
+
}
|
|
16
|
+
.layout-panel-east,
|
|
17
|
+
.layout-panel-west {
|
|
18
|
+
z-index: 2;
|
|
19
|
+
}
|
|
20
|
+
.layout-panel-north,
|
|
21
|
+
.layout-panel-south {
|
|
22
|
+
z-index: 3;
|
|
23
|
+
}
|
|
24
|
+
.layout-expand {
|
|
25
|
+
position: absolute;
|
|
26
|
+
padding: 0px;
|
|
27
|
+
font-size: 1px;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
z-index: 1;
|
|
30
|
+
}
|
|
31
|
+
.layout-expand .panel-header,
|
|
32
|
+
.layout-expand .panel-body {
|
|
33
|
+
background: transparent;
|
|
34
|
+
filter: none;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
}
|
|
37
|
+
.layout-expand .panel-header {
|
|
38
|
+
border-bottom-width: 0px;
|
|
39
|
+
}
|
|
40
|
+
.layout-expand .panel-body {
|
|
41
|
+
position: relative;
|
|
42
|
+
}
|
|
43
|
+
.layout-expand .panel-body .panel-icon {
|
|
44
|
+
margin-top: 0;
|
|
45
|
+
top: 0;
|
|
46
|
+
left: 50%;
|
|
47
|
+
margin-left: -8px;
|
|
48
|
+
}
|
|
49
|
+
.layout-expand-west .panel-header .panel-icon,
|
|
50
|
+
.layout-expand-east .panel-header .panel-icon {
|
|
51
|
+
display: none;
|
|
52
|
+
}
|
|
53
|
+
.layout-expand-title {
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 0;
|
|
56
|
+
left: 21px;
|
|
57
|
+
white-space: nowrap;
|
|
58
|
+
word-wrap: normal;
|
|
59
|
+
-webkit-transform: rotate(90deg);
|
|
60
|
+
-webkit-transform-origin: 0 0;
|
|
61
|
+
-moz-transform: rotate(90deg);
|
|
62
|
+
-moz-transform-origin: 0 0;
|
|
63
|
+
-o-transform: rotate(90deg);
|
|
64
|
+
-o-transform-origin: 0 0;
|
|
65
|
+
transform: rotate(90deg);
|
|
66
|
+
transform-origin: 0 0;
|
|
67
|
+
}
|
|
68
|
+
.layout-expand-title-up {
|
|
69
|
+
position: absolute;
|
|
70
|
+
top: 0;
|
|
71
|
+
left: 0;
|
|
72
|
+
text-align: right;
|
|
73
|
+
padding-left: 5px;
|
|
74
|
+
white-space: nowrap;
|
|
75
|
+
word-wrap: normal;
|
|
76
|
+
-webkit-transform: rotate(-90deg);
|
|
77
|
+
-webkit-transform-origin: 0 0;
|
|
78
|
+
-moz-transform: rotate(-90deg);
|
|
79
|
+
-moz-transform-origin: 0 0;
|
|
80
|
+
-o-transform: rotate(-90deg);
|
|
81
|
+
-o-transform-origin: 0 0;
|
|
82
|
+
transform: rotate(-90deg);
|
|
83
|
+
transform-origin: 0 0;
|
|
84
|
+
}
|
|
85
|
+
.layout-expand-with-icon {
|
|
86
|
+
top: 18px;
|
|
87
|
+
}
|
|
88
|
+
.layout-expand .panel-body-noheader .layout-expand-title,
|
|
89
|
+
.layout-expand .panel-body-noheader .panel-icon {
|
|
90
|
+
top: 5px;
|
|
91
|
+
}
|
|
92
|
+
.layout-expand .panel-body-noheader .layout-expand-with-icon {
|
|
93
|
+
top: 23px;
|
|
94
|
+
}
|
|
95
|
+
.layout-split-proxy-h,
|
|
96
|
+
.layout-split-proxy-v {
|
|
97
|
+
position: absolute;
|
|
98
|
+
font-size: 1px;
|
|
99
|
+
display: none;
|
|
100
|
+
z-index: 5;
|
|
101
|
+
}
|
|
102
|
+
.layout-split-proxy-h {
|
|
103
|
+
width: 5px;
|
|
104
|
+
cursor: e-resize;
|
|
105
|
+
}
|
|
106
|
+
.layout-split-proxy-v {
|
|
107
|
+
height: 5px;
|
|
108
|
+
cursor: n-resize;
|
|
109
|
+
}
|
|
110
|
+
.layout-mask {
|
|
111
|
+
position: absolute;
|
|
112
|
+
background: hsl(220 25% 97%);
|
|
113
|
+
filter: alpha(opacity=10);
|
|
114
|
+
opacity: 0.10;
|
|
115
|
+
z-index: 4;
|
|
116
|
+
}
|
|
117
|
+
.layout-button-up {
|
|
118
|
+
background: url('images/layout_arrows.png') no-repeat -16px -16px;
|
|
119
|
+
}
|
|
120
|
+
.layout-button-down {
|
|
121
|
+
background: url('images/layout_arrows.png') no-repeat -16px 0;
|
|
122
|
+
}
|
|
123
|
+
.layout-button-left {
|
|
124
|
+
background: url('images/layout_arrows.png') no-repeat 0 0;
|
|
125
|
+
}
|
|
126
|
+
.layout-button-right {
|
|
127
|
+
background: url('images/layout_arrows.png') no-repeat 0 -16px;
|
|
128
|
+
}
|
|
129
|
+
.layout-split-proxy-h,
|
|
130
|
+
.layout-split-proxy-v {
|
|
131
|
+
background-color: #aac5e7;
|
|
132
|
+
}
|
|
133
|
+
.layout-split-north {
|
|
134
|
+
border-bottom: 5px solid #E6EEF8;
|
|
135
|
+
}
|
|
136
|
+
.layout-split-south {
|
|
137
|
+
border-top: 5px solid #E6EEF8;
|
|
138
|
+
}
|
|
139
|
+
.layout-split-east {
|
|
140
|
+
border-left: 5px solid #E6EEF8;
|
|
141
|
+
}
|
|
142
|
+
.layout-split-west {
|
|
143
|
+
border-right: 5px solid #E6EEF8;
|
|
144
|
+
}
|
|
145
|
+
.layout-expand {
|
|
146
|
+
background-color: hsl(216 30% 91%);
|
|
147
|
+
}
|
|
148
|
+
.layout-expand-over {
|
|
149
|
+
background-color: hsl(216 30% 91%);
|
|
150
|
+
}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
.l-btn {
|
|
2
|
+
text-decoration: none;
|
|
3
|
+
display: inline-block;
|
|
4
|
+
overflow: hidden;
|
|
5
|
+
margin: 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
outline: none;
|
|
9
|
+
text-align: center;
|
|
10
|
+
vertical-align: middle;
|
|
11
|
+
line-height: normal;
|
|
12
|
+
}
|
|
13
|
+
.l-btn-plain {
|
|
14
|
+
border-width: 0;
|
|
15
|
+
padding: 1px;
|
|
16
|
+
}
|
|
17
|
+
.l-btn-left {
|
|
18
|
+
display: inline-block;
|
|
19
|
+
position: relative;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
margin: 0;
|
|
22
|
+
padding: 0;
|
|
23
|
+
vertical-align: top;
|
|
24
|
+
}
|
|
25
|
+
.l-btn-text {
|
|
26
|
+
display: inline-block;
|
|
27
|
+
vertical-align: top;
|
|
28
|
+
width: auto;
|
|
29
|
+
line-height: 28px;
|
|
30
|
+
font-size: 14px;
|
|
31
|
+
padding: 0;
|
|
32
|
+
margin: 0 6px;
|
|
33
|
+
}
|
|
34
|
+
.l-btn-icon {
|
|
35
|
+
display: inline-block;
|
|
36
|
+
width: 16px;
|
|
37
|
+
height: 16px;
|
|
38
|
+
line-height: 16px;
|
|
39
|
+
position: absolute;
|
|
40
|
+
top: 50%;
|
|
41
|
+
margin-top: -8px;
|
|
42
|
+
font-size: 1px;
|
|
43
|
+
}
|
|
44
|
+
.l-btn span span .l-btn-empty {
|
|
45
|
+
display: inline-block;
|
|
46
|
+
margin: 0;
|
|
47
|
+
width: 16px;
|
|
48
|
+
height: 24px;
|
|
49
|
+
font-size: 1px;
|
|
50
|
+
vertical-align: top;
|
|
51
|
+
}
|
|
52
|
+
.l-btn span .l-btn-icon-left {
|
|
53
|
+
padding: 0 0 0 20px;
|
|
54
|
+
background-position: left center;
|
|
55
|
+
}
|
|
56
|
+
.l-btn span .l-btn-icon-right {
|
|
57
|
+
padding: 0 20px 0 0;
|
|
58
|
+
background-position: right center;
|
|
59
|
+
}
|
|
60
|
+
.l-btn-icon-left .l-btn-text {
|
|
61
|
+
margin: 0 6px 0 26px;
|
|
62
|
+
}
|
|
63
|
+
.l-btn-icon-left .l-btn-icon {
|
|
64
|
+
left: 6px;
|
|
65
|
+
}
|
|
66
|
+
.l-btn-icon-right .l-btn-text {
|
|
67
|
+
margin: 0 26px 0 6px;
|
|
68
|
+
}
|
|
69
|
+
.l-btn-icon-right .l-btn-icon {
|
|
70
|
+
right: 6px;
|
|
71
|
+
}
|
|
72
|
+
.l-btn-icon-top .l-btn-text {
|
|
73
|
+
margin: 20px 4px 0 4px;
|
|
74
|
+
}
|
|
75
|
+
.l-btn-icon-top .l-btn-icon {
|
|
76
|
+
top: 4px;
|
|
77
|
+
left: 50%;
|
|
78
|
+
margin: 0 0 0 -8px;
|
|
79
|
+
}
|
|
80
|
+
.l-btn-icon-bottom .l-btn-text {
|
|
81
|
+
margin: 0 4px 20px 4px;
|
|
82
|
+
}
|
|
83
|
+
.l-btn-icon-bottom .l-btn-icon {
|
|
84
|
+
top: auto;
|
|
85
|
+
bottom: 4px;
|
|
86
|
+
left: 50%;
|
|
87
|
+
margin: 0 0 0 -8px;
|
|
88
|
+
}
|
|
89
|
+
.l-btn-left .l-btn-empty {
|
|
90
|
+
margin: 0 6px;
|
|
91
|
+
width: 16px;
|
|
92
|
+
}
|
|
93
|
+
.l-btn-plain:hover {
|
|
94
|
+
padding: 0;
|
|
95
|
+
}
|
|
96
|
+
.l-btn-focus {
|
|
97
|
+
outline: #0000FF dotted thin;
|
|
98
|
+
}
|
|
99
|
+
.l-btn-large .l-btn-text {
|
|
100
|
+
line-height: 44px;
|
|
101
|
+
}
|
|
102
|
+
.l-btn-large .l-btn-icon {
|
|
103
|
+
width: 32px;
|
|
104
|
+
height: 32px;
|
|
105
|
+
line-height: 32px;
|
|
106
|
+
margin-top: -16px;
|
|
107
|
+
}
|
|
108
|
+
.l-btn-large .l-btn-icon-left .l-btn-text {
|
|
109
|
+
margin-left: 40px;
|
|
110
|
+
}
|
|
111
|
+
.l-btn-large .l-btn-icon-right .l-btn-text {
|
|
112
|
+
margin-right: 40px;
|
|
113
|
+
}
|
|
114
|
+
.l-btn-large .l-btn-icon-top .l-btn-text {
|
|
115
|
+
margin-top: 36px;
|
|
116
|
+
line-height: 24px;
|
|
117
|
+
min-width: 32px;
|
|
118
|
+
}
|
|
119
|
+
.l-btn-large .l-btn-icon-top .l-btn-icon {
|
|
120
|
+
margin: 0 0 0 -16px;
|
|
121
|
+
}
|
|
122
|
+
.l-btn-large .l-btn-icon-bottom .l-btn-text {
|
|
123
|
+
margin-bottom: 36px;
|
|
124
|
+
line-height: 24px;
|
|
125
|
+
min-width: 32px;
|
|
126
|
+
}
|
|
127
|
+
.l-btn-large .l-btn-icon-bottom .l-btn-icon {
|
|
128
|
+
margin: 0 0 0 -16px;
|
|
129
|
+
}
|
|
130
|
+
.l-btn-large .l-btn-left .l-btn-empty {
|
|
131
|
+
margin: 0 6px;
|
|
132
|
+
width: 32px;
|
|
133
|
+
}
|
|
134
|
+
.l-btn {
|
|
135
|
+
color: hsl(222 47% 9%);
|
|
136
|
+
background: hsl(220 25% 97%);
|
|
137
|
+
background-repeat: repeat-x;
|
|
138
|
+
border: 1px solid hsl(214 22% 88%);
|
|
139
|
+
background: -webkit-linear-gradient(top,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
140
|
+
background: -moz-linear-gradient(top,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
141
|
+
background: -o-linear-gradient(top,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
142
|
+
background: linear-gradient(to bottom,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
143
|
+
background-repeat: repeat-x;
|
|
144
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=hsl(0 0% 100%),endColorstr=hsl(216 28% 93%),GradientType=0);
|
|
145
|
+
-moz-border-radius: .375rem;
|
|
146
|
+
-webkit-border-radius: .375rem;
|
|
147
|
+
border-radius: .375rem;
|
|
148
|
+
}
|
|
149
|
+
.l-btn:hover {
|
|
150
|
+
background: hsl(216 30% 91%);
|
|
151
|
+
color: hsl(222 47% 9%);
|
|
152
|
+
border: 1px solid hsl(221 90% 55%);
|
|
153
|
+
filter: none;
|
|
154
|
+
}
|
|
155
|
+
.l-btn-plain {
|
|
156
|
+
background: transparent;
|
|
157
|
+
border-width: 0;
|
|
158
|
+
filter: none;
|
|
159
|
+
}
|
|
160
|
+
.l-btn-outline {
|
|
161
|
+
border-width: 1px;
|
|
162
|
+
border-color: hsl(221 90% 55%);
|
|
163
|
+
padding: 0;
|
|
164
|
+
}
|
|
165
|
+
.l-btn-plain:hover {
|
|
166
|
+
background: hsl(216 30% 91%);
|
|
167
|
+
color: hsl(222 47% 9%);
|
|
168
|
+
border: 1px solid hsl(221 90% 55%);
|
|
169
|
+
-moz-border-radius: .375rem;
|
|
170
|
+
-webkit-border-radius: .375rem;
|
|
171
|
+
border-radius: .375rem;
|
|
172
|
+
}
|
|
173
|
+
.l-btn-disabled,
|
|
174
|
+
.l-btn-disabled:hover {
|
|
175
|
+
opacity: 0.5;
|
|
176
|
+
cursor: default;
|
|
177
|
+
background: hsl(220 25% 97%);
|
|
178
|
+
color: hsl(222 47% 9%);
|
|
179
|
+
background: -webkit-linear-gradient(top,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
180
|
+
background: -moz-linear-gradient(top,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
181
|
+
background: -o-linear-gradient(top,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
182
|
+
background: linear-gradient(to bottom,hsl(0 0% 100%) 0,hsl(216 28% 93%) 100%);
|
|
183
|
+
background-repeat: repeat-x;
|
|
184
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=hsl(0 0% 100%),endColorstr=hsl(216 28% 93%),GradientType=0);
|
|
185
|
+
}
|
|
186
|
+
.l-btn-disabled .l-btn-text,
|
|
187
|
+
.l-btn-disabled .l-btn-icon {
|
|
188
|
+
filter: alpha(opacity=50);
|
|
189
|
+
}
|
|
190
|
+
.l-btn-plain-disabled,
|
|
191
|
+
.l-btn-plain-disabled:hover {
|
|
192
|
+
background: transparent;
|
|
193
|
+
filter: alpha(opacity=50);
|
|
194
|
+
}
|
|
195
|
+
.l-btn-selected,
|
|
196
|
+
.l-btn-selected:hover {
|
|
197
|
+
background: hsl(214 22% 88%);
|
|
198
|
+
filter: none;
|
|
199
|
+
}
|
|
200
|
+
.l-btn-plain-selected,
|
|
201
|
+
.l-btn-plain-selected:hover {
|
|
202
|
+
background: hsl(214 22% 88%);
|
|
203
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
.menu {
|
|
2
|
+
position: absolute;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 2px;
|
|
5
|
+
border-width: 1px;
|
|
6
|
+
border-style: solid;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
}
|
|
9
|
+
.menu-inline {
|
|
10
|
+
position: relative;
|
|
11
|
+
}
|
|
12
|
+
.menu-item {
|
|
13
|
+
position: relative;
|
|
14
|
+
margin: 0;
|
|
15
|
+
padding: 0;
|
|
16
|
+
overflow: hidden;
|
|
17
|
+
white-space: nowrap;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
border-width: 1px;
|
|
20
|
+
border-style: solid;
|
|
21
|
+
}
|
|
22
|
+
.menu-text {
|
|
23
|
+
height: 20px;
|
|
24
|
+
line-height: 20px;
|
|
25
|
+
float: left;
|
|
26
|
+
padding-left: 28px;
|
|
27
|
+
}
|
|
28
|
+
.menu-icon {
|
|
29
|
+
position: absolute;
|
|
30
|
+
width: 16px;
|
|
31
|
+
height: 16px;
|
|
32
|
+
left: 2px;
|
|
33
|
+
top: 50%;
|
|
34
|
+
margin-top: -8px;
|
|
35
|
+
}
|
|
36
|
+
.menu-rightarrow {
|
|
37
|
+
position: absolute;
|
|
38
|
+
width: 16px;
|
|
39
|
+
height: 16px;
|
|
40
|
+
right: 0;
|
|
41
|
+
top: 50%;
|
|
42
|
+
margin-top: -8px;
|
|
43
|
+
}
|
|
44
|
+
.menu-line {
|
|
45
|
+
position: absolute;
|
|
46
|
+
left: 26px;
|
|
47
|
+
top: 0;
|
|
48
|
+
height: 2000px;
|
|
49
|
+
font-size: 1px;
|
|
50
|
+
}
|
|
51
|
+
.menu-sep {
|
|
52
|
+
margin: 3px 0px 3px 25px;
|
|
53
|
+
font-size: 1px;
|
|
54
|
+
}
|
|
55
|
+
.menu-noline .menu-line {
|
|
56
|
+
display: none;
|
|
57
|
+
}
|
|
58
|
+
.menu-noline .menu-sep {
|
|
59
|
+
margin-left: 0;
|
|
60
|
+
margin-right: 0;
|
|
61
|
+
}
|
|
62
|
+
.menu-active {
|
|
63
|
+
-moz-border-radius: .375rem;
|
|
64
|
+
-webkit-border-radius: .375rem;
|
|
65
|
+
border-radius: .375rem;
|
|
66
|
+
}
|
|
67
|
+
.menu-item-disabled {
|
|
68
|
+
opacity: 0.5;
|
|
69
|
+
filter: alpha(opacity=50);
|
|
70
|
+
cursor: default;
|
|
71
|
+
}
|
|
72
|
+
.menu-text,
|
|
73
|
+
.menu-text span {
|
|
74
|
+
font-size: 14px;
|
|
75
|
+
}
|
|
76
|
+
.menu-shadow {
|
|
77
|
+
position: absolute;
|
|
78
|
+
-moz-border-radius: .375rem;
|
|
79
|
+
-webkit-border-radius: .375rem;
|
|
80
|
+
border-radius: .375rem;
|
|
81
|
+
background: hsl(214 22% 88%);
|
|
82
|
+
-moz-box-shadow: 2px 2px 3px hsl(214 22% 88%);
|
|
83
|
+
-webkit-box-shadow: 2px 2px 3px hsl(214 22% 88%);
|
|
84
|
+
box-shadow: 2px 2px 3px hsl(214 22% 88%);
|
|
85
|
+
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
|
|
86
|
+
}
|
|
87
|
+
.menu-rightarrow {
|
|
88
|
+
background: url('images/menu_arrows.png') no-repeat -32px center;
|
|
89
|
+
}
|
|
90
|
+
.menu-line {
|
|
91
|
+
border-left: 1px solid hsl(214 22% 88%);
|
|
92
|
+
border-right: 1px solid hsl(0 0% 100%);
|
|
93
|
+
}
|
|
94
|
+
.menu-sep {
|
|
95
|
+
border-top: 1px solid hsl(214 22% 88%);
|
|
96
|
+
border-bottom: 1px solid hsl(0 0% 100%);
|
|
97
|
+
}
|
|
98
|
+
.menu {
|
|
99
|
+
background-color: hsl(220 25% 97%);
|
|
100
|
+
border-color: hsl(214 22% 88%);
|
|
101
|
+
color: hsl(222 47% 9%);
|
|
102
|
+
}
|
|
103
|
+
.menu-content {
|
|
104
|
+
background: hsl(0 0% 100%);
|
|
105
|
+
}
|
|
106
|
+
.menu-item {
|
|
107
|
+
border-color: transparent;
|
|
108
|
+
_border-color: hsl(220 25% 97%);
|
|
109
|
+
}
|
|
110
|
+
.menu-active {
|
|
111
|
+
border-color: hsl(221 90% 55%);
|
|
112
|
+
color: hsl(222 47% 9%);
|
|
113
|
+
background: hsl(216 30% 91%);
|
|
114
|
+
}
|
|
115
|
+
.menu-active-disabled {
|
|
116
|
+
border-color: transparent;
|
|
117
|
+
background: transparent;
|
|
118
|
+
color: hsl(222 47% 9%);
|
|
119
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
.m-btn-downarrow,
|
|
2
|
+
.s-btn-downarrow {
|
|
3
|
+
display: inline-block;
|
|
4
|
+
position: absolute;
|
|
5
|
+
width: 16px;
|
|
6
|
+
height: 16px;
|
|
7
|
+
font-size: 1px;
|
|
8
|
+
right: 0;
|
|
9
|
+
top: 50%;
|
|
10
|
+
margin-top: -8px;
|
|
11
|
+
}
|
|
12
|
+
.m-btn-active,
|
|
13
|
+
.s-btn-active {
|
|
14
|
+
background: hsl(216 30% 91%);
|
|
15
|
+
color: hsl(222 47% 9%);
|
|
16
|
+
border: 1px solid hsl(221 90% 55%);
|
|
17
|
+
filter: none;
|
|
18
|
+
}
|
|
19
|
+
.m-btn-plain-active,
|
|
20
|
+
.s-btn-plain-active {
|
|
21
|
+
background: transparent;
|
|
22
|
+
padding: 0;
|
|
23
|
+
border-width: 1px;
|
|
24
|
+
border-style: solid;
|
|
25
|
+
-moz-border-radius: .375rem;
|
|
26
|
+
-webkit-border-radius: .375rem;
|
|
27
|
+
border-radius: .375rem;
|
|
28
|
+
}
|
|
29
|
+
.m-btn .l-btn-left .l-btn-text {
|
|
30
|
+
margin-right: 20px;
|
|
31
|
+
}
|
|
32
|
+
.m-btn .l-btn-icon-right .l-btn-text {
|
|
33
|
+
margin-right: 40px;
|
|
34
|
+
}
|
|
35
|
+
.m-btn .l-btn-icon-right .l-btn-icon {
|
|
36
|
+
right: 20px;
|
|
37
|
+
}
|
|
38
|
+
.m-btn .l-btn-icon-top .l-btn-text {
|
|
39
|
+
margin-right: 4px;
|
|
40
|
+
margin-bottom: 14px;
|
|
41
|
+
}
|
|
42
|
+
.m-btn .l-btn-icon-bottom .l-btn-text {
|
|
43
|
+
margin-right: 4px;
|
|
44
|
+
margin-bottom: 34px;
|
|
45
|
+
}
|
|
46
|
+
.m-btn .l-btn-icon-bottom .l-btn-icon {
|
|
47
|
+
top: auto;
|
|
48
|
+
bottom: 20px;
|
|
49
|
+
}
|
|
50
|
+
.m-btn .l-btn-icon-top .m-btn-downarrow,
|
|
51
|
+
.m-btn .l-btn-icon-bottom .m-btn-downarrow {
|
|
52
|
+
top: auto;
|
|
53
|
+
bottom: 0px;
|
|
54
|
+
left: 50%;
|
|
55
|
+
margin-left: -8px;
|
|
56
|
+
}
|
|
57
|
+
.m-btn-line {
|
|
58
|
+
display: inline-block;
|
|
59
|
+
position: absolute;
|
|
60
|
+
font-size: 1px;
|
|
61
|
+
display: none;
|
|
62
|
+
}
|
|
63
|
+
.m-btn .l-btn-left .m-btn-line {
|
|
64
|
+
right: 0;
|
|
65
|
+
width: 16px;
|
|
66
|
+
height: 500px;
|
|
67
|
+
border-style: solid;
|
|
68
|
+
border-color: #aac5e7;
|
|
69
|
+
border-width: 0 0 0 1px;
|
|
70
|
+
}
|
|
71
|
+
.m-btn .l-btn-icon-top .m-btn-line,
|
|
72
|
+
.m-btn .l-btn-icon-bottom .m-btn-line {
|
|
73
|
+
left: 0;
|
|
74
|
+
bottom: 0;
|
|
75
|
+
width: 500px;
|
|
76
|
+
height: 16px;
|
|
77
|
+
border-width: 1px 0 0 0;
|
|
78
|
+
}
|
|
79
|
+
.m-btn-large .l-btn-icon-right .l-btn-text {
|
|
80
|
+
margin-right: 56px;
|
|
81
|
+
}
|
|
82
|
+
.m-btn-large .l-btn-icon-bottom .l-btn-text {
|
|
83
|
+
margin-bottom: 50px;
|
|
84
|
+
}
|
|
85
|
+
.m-btn-downarrow,
|
|
86
|
+
.s-btn-downarrow {
|
|
87
|
+
background: url('images/menu_arrows.png') no-repeat 0 center;
|
|
88
|
+
}
|
|
89
|
+
.m-btn-plain-active,
|
|
90
|
+
.s-btn-plain-active {
|
|
91
|
+
border-color: hsl(221 90% 55%);
|
|
92
|
+
background-color: hsl(216 30% 91%);
|
|
93
|
+
color: hsl(222 47% 9%);
|
|
94
|
+
}
|