mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Schedule page bug: Fix missing carat/bounciness (#4442)
This commit is contained in:
parent
8d6f5e4bcd
commit
91474d89a3
4 changed files with 19 additions and 2 deletions
1
changes/issue-4415-fix-inherited-dropdown
Normal file
1
changes/issue-4415-fix-inherited-dropdown
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Fix missing carat in inherited scheduled query dropdown
|
||||
|
|
@ -111,6 +111,22 @@
|
|||
}
|
||||
}
|
||||
|
||||
.upcarat {
|
||||
&::before {
|
||||
content: url("../assets/images/icon-chevron-blue-16x16@2x.png");
|
||||
transform: scale(0.5) rotate(180deg);
|
||||
width: 16px;
|
||||
border-radius: 0px;
|
||||
padding: 0px;
|
||||
padding-right: 2px;
|
||||
margin-right: $pad-small;
|
||||
margin-top: 5px;
|
||||
position: relative;
|
||||
top: -4px;
|
||||
left: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
&__details {
|
||||
display: inline-flex;
|
||||
vertical-align: middle;
|
||||
|
|
|
|||
|
|
@ -275,7 +275,7 @@ const ScheduleEditorModal = ({
|
|||
<div>
|
||||
<Button
|
||||
variant="unstyled"
|
||||
className={`${showAdvancedOptions ? "upcarat" : "downcarat"}
|
||||
className={`${showAdvancedOptions ? "afterupcarat" : "downcarat"}
|
||||
${baseClass}__advanced-options-button`}
|
||||
onClick={toggleAdvancedOptions}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.upcarat {
|
||||
.afterupcarat {
|
||||
&::after {
|
||||
content: url("../assets/images/icon-chevron-blue-16x16@2x.png");
|
||||
transform: scale(0.5) rotate(180deg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue