@c8y/style 1022.35.1 → 1022.44.3
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/package.json +1 -1
- package/styles/_asset-property-list.less +7 -0
- package/styles/_c8y-asset-selector-miller.less +1 -1
- package/styles/_c8y-asset-selector.less +7 -5
- package/styles/_c8y-list-group.less +4 -1
- package/styles/_input-groups.less +21 -7
- package/styles/utilities/_borders.less +17 -0
package/package.json
CHANGED
|
@@ -117,10 +117,7 @@ c8y-asset-selector{
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.c8y-asset-selector__item--start > .collapse > c8y-asset-selector-node > .c8y-asset-selector__item{
|
|
120
|
-
|
|
121
|
-
&:after{
|
|
122
|
-
// left: 14px;
|
|
123
|
-
}
|
|
120
|
+
|
|
124
121
|
> .c8y-asset-selector__node > .btn.btn-default::before{
|
|
125
122
|
display: none;
|
|
126
123
|
}
|
|
@@ -134,11 +131,16 @@ c8y-asset-selector c8y-search-input .input-group {
|
|
|
134
131
|
&,
|
|
135
132
|
&:first-child,
|
|
136
133
|
&:last-child {
|
|
137
|
-
padding-right: calc(@form-control-height-base + @form-control-padding-base-horizontal);
|
|
134
|
+
padding-right: calc(@form-control-height-base + @form-control-padding-base-horizontal)!important;
|
|
138
135
|
padding-left: calc(@form-control-padding-base-horizontal * 2);
|
|
139
136
|
border-radius: calc(@form-control-height-base * 0.5);
|
|
137
|
+
height: @form-control-height-sm !important;
|
|
140
138
|
}
|
|
141
139
|
}
|
|
140
|
+
.input-group-btn > .btn{
|
|
141
|
+
border-top-right-radius: @form-control-height-sm !important;
|
|
142
|
+
border-bottom-right-radius: @form-control-height-sm !important;
|
|
143
|
+
}
|
|
142
144
|
}
|
|
143
145
|
|
|
144
146
|
.c8y-asset-selector__item--start {
|
|
@@ -267,7 +267,7 @@ c8y-li-drag-handle, c8y-list-item-drag-handle {
|
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
.no-card-context {
|
|
270
|
-
.c8y-list__item
|
|
270
|
+
.c8y-list__item{
|
|
271
271
|
c8y-li-drag-handle:not(.cdk-drag-disabled) + * {
|
|
272
272
|
padding-left: 0;
|
|
273
273
|
}
|
|
@@ -498,6 +498,9 @@ c8y-li-drag-handle, c8y-list-item-drag-handle {
|
|
|
498
498
|
top: 0;
|
|
499
499
|
z-index: 10;
|
|
500
500
|
background-color: inherit;
|
|
501
|
+
&:has(.dropdown.open){
|
|
502
|
+
z-index: 11;
|
|
503
|
+
}
|
|
501
504
|
}
|
|
502
505
|
.c8y-list__item__collapse--container{
|
|
503
506
|
position: relative;
|
|
@@ -132,7 +132,8 @@
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
// search with round corners
|
|
135
|
-
.input-group.input-group-search
|
|
135
|
+
.input-group.input-group-search,
|
|
136
|
+
.input-group-search .input-group {
|
|
136
137
|
display: flex !important;
|
|
137
138
|
|
|
138
139
|
.form-control {
|
|
@@ -181,6 +182,7 @@
|
|
|
181
182
|
height: 100%;
|
|
182
183
|
line-height: 1;
|
|
183
184
|
border-radius: calc(@form-control-height-base * 0.5);
|
|
185
|
+
text-overflow: initial!important;
|
|
184
186
|
&:hover {
|
|
185
187
|
box-shadow: inset 0 0 0 2px @component-brand-primary;
|
|
186
188
|
}
|
|
@@ -200,10 +202,6 @@
|
|
|
200
202
|
}
|
|
201
203
|
|
|
202
204
|
&.input-group-lg {
|
|
203
|
-
// .form-control:not(.c8y-radio):not(.c8y-checkbox) {
|
|
204
|
-
// padding-left: 16px;
|
|
205
|
-
// }
|
|
206
|
-
|
|
207
205
|
.input-group-btn,
|
|
208
206
|
.input-group-addon {
|
|
209
207
|
height: @form-control-height-lg;
|
|
@@ -216,6 +214,20 @@
|
|
|
216
214
|
}
|
|
217
215
|
}
|
|
218
216
|
|
|
217
|
+
.input-group-search{
|
|
218
|
+
.input-group-btn > .btn{
|
|
219
|
+
border-top-right-radius: calc(@form-control-height-base * 0.5)!important;
|
|
220
|
+
border-bottom-right-radius: calc(@form-control-height-base * 0.5)!important;
|
|
221
|
+
}
|
|
222
|
+
&.input-group-lg {
|
|
223
|
+
.input-group-btn > .btn{
|
|
224
|
+
border-top-right-radius: @form-control-height-base!important;
|
|
225
|
+
border-bottom-right-radius: @form-control-height-base!important;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
|
|
219
231
|
//smaller search input when using the c8y-search-input component
|
|
220
232
|
c8y-search-input.input-group-sm{
|
|
221
233
|
.input-group-search{
|
|
@@ -451,8 +463,10 @@ c8y-search-input.input-group-sm{
|
|
|
451
463
|
// Remix the default form control sizing classes into new ones for easier manipulation.
|
|
452
464
|
.input-group-lg > .form-control,
|
|
453
465
|
.input-group-lg > .input-group-addon,
|
|
454
|
-
.input-group-lg > .input-group-btn > .btn
|
|
455
|
-
|
|
466
|
+
.input-group-lg > .input-group-btn > .btn,
|
|
467
|
+
.input-group-search.input-group-lg .input-group > .form-control,
|
|
468
|
+
.input-group-search.input-group-lg .input-group-btn > .btn{
|
|
469
|
+
.input-lg();
|
|
456
470
|
}
|
|
457
471
|
.input-group-lg > .form-group{
|
|
458
472
|
height: @form-control-height-lg!important;
|
|
@@ -116,3 +116,20 @@
|
|
|
116
116
|
border-color: transparent !important;
|
|
117
117
|
box-shadow: none !important;
|
|
118
118
|
}
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
.b-r-8 {
|
|
122
|
+
border-radius: @margin-8 !important;
|
|
123
|
+
}
|
|
124
|
+
.b-r-16 {
|
|
125
|
+
border-radius: @margin-16 !important;
|
|
126
|
+
}
|
|
127
|
+
.b-r-24 {
|
|
128
|
+
border-radius: @margin-24 !important;
|
|
129
|
+
}
|
|
130
|
+
.b-r-32 {
|
|
131
|
+
border-radius: @margin-32 !important;
|
|
132
|
+
}
|
|
133
|
+
.b-r-40 {
|
|
134
|
+
border-radius: @margin-40 !important;
|
|
135
|
+
}
|