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