1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Merge pull request #2732 from jaredevantabor/word-breaking

adjusting label-delete-modal's title width
This commit is contained in:
Jared Tabor 2016-07-01 11:07:31 -07:00 committed by GitHub
commit bad789f497
3 changed files with 3 additions and 6 deletions

View File

@ -67,7 +67,7 @@ export default
};
Prompt({
hdr: 'Remove Label from <span class="Prompt-titleTarget">' + templateName + "</span>",
hdr: 'Remove Label from ' + templateName ,
body: '<div class="Prompt-bodyQuery">Confirm the removal of the <span class="Prompt-emphasis">' + $filter('sanitize')(labelName) + '</span> label.</div>',
action: action,
actionText: 'REMOVE'

View File

@ -22,7 +22,8 @@
color: @list-header-txt;
font-size: 14px;
font-weight: bold;
white-space: nowrap;
width: calc(100%-18px);
word-break: break-word;
}
.Modal-exitHolder{

View File

@ -1,9 +1,5 @@
@import "awx/ui/client/src/shared/branding/colors.default.less";
.Prompt-titleTarget {
word-break: break-word;
}
.Prompt-bodyQuery {
margin-bottom: 20px;
color: @default-interface-txt;