@colijnit/corecomponents_v12 254.1.4 → 254.1.6
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/bundles/colijnit-corecomponents_v12.umd.js +3 -3
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/article-tile/article-tile.component.js +6 -5
- package/esm2015/lib/components/input-text/input-text.component.js +7 -4
- package/fesm2015/colijnit-corecomponents_v12.js +11 -7
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/article-tile/article-tile.component.scss +39 -143
- package/package.json +1 -1
|
@@ -1,158 +1,54 @@
|
|
|
1
1
|
:host {
|
|
2
|
-
|
|
3
|
-
/*flex-direction: column;*/
|
|
4
|
-
/*align-items: center;*/
|
|
5
|
-
/*position: relative;*/
|
|
6
|
-
/*flex-shrink: 0;*/
|
|
7
|
-
/*flex-grow: 0;*/
|
|
8
|
-
/*width: 150px;*/
|
|
9
|
-
/*height: 220px;*/
|
|
10
|
-
/*margin: 10px;*/
|
|
11
|
-
/*border-radius: 5px;*/
|
|
12
|
-
/*padding: 10px;*/
|
|
13
|
-
/*transition: all 0.14s ease-out;*/
|
|
14
|
-
.description {
|
|
2
|
+
.description {
|
|
15
3
|
font-weight: bold;
|
|
16
|
-
}
|
|
4
|
+
}
|
|
17
5
|
}
|
|
18
6
|
|
|
19
7
|
co-button.card-button {
|
|
8
|
+
height: 50px;
|
|
9
|
+
width: 50px;
|
|
10
|
+
padding: 0;
|
|
11
|
+
border-radius: 50%;
|
|
12
|
+
color: #fff;
|
|
13
|
+
&.square {
|
|
14
|
+
border-radius: 5px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
::ng-deep co-icon {
|
|
20
18
|
height: 50px;
|
|
21
19
|
width: 50px;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
&.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
width: 20px;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.mini {
|
|
23
|
+
transform: scale(1);
|
|
24
|
+
height: 30px;
|
|
25
|
+
width: 30px;
|
|
26
|
+
background: #3E7EFF;
|
|
27
|
+
::ng-deep co-icon {
|
|
28
|
+
height: 30px;
|
|
29
|
+
width: 30px;
|
|
30
|
+
svg {
|
|
31
|
+
color: #fff;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
40
35
|
}
|
|
41
36
|
|
|
42
37
|
.bottom-content-wrapper {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-direction: row;
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: flex-end;
|
|
42
|
+
height: 100%;
|
|
43
|
+
|
|
44
|
+
.left-buttons {
|
|
49
45
|
display: flex;
|
|
50
46
|
margin-right: auto;
|
|
51
47
|
height: 100%;
|
|
52
48
|
align-items: center;
|
|
53
|
-
* {
|
|
54
|
-
margin-right: 5px;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
/*:host.border-hover:hover {*/
|
|
60
|
-
/*box-shadow: 0 0 3px 2px rgba(128, 128, 128, 0.4);*/
|
|
61
|
-
/*background-color: initial;*/
|
|
62
|
-
/*}*/
|
|
63
|
-
|
|
64
|
-
/*:host:hover {*/
|
|
65
|
-
/*background-color: rgb(228, 233, 232);*/
|
|
66
|
-
/*}*/
|
|
67
|
-
|
|
68
|
-
/*:host:hover co-button.magnify {*/
|
|
69
|
-
/*visibility: visible;*/
|
|
70
|
-
/*}*/
|
|
71
49
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
/*:host.small-modus co-image {*/
|
|
78
|
-
/*width: 90px;*/
|
|
79
|
-
/*height: 90px;*/
|
|
80
|
-
/*}*/
|
|
81
|
-
|
|
82
|
-
/*:host.small-modus span.description {*/
|
|
83
|
-
/*margin-top: 2px;*/
|
|
84
|
-
/*font-size: 12px;*/
|
|
85
|
-
/*}*/
|
|
86
|
-
|
|
87
|
-
/*:host.small-modus span.price {*/
|
|
88
|
-
/*margin-top: 2px;*/
|
|
89
|
-
/*font-size: 14px;*/
|
|
90
|
-
/*}*/
|
|
91
|
-
|
|
92
|
-
/*:host.small-modus co-level-indicator {*/
|
|
93
|
-
/*bottom: 58px;*/
|
|
94
|
-
/*}*/
|
|
95
|
-
|
|
96
|
-
/*:host.small-modus co-button.info {*/
|
|
97
|
-
/*bottom: 47px;*/
|
|
98
|
-
/*}*/
|
|
99
|
-
|
|
100
|
-
/*div.image {*/
|
|
101
|
-
/*position: relative;*/
|
|
102
|
-
/*}*/
|
|
103
|
-
|
|
104
|
-
/*co-image {*/
|
|
105
|
-
/*width: 150px;*/
|
|
106
|
-
/*height: 150px;*/
|
|
107
|
-
/*border-radius: 20px;*/
|
|
108
|
-
/*overflow: hidden;*/
|
|
109
|
-
/*}*/
|
|
110
|
-
|
|
111
|
-
/*co-icon.check {*/
|
|
112
|
-
/*position: absolute;*/
|
|
113
|
-
/*background-color: #8faba6;*/
|
|
114
|
-
/*z-index: 1;*/
|
|
115
|
-
/*border-radius: 50%;*/
|
|
116
|
-
/*transform: scale(1.1);*/
|
|
117
|
-
/*right: 7px;*/
|
|
118
|
-
/*top: 7px;*/
|
|
119
|
-
/*}*/
|
|
120
|
-
|
|
121
|
-
/*co-icon.check /deep/ svg {*/
|
|
122
|
-
/*transform: scale(0.9);*/
|
|
123
|
-
/*}*/
|
|
124
|
-
|
|
125
|
-
/*co-button.magnify {*/
|
|
126
|
-
/*position: absolute;*/
|
|
127
|
-
/*visibility: hidden;*/
|
|
128
|
-
/*top: 1px;*/
|
|
129
|
-
/*left: 1px;*/
|
|
130
|
-
/*z-index: 2; !* above co-icon.check *!*/
|
|
131
|
-
/*}*/
|
|
132
|
-
|
|
133
|
-
/*co-button.magnify /deep/ svg {*/
|
|
134
|
-
/*transform: scale(1.5);*/
|
|
135
|
-
/*}*/
|
|
136
|
-
|
|
137
|
-
/*co-button.info {*/
|
|
138
|
-
/*position: absolute;*/
|
|
139
|
-
/*bottom: 71px;*/
|
|
140
|
-
/*right: 1px;*/
|
|
141
|
-
/*}*/
|
|
142
|
-
|
|
143
|
-
/*co-level-indicator {*/
|
|
144
|
-
/*position: absolute;*/
|
|
145
|
-
/*bottom: 80px;*/
|
|
146
|
-
/*}*/
|
|
147
|
-
|
|
148
|
-
/*span.description {*/
|
|
149
|
-
/*font-size: 13px;*/
|
|
150
|
-
/*margin-top: 10px;*/
|
|
151
|
-
/*text-align: center;*/
|
|
152
|
-
/*}*/
|
|
153
|
-
|
|
154
|
-
/*span.price {*/
|
|
155
|
-
/*position: absolute;*/
|
|
156
|
-
/*bottom: 10px;*/
|
|
157
|
-
/*font-weight: bold;*/
|
|
158
|
-
/*}*/
|
|
50
|
+
* {
|
|
51
|
+
margin-right: 5px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|