Repository: aurora Updated Branches: refs/heads/master 9f796ffbc -> 14f867cde
Give the task status expand icon a pointer cursor to make it clear that it's clickable. Reviewed at https://reviews.apache.org/r/43784/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/14f867cd Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/14f867cd Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/14f867cd Branch: refs/heads/master Commit: 14f867cdea259af6329ac482fb1fd30368ddc49e Parents: 9f796ff Author: Joshua Cohen <[email protected]> Authored: Mon Feb 22 13:40:14 2016 -0600 Committer: Joshua Cohen <[email protected]> Committed: Mon Feb 22 13:40:14 2016 -0600 ---------------------------------------------------------------------- src/main/resources/scheduler/assets/css/app.css | 4 ++++ src/main/resources/scheduler/assets/taskStatus.html | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/14f867cd/src/main/resources/scheduler/assets/css/app.css ---------------------------------------------------------------------- diff --git a/src/main/resources/scheduler/assets/css/app.css b/src/main/resources/scheduler/assets/css/app.css index a1e2fbf..67a0ac5 100644 --- a/src/main/resources/scheduler/assets/css/app.css +++ b/src/main/resources/scheduler/assets/css/app.css @@ -466,4 +466,8 @@ li.instance-rolled-back { span.loading { -webkit-animation: spin 1.1s infinite linear; animation: spin 1.1s infinite linear; +} + +.clickable { + cursor: pointer } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/aurora/blob/14f867cd/src/main/resources/scheduler/assets/taskStatus.html ---------------------------------------------------------------------- diff --git a/src/main/resources/scheduler/assets/taskStatus.html b/src/main/resources/scheduler/assets/taskStatus.html index 821783a..d2729a9 100644 --- a/src/main/resources/scheduler/assets/taskStatus.html +++ b/src/main/resources/scheduler/assets/taskStatus.html @@ -15,10 +15,10 @@ <div> <span title='{{formatedValue | scheduleStatusTooltip}}'> <span ng-if='!showDetails'> - <i class='glyphicon glyphicon-plus' ng-click="toggleShowDetails()"></i> + <i class='glyphicon glyphicon-plus clickable' ng-click="toggleShowDetails()"></i> </span> <span ng-if='showDetails'> - <i class='glyphicon glyphicon-minus' ng-click="toggleShowDetails()"></i> + <i class='glyphicon glyphicon-minus clickable' ng-click="toggleShowDetails()"></i> </span> <span> {{dataRow.latestActivity | toElapsedTime}} ago -
