mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
fixes
-dont prepend empty option to labels tag selector -inset graph toolbar
This commit is contained in:
parent
a6529dd788
commit
813cc9f447
@ -76,6 +76,7 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
margin-right: 60px;
|
||||
}
|
||||
|
||||
.DashboardGraphs-filterDropdownText,
|
||||
@ -119,24 +120,14 @@
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.DashboardGraphs-periodDropdown{
|
||||
.DashboardGraphs-periodDropdown,
|
||||
.DashboardGraphs-jobTypeDropdown,
|
||||
.DashboardGraphs-statusDropdown {
|
||||
padding-top:5px;
|
||||
}
|
||||
|
||||
.DashboardGraphs-jobTypeDropdown{
|
||||
padding-top:5px;
|
||||
}
|
||||
|
||||
.DashboardGraphs-filterDropdownItems--period {
|
||||
margin-left: -42px;
|
||||
}
|
||||
|
||||
.DashboardGraphs-filterDropdownItems--jobType {
|
||||
margin-left: -95px;
|
||||
}
|
||||
|
||||
.DashboardGraphs-filterDropdownItems--status {
|
||||
margin-left: -96px;
|
||||
.DashboardGraphs-filterDropdownItems {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.DashboardGraphs-statusFilters{
|
||||
@ -184,7 +175,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 540px) {
|
||||
@media only screen and (max-width: 800px) {
|
||||
.DashboardGraphs-graphToolbar {
|
||||
width: 100%;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.DashboardGraphs-filteringDropdowns {
|
||||
float: left;
|
||||
width: 100%;
|
||||
|
||||
@ -56,13 +56,16 @@
|
||||
</div>
|
||||
<div class="DashboardGraphs-filteringDropdowns">
|
||||
<div class="DashboardGraphs-filterLabel">View</div>
|
||||
<div class="DashboardGraphs-periodDropdown">
|
||||
<div class="DashboardGraphs-statusDropdown">
|
||||
<a id="status-dropdown" role="button"
|
||||
data-toggle="dropdown"
|
||||
data-target="#"
|
||||
href="/page.html"
|
||||
class="DashboardGraphs-filterDropdownText">
|
||||
All <i class="fa fa-chevron-down DashboardGraphs-filterIcon"></i>
|
||||
All
|
||||
<i class="fa fa-chevron-down
|
||||
DashboardGraphs-filterIcon">
|
||||
</i>
|
||||
</a>
|
||||
|
||||
<ul class="dropdown-menu DashboardGraphs-filterDropdownItems
|
||||
|
||||
@ -650,7 +650,6 @@ angular.module('Utilities', ['RestServices', 'Utilities', 'sanitizeFilter'])
|
||||
}
|
||||
|
||||
if (addNew) {
|
||||
$(element).prepend("<option></option>");
|
||||
config.tags = true;
|
||||
config.tokenSeparators = [];
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user