mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fix tooltip positioning and add ellipsis to long recommendations (#10409)
This commit is contained in:
parent
5402ca8ce1
commit
41c0111418
2 changed files with 5 additions and 11 deletions
|
|
@ -28,11 +28,6 @@
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
.inspector {
|
||||
.cm-base-autocomplete {
|
||||
left: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
.cm-base-hint-info {
|
||||
color: var(--text-default, #1B1F24) !important;
|
||||
|
|
@ -135,9 +130,6 @@
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
li[aria-selected="true"] {
|
||||
|
|
@ -148,12 +140,13 @@
|
|||
|
||||
// li > :first-child,
|
||||
li> :nth-child(2) {
|
||||
display: flex !important;
|
||||
display: inline !important;
|
||||
align-self: flex-start !important;
|
||||
width: 100% !important;
|
||||
text-wrap: nowrap !important;
|
||||
// if the text is too long, it will be cut off
|
||||
overflow: hidden !important;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
li> :last-child {
|
||||
|
|
|
|||
|
|
@ -582,6 +582,7 @@ button {
|
|||
background-color: var(--base);
|
||||
background-clip: border-box;
|
||||
height: 100vh;
|
||||
z-index: 11;
|
||||
|
||||
|
||||
.inspector {
|
||||
|
|
|
|||
Loading…
Reference in a new issue