Merge pull request #277 from jonathanKingston/overflow-container-size
Add overflow for container name to prevent UI from overflowing. Fixes…
This commit is contained in:
commit
be5b3acb56
3 changed files with 16 additions and 2 deletions
|
@ -105,16 +105,23 @@ value, or chrome url path as an alternate selector mitiages this bug.*/
|
||||||
#userContext-indicator {
|
#userContext-indicator {
|
||||||
height: 16px;
|
height: 16px;
|
||||||
list-style-image: none !important;
|
list-style-image: none !important;
|
||||||
|
vertical-align: middle;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#userContext-label {
|
#userContext-label {
|
||||||
margin-inline-end: 5px;
|
|
||||||
color: var(--identity-tab-color) !important;
|
color: var(--identity-tab-color) !important;
|
||||||
|
margin-inline-end: 5px;
|
||||||
|
max-inline-size: 75px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
#userContext-icons {
|
#userContext-icons {
|
||||||
-moz-box-align: center;
|
-moz-box-align: center;
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
max-inline-size: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.userContext-icon,
|
.userContext-icon,
|
||||||
|
|
|
@ -416,6 +416,13 @@ span ~ .panel-header-text {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Container info list */
|
/* Container info list */
|
||||||
|
#container-info-name {
|
||||||
|
margin-inline-end: 0.5rem;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
#container-info-hideorshow {
|
#container-info-hideorshow {
|
||||||
margin-block-start: 4px;
|
margin-block-start: 4px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,7 +99,7 @@
|
||||||
<form id="edit-container-panel-form">
|
<form id="edit-container-panel-form">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Name</legend>
|
<legend>Name</legend>
|
||||||
<input type="text" name="container-name" id="edit-container-panel-name-input"/>
|
<input type="text" name="container-name" id="edit-container-panel-name-input" maxlength="25"/>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset id="edit-container-panel-choose-color">
|
<fieldset id="edit-container-panel-choose-color">
|
||||||
<legend>Choose a color</legend>
|
<legend>Choose a color</legend>
|
||||||
|
|
Loading…
Add table
Reference in a new issue