mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
* adding overflow class to link text * adding separate class to fix overflow text on list & card views * adding class to search list items to handle overflow * adding ellipsis instead of just hidden for visual indicator * added changelog * updating styling to use helper classes, added child class to global style, updated changelog * added test checks for oveflow classes
30 lines
472 B
SCSS
30 lines
472 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.linked-block {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.linked-block .columns {
|
|
@extend .is-flex-center;
|
|
}
|
|
|
|
.linked-block-item {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 50px 35px;
|
|
gap: 1em 1em;
|
|
}
|
|
|
|
.linked-block-popup-menu {
|
|
box-sizing: border-box;
|
|
grid-column: 3;
|
|
grid-row: 1;
|
|
align-self: center;
|
|
}
|
|
|
|
.linked-block-title {
|
|
grid-template-columns: minmax(0, 28px) minmax(0, 1fr);
|
|
}
|