mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
fix responsiveness on manage host page table controls and update filter icon (#7636)
* fix responsiveness on manage host page table * update filter icon on label filter to larger image
This commit is contained in:
parent
2380b4f313
commit
df014bd508
3 changed files with 7 additions and 3 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 384 B |
|
|
@ -114,7 +114,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// table header content responsive styles
|
// table header content responsive styles
|
||||||
@media (max-width: $break-990) {
|
// NOTE: 1100px is a custom breakpoint to deal with responsiveness of the
|
||||||
|
// table controls. 990px doesnt work for us in this case.
|
||||||
|
@media (max-width: 1100px) {
|
||||||
&__header {
|
&__header {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,10 @@
|
||||||
&::before {
|
&::before {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
content: url(../assets/images/icon-filter.png);
|
content: url(../assets/images/icon-filter-v2-black-16x16@2x.png);
|
||||||
top: 4px;
|
transform: scale(0.5);
|
||||||
|
top: -2px;
|
||||||
|
left: -6px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue