mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
More room for software names and keep tooltips visible (#2867)
This commit is contained in:
parent
249ca8482c
commit
af956537a1
1
changes/fix-2726-long-software-names
Normal file
1
changes/fix-2726-long-software-names
Normal file
@ -0,0 +1 @@
|
||||
* Provide more room for software names and ensure tooltip is visible at smaller screen sizes
|
@ -83,6 +83,13 @@
|
||||
max-width: 140px;
|
||||
}
|
||||
}
|
||||
|
||||
&.active-selection th {
|
||||
border: 0;
|
||||
.fleet-checkbox {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.Select.is-focused:not(.is-open) > .Select-control {
|
||||
|
@ -117,7 +117,7 @@ const generateSoftwareTableHeaders = (): IDataColumn[] => {
|
||||
const { name, bundle_identifier } = cellProps.row.original;
|
||||
if (bundle_identifier) {
|
||||
return (
|
||||
<span>
|
||||
<span className="name-container">
|
||||
{name}
|
||||
<span
|
||||
className={`software-name tooltip__tooltip-icon`}
|
||||
|
@ -471,8 +471,6 @@
|
||||
|
||||
.section--software {
|
||||
th {
|
||||
width: 200px;
|
||||
|
||||
&:first-child {
|
||||
border-right: none;
|
||||
width: 16px;
|
||||
@ -487,12 +485,29 @@
|
||||
&:nth-last-child(2) {
|
||||
border-right: 0 !important;
|
||||
}
|
||||
|
||||
&.source__header {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
&.version__header {
|
||||
width: 10%;
|
||||
}
|
||||
}
|
||||
tr {
|
||||
td {
|
||||
position: relative;
|
||||
&:first-child {
|
||||
padding-right: 0px;
|
||||
}
|
||||
.name-container {
|
||||
.tooltip__tooltip-icon {
|
||||
@include breakpoint(ltdesktop) {
|
||||
position: absolute;
|
||||
right: 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
|
Loading…
Reference in New Issue
Block a user