2024-05-09 21:44:50 +00:00
|
|
|
.software-name-cell {
|
|
|
|
|
// TODO: we do not want to use !important but have to for now. We need to pull
|
|
|
|
|
// the .link-cell styles into the LinkCell component in order to
|
|
|
|
|
// decrease the specificity of the styles. This will allow us to remove the
|
|
|
|
|
// !important from here.
|
|
|
|
|
display: flex !important;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: $pad-small;
|
|
|
|
|
|
|
|
|
|
.software-icon {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
}
|
2024-05-10 15:18:24 +00:00
|
|
|
|
2024-10-25 12:05:40 +00:00
|
|
|
.software-name {
|
|
|
|
|
@include ellipse-text();
|
2025-03-28 15:31:50 +00:00
|
|
|
max-width: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: ($break-md - 1)) {
|
|
|
|
|
.software-name {
|
|
|
|
|
max-width: 250px;
|
|
|
|
|
}
|
2024-10-25 12:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
2024-05-10 15:18:24 +00:00
|
|
|
&__install-icon {
|
|
|
|
|
// TODO: we do not want to use !important but have to for now. This is
|
|
|
|
|
// the same issue as the .software-name-cell class display value.
|
|
|
|
|
display: inline-flex !important;
|
|
|
|
|
}
|
2024-05-15 19:32:20 +00:00
|
|
|
|
|
|
|
|
&__install-tooltip-text {
|
|
|
|
|
font-weight: $regular;
|
|
|
|
|
font-size: $xx-small;
|
|
|
|
|
}
|
2024-05-09 21:44:50 +00:00
|
|
|
}
|