SOLR-8149: Admin UI - Plugins / Stats - active item is now highlighted

This commit is contained in:
Jan Høydahl 2017-05-08 10:48:20 +02:00
parent 34c6c9956d
commit 37df64450e
3 changed files with 11 additions and 3 deletions

View File

@ -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
----------------------

View File

@ -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;

View File

@ -48,9 +48,9 @@ limitations under the License.
<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>