Skip to content

Commit

Permalink
tidied the nav bars a little
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Oct 5, 2013
1 parent 7cdc20f commit b490bb4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
@@ -1,6 +1,5 @@
<div>
<div class="active-profile-titles section-header">
<div class="active-profile-name">Name</div>
<div class="active-profile-filter">
<div class="section-filter">
<input type="text" class="search-query" placeholder="Filter..." ng-model="searchFilter">
Expand All @@ -10,7 +9,7 @@

<div class="section-controls">
<a href="" title="Create a new container" ng-click="createContainer()">
<i class="icon-plus"></i> Create
<i class="icon-plus"></i> Container
</a>
<a href="" ng-click="editRequirements.dialogOpen(null)"
title="Configure the minimum number of required instances for each profile. If you are on OpenShift or using an Auto Scaler they are then created automatically; otherwise click on the count button to manually provision required containers">
Expand Down
7 changes: 5 additions & 2 deletions hawtio-web/src/main/webapp/app/fabric/html/brokers.html
Expand Up @@ -110,13 +110,16 @@
</div>

<div class="section-controls">
<a href="" title="Create a new broker configuration" ng-click="createBroker(null)">
<i class="icon-plus"></i> Broker
</a>
<a href="" title="Create a new container" ng-click="createContainer()">
<i class="icon-plus"></i> Create Container
<i class="icon-plus"></i> Container
</a>
<a href="" ng-click="editRequirements.dialogOpen(null)"
title="Configure the minimum number of required instances for each profile. If you are on OpenShift or using an Auto Scaler they are then created automatically; otherwise click on the count button to manually provision required containers">
<i class="icon-resize-vertical"></i>
Scale
Targets
</a>
</div>
</div>
Expand Down
24 changes: 23 additions & 1 deletion hawtio-web/src/main/webapp/css/site-base.css
Expand Up @@ -1919,7 +1919,7 @@ dd.file-list {

.active-profile-filter {
position: absolute;
left: 80px;
left: 0px;
top: -10px;
}

Expand All @@ -1929,6 +1929,28 @@ dd.file-list {


/** fabric brokers page */
.mq-titles {
position: relative;
display: inline-block;
width: 100%;
height: 40px;
}

.mq-titles.section-header {
padding: 0;
}

.mq-titles .section-controls {
position: absolute;
top: 9px !important;
right: 40px;
}

.mq-titles .section-controls a {
font-weight: normal;
}


.mq-profile-icon {
color: green !important;
}
Expand Down

0 comments on commit b490bb4

Please sign in to comment.