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:
parent
c8824aeb58
commit
49ce38ea04
7 changed files with 77 additions and 12 deletions
|
@ -53,13 +53,13 @@
|
|||
<tr ng-repeat="robotInfo in orderedRobots.visibleEntries" bindonce>
|
||||
<td class="robot">
|
||||
<i class="fa ci-robot hidden-xs"></i>
|
||||
<a ng-click="showRobot(robotInfo)">
|
||||
<a class="robot-account-name" ng-click="showRobot(robotInfo)">
|
||||
<span class="prefix" bo-text="getPrefix(robotInfo.name) + '+'"></span><span bo-text="getShortenedName(robotInfo.name)"></span>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<span class="empty" bo-if="!robotInfo.description">(None)</span>
|
||||
<span bo-if="robotInfo.description">{{ ::robotInfo.description }}</span>
|
||||
<span class="robots-description" bo-if="robotInfo.description">{{ ::robotInfo.description }}</span>
|
||||
</td>
|
||||
<td bo-if="organization">
|
||||
<span class="empty" bo-if="robotInfo.teams.length == 0">
|
||||
|
|
Reference in a new issue