mirror of
https://github.com/apache/lucene.git
synced 2025-02-22 18:27:21 +00:00
SOLR-8149: Admin UI - Plugins / Stats - active item is now highlighted
This commit is contained in:
parent
34c6c9956d
commit
37df64450e
@ -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
|
||||
----------------------
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user