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
|
@ -36,17 +36,17 @@
|
|||
|
||||
<!-- Tab contents -->
|
||||
<cor-tab-content>
|
||||
<h3>
|
||||
Credentials for {{ credentials.title || credentials.username }}
|
||||
<h3 class="dialog-title-header">
|
||||
<div class="dialog-title">Credentials for {{ credentials.title || credentials.username }}</div>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
</h3>
|
||||
|
||||
<cor-tab-pane id="cred-secret">
|
||||
<label>{{ secretTitle }}:</label>
|
||||
<div class="copy-box" value="credentials.password"></div>
|
||||
<div class="help-text">
|
||||
Username is {{ credentials.username }} and password is the {{ secretTitle }}
|
||||
</div>
|
||||
<label>Username & {{ secretTitle }}:</label>
|
||||
<div class="conjoined-box-wrapper">
|
||||
<div class="copy-box conjoined-box-top" value="credentials.username"></div>
|
||||
<div class="copy-box conjoined-box-bottom" value="credentials.password"></div>
|
||||
</div>
|
||||
|
||||
<div ng-transclude/>
|
||||
</cor-tab-pane>
|
||||
|
|
Reference in a new issue