pacem-less 0.51.7 → 0.51.8-lambert
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.
|
@@ -182,10 +182,18 @@
|
|
|
182
182
|
|
|
183
183
|
.display-inline {
|
|
184
184
|
display: inline !important;
|
|
185
|
+
|
|
186
|
+
&.inline-middle {
|
|
187
|
+
vertical-align: middle;
|
|
188
|
+
}
|
|
185
189
|
}
|
|
186
190
|
|
|
187
191
|
.display-inline-block {
|
|
188
192
|
display: inline-block !important;
|
|
193
|
+
|
|
194
|
+
&.inline-block-middle{
|
|
195
|
+
vertical-align: middle;
|
|
196
|
+
}
|
|
189
197
|
}
|
|
190
198
|
|
|
191
199
|
.HideWhenAtMost(@size) {
|
|
@@ -92,7 +92,7 @@ each(@_font_faces, {
|
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
.text-bigger {
|
|
95
|
-
font-size: 2em !important;
|
|
95
|
+
font-size: 2em !important;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
.text-bigger-steady {
|
|
@@ -134,6 +134,29 @@ each(@_font_faces, {
|
|
|
134
134
|
text-overflow: ellipsis;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.text-clamp {
|
|
138
|
+
overflow: hidden;
|
|
139
|
+
display: -webkit-box;
|
|
140
|
+
-webkit-box-orient: vertical;
|
|
141
|
+
-webkit-line-clamp: 1;
|
|
142
|
+
|
|
143
|
+
&.clamp-2 {
|
|
144
|
+
-webkit-line-clamp: 2;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.clamp-3 {
|
|
148
|
+
-webkit-line-clamp: 3;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
&.clamp-4 {
|
|
152
|
+
-webkit-line-clamp: 4;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
&.clamp-5 {
|
|
156
|
+
-webkit-line-clamp: 5;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
137
160
|
.text-upper {
|
|
138
161
|
text-transform: uppercase !important;
|
|
139
162
|
}
|
|
@@ -147,14 +170,13 @@ each(@_font_faces, {
|
|
|
147
170
|
}
|
|
148
171
|
|
|
149
172
|
.text-bold,
|
|
150
|
-
.text-strong
|
|
151
|
-
{
|
|
173
|
+
.text-strong {
|
|
152
174
|
font-weight: 700 !important;
|
|
153
175
|
}
|
|
154
176
|
|
|
155
177
|
.text-italic,
|
|
156
|
-
.text-emphasis{
|
|
157
|
-
|
|
178
|
+
.text-emphasis {
|
|
179
|
+
font-style: italic !important;
|
|
158
180
|
}
|
|
159
181
|
|
|
160
182
|
.text-tech {
|
|
@@ -168,22 +190,27 @@ each(@_font_faces, {
|
|
|
168
190
|
.text-main {
|
|
169
191
|
font-family: @font_main !important;
|
|
170
192
|
}
|
|
193
|
+
|
|
171
194
|
.text-normal {
|
|
172
195
|
text-transform: none !important;
|
|
173
196
|
font-style: normal !important;
|
|
174
197
|
font-weight: normal !important;
|
|
175
198
|
}
|
|
199
|
+
|
|
176
200
|
.text-rootsize {
|
|
177
201
|
.FontStdSize(1) !important;
|
|
178
202
|
}
|
|
179
|
-
|
|
203
|
+
|
|
204
|
+
.text-noshadow {
|
|
180
205
|
text-shadow: none !important;
|
|
181
206
|
}
|
|
207
|
+
|
|
182
208
|
.text-reset {
|
|
183
209
|
.text-normal();
|
|
184
210
|
font-family: ~"var(--@{PCSS}-font-std)" !important;
|
|
185
211
|
.FontStdSize(1);
|
|
186
212
|
}
|
|
213
|
+
|
|
187
214
|
.text-inherit,
|
|
188
215
|
.text-inherit:hover,
|
|
189
216
|
.text-inherit:active {
|
package/package.json
CHANGED