cloud-b2b 1.0.5 → 1.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/es/Indent/Indent.js +23 -0
- package/es/Indent/package.json +6 -0
- package/es/SuperForm2/SuperForm.js +732 -0
- package/es/SuperForm2/SuperForm.less +52 -0
- package/es/SuperForm2/package.json +6 -0
- package/es/SuperTab/SuperTab.js +130 -0
- package/es/SuperTab/SuperTab.less +43 -0
- package/es/SuperTab/package.json +6 -0
- package/es/SuperTab2/SuperTab2.js +167 -0
- package/es/SuperTab2/SuperTab2.less +18 -0
- package/es/SuperTab2/package.json +6 -0
- package/es/SuperTable/DragSortRow.less +1 -1
- package/es/SuperTable2/SuperTable2.less +16 -0
- package/es/SuperTable3/FilterDropDown.js +188 -0
- package/es/SuperTable3/FilterDropDown.less +29 -0
- package/es/SuperTable3/SuperTable.js +783 -0
- package/es/SuperTable3/SuperTable.less +99 -0
- package/es/SuperTable3/fixed.js +42 -0
- package/es/SuperTable3/package.json +6 -0
- package/es/index.js +12 -2
- package/es/style.less +13 -3
- package/lib/Indent/Indent.js +38 -0
- package/lib/Indent/package.json +6 -0
- package/lib/SuperForm2/SuperForm.js +742 -0
- package/lib/SuperForm2/SuperForm.less +52 -0
- package/lib/SuperForm2/package.json +6 -0
- package/lib/SuperTab/SuperTab.js +146 -0
- package/lib/SuperTab/SuperTab.less +43 -0
- package/lib/SuperTab/package.json +6 -0
- package/lib/SuperTab2/SuperTab2.js +191 -0
- package/lib/SuperTab2/SuperTab2.less +18 -0
- package/lib/SuperTab2/package.json +6 -0
- package/lib/SuperTable/DragSortRow.less +1 -1
- package/lib/SuperTable2/SuperTable2.less +16 -0
- package/lib/SuperTable3/FilterDropDown.js +205 -0
- package/lib/SuperTable3/FilterDropDown.less +29 -0
- package/lib/SuperTable3/SuperTable.js +787 -0
- package/lib/SuperTable3/SuperTable.less +99 -0
- package/lib/SuperTable3/fixed.js +55 -0
- package/lib/SuperTable3/package.json +6 -0
- package/lib/index.js +102 -7
- package/lib/index.less +5 -1
- package/lib/style.less +13 -3
- package/package.json +1 -1
- package/es/HomeHeader/Header.js +0 -75
- package/es/HomeHeader/Header.less +0 -73
- package/es/HomeHeader/package.json +0 -6
- package/lib/HomeHeader/Header.js +0 -95
- package/lib/HomeHeader/Header.less +0 -73
- package/lib/HomeHeader/package.json +0 -6
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
@import '../variables';
|
|
2
|
-
|
|
3
|
-
@header-height: @one-pixel * 80;
|
|
4
|
-
|
|
5
|
-
.@{cloudlink-prefix}-HomeHeader {
|
|
6
|
-
> div:first-child {
|
|
7
|
-
position: relative;
|
|
8
|
-
height: @header-height;
|
|
9
|
-
line-height: @header-height - @one-pixel * 6;
|
|
10
|
-
text-align: center;
|
|
11
|
-
//background: url('/platformHome/head_bg.png') no-repeat;
|
|
12
|
-
background-size: 100% 100%;
|
|
13
|
-
color: #33EDFC;
|
|
14
|
-
font-size: @one-pixel * 32;
|
|
15
|
-
font-weight: bold;
|
|
16
|
-
margin: 0 280 * @one-pixel;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
> div:nth-child(2) {
|
|
20
|
-
color: white;
|
|
21
|
-
float: left;
|
|
22
|
-
margin-top: -@header-height + 20 * @one-pixel;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
> div:last-child {
|
|
26
|
-
float: right;
|
|
27
|
-
margin-top: -@header-height + 20 * @one-pixel;
|
|
28
|
-
color: white;
|
|
29
|
-
|
|
30
|
-
> div {
|
|
31
|
-
display: inline-block;
|
|
32
|
-
margin-right: 5 * @one-pixel;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
> span > div {
|
|
36
|
-
> input {
|
|
37
|
-
background-color: transparent;
|
|
38
|
-
color: white;
|
|
39
|
-
border-color: #33edfc;
|
|
40
|
-
width: 100px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
> i {
|
|
44
|
-
color: white;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
:global {
|
|
50
|
-
.ant-radio-button-wrapper {
|
|
51
|
-
background: transparent;
|
|
52
|
-
color: white;
|
|
53
|
-
border-radius: 0;
|
|
54
|
-
border-color: #33EDFC;
|
|
55
|
-
transition: none;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.ant-radio-button-wrapper-checked,
|
|
59
|
-
.ant-radio-button-wrapper-checked:hover {
|
|
60
|
-
background: #33EDFC;
|
|
61
|
-
color: #162C55;
|
|
62
|
-
border-color: #33EDFC;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.ant-radio-button-wrapper-checked {
|
|
66
|
-
box-shadow: none;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.ant-radio-button-wrapper:hover {
|
|
70
|
-
border-color: #33EDFC;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|