mirror of
https://github.com/ansible/awx.git
synced 2026-02-17 03:00:04 -03:30
Added sample angularjs page to be served by Django, updated admin styles.
This commit is contained in:
@@ -6,6 +6,94 @@
|
||||
|
||||
{% block extrastyle %}
|
||||
{{ block.super }}
|
||||
<link href="{{ STATIC_URL }}favicon.ico" rel="shortcut icon" />
|
||||
<style type="text/css">
|
||||
/* Heading and button background colors. */
|
||||
#header
|
||||
{
|
||||
background: #1778C3 !important;
|
||||
}
|
||||
.module h2,
|
||||
#content-related .module h2,
|
||||
.module caption,
|
||||
.inline-group h2,
|
||||
.button.default,
|
||||
input[type="submit"].default,
|
||||
.submit-row input.default
|
||||
{
|
||||
background: #2773ae !important;
|
||||
}
|
||||
body
|
||||
{
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/* Heading and button foreground colors. */
|
||||
#branding h1
|
||||
{
|
||||
color: white !important;
|
||||
}
|
||||
.module h2,
|
||||
#content-related .module h2,
|
||||
.module caption,
|
||||
.inline-group h2,
|
||||
a.section,
|
||||
a.section:link,
|
||||
a.section:visited,
|
||||
a.section:hover,
|
||||
.button.default,
|
||||
input[type="submit"].default,
|
||||
.submit-row input.default
|
||||
{
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
/* Link color. */
|
||||
a,
|
||||
a:link,
|
||||
a:visited,
|
||||
#changelist-filter a:hover,
|
||||
a:hover
|
||||
{
|
||||
color: #2773ae;
|
||||
}
|
||||
|
||||
/* Button border color. */
|
||||
.button.default,
|
||||
input[type="submit"].default,
|
||||
.submit-row input.default,
|
||||
.selector h2
|
||||
{
|
||||
border-color: #074979 !important;
|
||||
}
|
||||
#header {
|
||||
color: #ddd;
|
||||
border-bottom: solid 2px #074979;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a.section:hover
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
tr.row1 {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
ul.messagelist li {
|
||||
background-color: #ccddee;
|
||||
}
|
||||
.errornote {
|
||||
border-color: #b22222 !important;
|
||||
color: #b22222 !important;
|
||||
background-color: #fdc !important;
|
||||
}
|
||||
.errorlist li {
|
||||
border-color: #b22222 !important;
|
||||
background-color: #d24242 !important;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block extrahead %}
|
||||
|
||||
Reference in New Issue
Block a user