mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
[small unreleased bug] Fleet UI: Fix Show schema button location (#18284)
This commit is contained in:
parent
d0b02fa985
commit
1d34d027e3
4 changed files with 6 additions and 2 deletions
1
changes/18276-fix-schema-button-location
Normal file
1
changes/18276-fix-schema-button-location
Normal file
|
|
@ -0,0 +1 @@
|
|||
* UI Fix to Show schema button location
|
||||
|
|
@ -7,10 +7,12 @@
|
|||
color: $core-vibrant-red;
|
||||
}
|
||||
&--with-action {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
button {
|
||||
height: 36px; // aligning space between label and textarea
|
||||
height: initial; // aligning space between label and textarea
|
||||
animation: fade-in 250ms ease-out;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
padding: $pad-xxlarge;
|
||||
// need relative positioning for a close icon that is on some sidebars have
|
||||
position: relative;
|
||||
animation: fade-in 250ms ease-out;
|
||||
|
||||
.component__tooltip-wrapper__tip-text {
|
||||
max-width: 280px;
|
||||
|
|
|
|||
|
|
@ -294,7 +294,7 @@ const PolicyForm = ({
|
|||
}
|
||||
|
||||
return (
|
||||
<Button variant="small-icon" onClick={onOpenSchemaSidebar}>
|
||||
<Button variant="text-icon" onClick={onOpenSchemaSidebar}>
|
||||
<>
|
||||
<Icon name="info" size="small" />
|
||||
Show schema
|
||||
|
|
|
|||
Loading…
Reference in a new issue