mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
minor ui improvement
This commit is contained in:
parent
575467055f
commit
cd4af65490
5 changed files with 13 additions and 20 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 320 KiB After Width: | Height: | Size: 364 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 260 KiB |
|
|
@ -40,11 +40,11 @@ limitations under the License.
|
|||
<th>value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr ng-repeat="(key, value) in configurations" >
|
||||
<tr ng-repeat="key in configurations | sortByKey" >
|
||||
<td>{{key}}</td>
|
||||
<td>
|
||||
<div class="hiding_overflow">
|
||||
{{value}}
|
||||
{{configurations[key]}}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -19,11 +19,11 @@ limitations under the License.
|
|||
Interpreters
|
||||
</h3>
|
||||
<div class="pull-right" style="margin-top:10px;">
|
||||
<span style="cursor:pointer;margin-right:4px;"
|
||||
ng-click="showRepositoryInfo = !showRepositoryInfo"
|
||||
tooltip-placement="bottom" tooltip="Repository information">
|
||||
<i class="fa fa-cog" ng-style="{color: showRepositoryInfo ? '#3071A9' : 'black' }"></i>
|
||||
</span>
|
||||
<button class="btn btn-default btn-sm"
|
||||
ng-click="showRepositoryInfo = !showRepositoryInfo">
|
||||
<i class="fa fa-database" ng-style="{color: showRepositoryInfo ? '#3071A9' : 'black' }"></i>
|
||||
Repository
|
||||
</button>
|
||||
<button class="btn btn-default btn-sm"
|
||||
ng-click="showAddNewSetting = !showAddNewSetting">
|
||||
<i class="fa fa-plus"></i>
|
||||
|
|
|
|||
|
|
@ -41,8 +41,7 @@ limitations under the License.
|
|||
<span
|
||||
ng-switch-when="FINISHED">
|
||||
<i style="color: green; margin-right: 3px;" class="fa fa-circle"
|
||||
ng-click=""
|
||||
tooltip="FINISHED">
|
||||
ng-click="">
|
||||
</i>
|
||||
{{jobStatus}}
|
||||
</span>
|
||||
|
|
@ -50,8 +49,7 @@ limitations under the License.
|
|||
ng-switch-when="RUNNING"
|
||||
style="margin-right: 3px;">
|
||||
<i style="color: blue" class="fa fa-spinner"
|
||||
ng-click=""
|
||||
tooltip="RUNNING">
|
||||
ng-click="">
|
||||
</i>
|
||||
{{jobStatus}}
|
||||
</span>
|
||||
|
|
@ -59,8 +57,7 @@ limitations under the License.
|
|||
ng-switch-when="READY"
|
||||
style="margin-right: 3px;">
|
||||
<i style="color: green" class="fa fa-circle-o"
|
||||
ng-click=""
|
||||
tooltip="READY">
|
||||
ng-click="">
|
||||
</i>
|
||||
{{jobStatus}}
|
||||
</span>
|
||||
|
|
@ -68,9 +65,7 @@ limitations under the License.
|
|||
ng-switch-when="PENDING"
|
||||
style="margin-right: 3px;">
|
||||
<i style="color: gray" class="fa fa-circle"
|
||||
ng-click=""
|
||||
tooltip="PENDING"
|
||||
>
|
||||
ng-click="">
|
||||
</i>
|
||||
{{jobStatus}}
|
||||
</span>
|
||||
|
|
@ -78,8 +73,7 @@ limitations under the License.
|
|||
ng-switch-when="ABORT"
|
||||
style="margin-right: 3px;">
|
||||
<i style="color: orange" class="fa fa-circle"
|
||||
ng-click=""
|
||||
tooltip="ABORT">
|
||||
ng-click="">
|
||||
</i>
|
||||
{{jobStatus}}
|
||||
</span>
|
||||
|
|
@ -87,8 +81,7 @@ limitations under the License.
|
|||
ng-switch-when="ERROR"
|
||||
style="margin-right: 3px;">
|
||||
<i style="color: red" class="fa fa-circle"
|
||||
ng-click=""
|
||||
tooltip="ERROR">
|
||||
ng-click="">
|
||||
</i>
|
||||
{{jobStatus}}
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Reference in a new issue