forked from d2iq-archive/marathon-ui
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve display of last failure (#31)
It will allow to hint user if task failure is recent (using red color to indicate there might be something to do), a bit old (using yellow to indicate it might the info they are looking for) or very old (using green color to show it is likely ok despite being a failure). Also precise some field naming Change-Id: I66e827d1a3796de6af658c55a9231c8fdf659126
- Loading branch information
1 parent
d89e360
commit 4b2f436
Showing
4 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.timestamp-color { | ||
&.veryold { | ||
color: @timestamp-color-veryold; | ||
} | ||
|
||
&.old { | ||
color: @timestamp-color-old; | ||
} | ||
|
||
&.recent { | ||
color: @timestamp-color-recent; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters