Happy2Play 7763 Posted November 13, 2019 Share Posted November 13, 2019 /*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; } 2 Link to comment Share on other sites More sharing options...
riothamus 51 Posted November 14, 2019 Share Posted November 14, 2019 Very slick, thank you for this! Link to comment Share on other sites More sharing options...
KickVanelli 5 Posted November 19, 2019 Share Posted November 19, 2019 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 More sharing options...
Happy2Play 7763 Posted November 19, 2019 Author Share Posted November 19, 2019 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 More sharing options...
KickVanelli 5 Posted November 20, 2019 Share Posted November 20, 2019 It's OK now. Thanks Happy2Play Link to comment Share on other sites More sharing options...
Happy2Play 7763 Posted November 14, 2020 Author Share Posted November 14, 2020 (edited) 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; } } Edited November 14, 2020 by Happy2Play Link to comment Share on other sites More sharing options...
Soldize 32 Posted October 18, 2022 Share Posted October 18, 2022 How can i translate the Words "missing" and "Unaired" ?? is it possible in css?? best regards Link to comment Share on other sites More sharing options...
Happy2Play 7763 Posted October 18, 2022 Author Share Posted October 18, 2022 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 More sharing options...
Soldize 32 Posted October 19, 2022 Share Posted October 19, 2022 big thanks Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now