Skip to content

Commit

Permalink
SOLR-8149: Admin UI - Plugins / Stats - active item is now highlighted
Browse files Browse the repository at this point in the history
  • Loading branch information
janhoy committed May 8, 2017
1 parent 34c6c99 commit 37df644
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions solr/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ Bug Fixes
After core container shutdown or severe initialization problem Solr responds with
http stauts 404 Not Found instead of 500 as it was before (Mikhail Khludnev)

* SOLR-8149: Admin UI - Plugins / Stats - active item is now highlighted (Labuzov Dmitriy via janhoy)

Other Changes
----------------------

Expand Down
6 changes: 6 additions & 0 deletions solr/webapp/web/css/angular/plugins.css
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,12 @@ limitations under the License.
background-color:#F0F3FF;
}

#content #plugins .active a
{
background-color: #d0d0d0;
border-color: #d0d0d0;
}

#recording #blockUI
{
position: absolute;
Expand Down
6 changes: 3 additions & 3 deletions solr/webapp/web/partials/plugins.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
<div id="navigation" class="clearfix">

<ul>
<li ng-repeat="type in types" class="{{type.lower}}">
<a ng-click="selectPluginType(type)" rel="{{type.name}}">{{type.name}}
<span ng-show="type.changes">{{type.changes}}</span>
<li ng-repeat="typeObj in types" class="{{typeObj.lower}}" ng-class="{active:typeObj==type}">
<a ng-click="selectPluginType(typeObj)" rel="{{typeObj.name}}">{{typeObj.name}}
<span ng-show="typeObj.changes">{{typeObj.changes}}</span>
</a>
</li>
<li class="PLUGINCHANGES"><a ng-click="startRecording()">Watch Changes</a></li>
Expand Down

0 comments on commit 37df644

Please sign in to comment.