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

Breadcrumb drop-down icon to 12px

This commit is contained in:
chouseknecht 2013-09-21 00:37:06 -04:00
parent daebe4b3ef
commit f2eb9ff343
3 changed files with 6 additions and 2 deletions

View File

@ -458,6 +458,10 @@ legend {
color: @grey;
}
.crumb-icon {
font-size: 12px;
}
}
}

View File

@ -861,7 +861,7 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
if (navigation[itm].active) {
html += "<a href=\"\" class=\"toggle\" ";
html += "data-toggle=\"dropdown\" ";
html += ">" + navigation[itm].label + " <i class=\"icon-chevron-sign-down\"></i></a>";
html += ">" + navigation[itm].label + " <i class=\"icon-chevron-sign-down crumb-icon\"></i></a>";
break;
}
}

View File

@ -115,7 +115,7 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
if (navigation[itm].active) {
html += "<a href=\"\" class=\"toggle\" ";
html += "data-toggle=\"dropdown\" ";
html += ">" + navigation[itm].label + " <i class=\"icon-chevron-sign-down\"></i></a>";
html += ">" + navigation[itm].label + " <i class=\"icon-chevron-sign-down crumb-icon\"></i></a>";
break;
}
}