Add styling for overflowing table & dropdown robot

Bound modal box by container, remove !important

The important was introduced as a fix to
https://jira.coreos.com/browse/QUAY-881
However, after removal it does not seem to be necessary (Cannot
reproduce with the !important gone).

Adds bounding for the modal boxes & title

Joins the username/password for robot in box
This commit is contained in:
Sam Chow 2018-04-27 10:01:00 -04:00
parent c8824aeb58
commit 49ce38ea04
7 changed files with 77 additions and 12 deletions

View file

@ -1,5 +1,19 @@
.robots-manager-element .robot {
white-space: nowrap;
max-width: 550px;
}
.robots-manager-element .robot-account-name {
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
max-width: 90%;
}
.robots-manager-element .robots-description {
word-break: break-all;
max-width: 500px;
display: inline-block;
}
.robots-manager-element .robot a {