Goodbye Puppet-purple, hello Puppetboard darkblue.

This commit is contained in:
Daniele Sluijters
2014-03-13 13:57:04 +01:00
parent 693763d03d
commit 2329f7735f
5 changed files with 17 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ body {
} }
a { a {
color: #564F8A; color: #2C3E50;
text-decoration: none; text-decoration: none;
} }
@@ -55,3 +55,11 @@ th.tablesorter-headerDesc::after {
.absolute div { .absolute div {
padding: 1em; padding: 1em;
} }
.ui.menu.darkblue {
background-color:#2C3E50;
}
.ui.darkblue.header, i.darkblue {
color:#2C3E50;
}

View File

@@ -32,15 +32,15 @@
</div> </div>
<div class="three column row"> <div class="three column row">
<div class="column"> <div class="column">
<h1 class="ui header purple no-margin-bottom">{{metrics['num_nodes']}}</h1> <h1 class="ui header darkblue no-margin-bottom">{{metrics['num_nodes']}}</h1>
<span>Population</span> <span>Population</span>
</div> </div>
<div class="column"> <div class="column">
<h1 class="ui header purple no-margin-bottom">{{metrics['num_resources']}}</h1> <h1 class="ui header darkblue no-margin-bottom">{{metrics['num_resources']}}</h1>
<span>Resources managed</span> <span>Resources managed</span>
</div> </div>
<div class="column"> <div class="column">
<h1 class="ui header purple no-margin-bottom">{{metrics['avg_resources_node']}}</h1> <h1 class="ui header darkblue no-margin-bottom">{{metrics['avg_resources_node']}}</h1>
<span>Avg. resources/node</span> <span>Avg. resources/node</span>
</div> </div>
</div> </div>
@@ -86,7 +86,7 @@
</td> </td>
<td> <td>
<a title="Latest Report" href="{{url_for('report_latest', node_name=node.name)}}"> <a title="Latest Report" href="{{url_for('report_latest', node_name=node.name)}}">
<i class="large tasks purple icon"></i> <i class="large tasks darkblue icon"></i>
</a> </a>
</td> </td>
</tr> </tr>

View File

@@ -10,7 +10,7 @@
</head> </head>
<body> <body>
<nav class="ui fixed purple inverted menu"> <nav class="ui fixed darkblue inverted menu">
<div class="title item"> <div class="title item">
Puppetboard Puppetboard
</div> </div>

View File

@@ -46,8 +46,8 @@
</td> </td>
<td> <td>
{% if node.report_timestamp %} {% if node.report_timestamp %}
<a title='Reports' href="{{url_for('reports_node', node=node.name)}}"><i class='large purple book icon'></i></a> <a title='Reports' href="{{url_for('reports_node', node=node.name)}}"><i class='large darkblue book icon'></i></a>
<i class='large purple trash icon'></i> <i class='large darkblue trash icon'></i>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>

View File

@@ -27,7 +27,7 @@
{% endfor %} {% endfor %}
</div> </div>
{{ form.hidden_tag() }} {{ form.hidden_tag() }}
<input type=submit class="ui purple submit button" value='Submit'> <input type=submit class="ui submit button" value='Submit'>
<input type=reset class="ui red submit button" value='Cancel'> <input type=reset class="ui red submit button" value='Cancel'>
</form> </form>
</div> </div>