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

fix for the small viewport issue (https://www.dropbox.com/s/dmf4aixfv7k67cm/Screenshot%202014-01-29%2015.19.52.png) where group name div gets pushed to a new line.

This commit is contained in:
Chris Houseknecht 2014-01-29 18:19:13 -05:00
parent 9d8c124817
commit 82aa0ac85d

View File

@ -1442,35 +1442,15 @@ tr td button i {
@media (min-width: 768px) and (max-width: 1199px) { @media (min-width: 768px) and (max-width: 1199px) {
.list-actions button, .list-actions .checkbox-inline { .list-actions button, .list-actions .checkbox-inline {
margin-top: 10px; margin-top: 10px;
} }
/*.tree-form-container {
padding-left: 15px;
padding-right: 15px;
}
.tree-view-container .col-lg-4 {
padding-right: 15px;
}
.tree-controls .btn-container {
padding-left: 15px;
}
#tree-view {
margin-left: 0;
margin-top: 10px;
overflow: hidden;
}
#tree-form {
margin-top: 10px;
}*/
.label-text { .label-text {
text-align: left; text-align: left;
}
.group-name {
width: 80%;
} }
} }
@ -1486,43 +1466,34 @@ tr td button i {
.level-2, .level-2,
.level-3, .level-3,
.level-3-detail { .level-3-detail {
padding-left: 0; padding-left: 0;
} }
table { table {
word-wrap: break-word; word-wrap: break-word;
table-layout: fixed; table-layout: fixed;
} }
th.actions-column, th.actions-column,
td.actions { td.actions {
white-space: normal; white-space: normal;
} }
td.actions .btn { td.actions .btn {
width: 75px; width: 75px;
margin-bottom: 5px; margin-bottom: 5px;
} }
.list-actions button, .list-actions .checkbox-inline { .list-actions button, .list-actions .checkbox-inline {
margin-top: 10px; margin-top: 10px;
} }
.tree-form-container { .group-name {
padding-left: 15px; width: 80%;
padding-right: 15px;
}
.tree-view-container .col-lg-4 {
padding-right: 15px;
}
.tree-controls .btn-container {
padding-left: 15px;
} }
.label-text { .label-text {
text-align: left; text-align: left;
} }
} }