Jump to content

Restart and Running tasks


Happy2Play

Recommended Posts

Happy2Play

5dcc6968404b4_Restart.gif

 

5dcc697b9d4c0_Runningtask.gif

/*Dashboard Restart Notification Bell*/
#dashboardPage div.infoBanner.restartInfoBanner.flex.align-items-center i {
color: red;
 
	-webkit-animation: flash linear 1s infinite;
	animation: flash linear 1s infinite;
}
@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}

/*Scheduled Task Running*/
div.scheduledTaskPaperIconItem[data-status="Running"] i.listItemIcon.md-icon {
        background-color: red; 
 	-webkit-animation: flash linear 1s infinite;
	animation: flash linear 1s infinite; }
  • Like 2
Link to comment
Share on other sites

KickVanelli

Hi Happy2Play,

 

I like it very much but it doesn't work for me.

I see no difference (I'm running 4.3.0.23).

Link to comment
Share on other sites

Happy2Play

Hi Happy2Play,

 

I like it very much but it doesn't work for me.

I see no difference (I'm running 4.3.0.23).

That is what I am running on.  This usually means you have broken code somewhere.

Link to comment
Share on other sites

  • 11 months later...
Happy2Play

Add Missing and Unaired indicators and color change on unaired

Complete code if you only want this, you can drop the @-webkit-keyframes flash and @keyframes flash if you already have it.

/*Missing and Unaired indicators*/
div.undefinedmissingIndicator {color: red;}
div.undefinedunairedIndicator {color: orange;}
div.unairedIndicator {
    background: orange;
}
div.missingIndicator, div.unairedIndicator {
    -webkit-animation: flash linear 1s infinite;
    animation: flash linear 1s infinite;
}
@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}

Missing.thumb.gif.586abc4dd91ed7135dc3a556a626d628.gif

future.thumb.jpg.946bda55b06897c5e3a77eb0f5b4e220.jpg

Edited by Happy2Play
Link to comment
Share on other sites

  • 1 year later...
Happy2Play
1 hour ago, Soldize said:

How can i translate the Words "missing" and "Unaired" ??

is it possible in css??

 

best regards

You mean something like this?

/*Chang Unaired text*/
div.undefinedunairedIndicator, div.unairedIndicator {
	text-indent: -9999px;
	line-height: 0;
}

div.undefinedunairedIndicator:after, div.unairedIndicator:after {
	content: "Future";
	text-indent: 0;
	display: block;
	line-height: initial;
}

Same for div.undefinedmissingIndicator, div.missingIndicator.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...