Fleet UI: [tiny bug fixes] Table text cell vertical alignment [released], fix first letter capitalization [unreleased] (#14086)

This commit is contained in:
RachelElysia 2023-09-22 10:48:21 -04:00 committed by GitHub
parent 4bdef5dbe9
commit 858092f137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -3,6 +3,10 @@
align-items: center;
color: $core-fleet-blue;
::first-letter {
text-transform: capitalize;
}
&:before {
border-radius: 100%;
content: " ";

View File

@ -215,6 +215,7 @@ $shadow-transition-width: 10px;
}
.link-cell,
.text-cell {
display: block; // inline-block is not vertically centered
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
@ -223,11 +224,7 @@ $shadow-transition-width: 10px;
white-space: normal;
}
}
.text-cell {
display: inline-block;
}
.link-cell {
display: block;
padding: $pad-small 0; // larger clickable area
&:hover {