File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
src/cloud/components/Props/Pickers Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -226,6 +226,7 @@ const PastilleContainer = styled.div`
226
226
const Container = styled . div `
227
227
.item__property__button {
228
228
cursor: pointer;
229
+ height: auto;
229
230
}
230
231
231
232
.dependencies___wrapper {
@@ -237,13 +238,14 @@ const Container = styled.div`
237
238
238
239
.dependency__pastille {
239
240
margin-right: ${ ( { theme } ) => theme . sizes . spaces . xsm } px;
241
+ margin-top: ${ ( { theme } ) => theme . sizes . spaces . xsm } px;
240
242
}
241
243
242
244
.dependency__wrapper {
243
245
display: inline-flex;
244
246
line-height: 23px;
245
247
margin-right: ${ ( { theme } ) => theme . sizes . spaces . xsm } px;
246
- background: ${ ( { theme } ) => theme . colors . background . quaternary } ;
248
+ background: ${ ( { theme } ) => theme . colors . background . tertiary } ;
247
249
border-radius: ${ ( { theme } ) => theme . borders . radius } px;
248
250
margin-top: ${ ( { theme } ) => theme . sizes . spaces . xsm } px;
249
251
margin-bottom: ${ ( { theme } ) => theme . sizes . spaces . xsm } px;
@@ -255,6 +257,14 @@ const Container = styled.div`
255
257
text-decoration: underline;
256
258
}
257
259
}
260
+
261
+ .dependency__label__text {
262
+ white-space: nowrap;
263
+ text-overflow: ellipsis;
264
+ max-width: 300px;
265
+ display: inline-block;
266
+ overflow: hidden;
267
+ }
258
268
}
259
269
`
260
270
You can’t perform that action at this time.
0 commit comments