Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
limitations under the License.
-->

<div id="{{paragraph.id}}_runControl" class="runControl" ng-show="paragraph.status=='RUNNING'">
<div id="{{paragraph.id}}_progress" class="progress">
<div id="{{paragraph.id}}_runControl" class="runControl">
<div id="{{paragraph.id}}_progress" class="progress" ng-show="paragraph.status=='RUNNING'">
<div ng-if="getProgress()>0 && getProgress()<100 && paragraph.status=='RUNNING'"
class="progress-bar" role="progressbar" style="width:{{getProgress()}}%;"></div>
<div ng-if="(getProgress()<=0 || getProgress()>=100) && (paragraph.status=='RUNNING' )"
Expand Down
3 changes: 2 additions & 1 deletion zeppelin-web/src/app/notebook/paragraph/paragraph.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
font-size: 1px;
color: #AAAAAA;
height:4px;
margin: 0px 0px 3px 0px;
margin: 0px 0px 0px 0px;
}

.paragraph .runControl .progress {
Expand Down Expand Up @@ -297,6 +297,7 @@
*/

.tableDisplay {
margin-top: 2px;
}

.tableDisplay div {
Expand Down