Created
February 27, 2019 04:42
-
-
Save thewebsitetherapist/72d6d31aa4f5f7f2882c02933028052a to your computer and use it in GitHub Desktop.
Make Accelo at home in a fluid.app - also useful on Chrome
This file contains hidden or 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
/* I find I can't distinguish bold from regular text in Accelo, | |
* so this helps emphasise that important difference. | |
* Especially handy in editing projects. | |
* I use this in Stylebot in chrome and in user styles in the fluid app. | |
*/ | |
.mileStoneRow td, .mileStoneRow td input, .jobRow td, .jobRow td input, .milestoneRow td, .milestoneRow td input { | |
color: #000; | |
font-weight: bold; | |
} | |
.taskRow td, .taskRow td input { | |
color: #444; | |
font-weight: lighter; | |
} | |
div { | |
font-weight: lighter; | |
} | |
This file contains hidden or 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 sets the username & password fields in my fluid app so I can log in easier. | |
// It's configured as a UserScript for *.myaccount.accelo.com* | |
function setLoginInfo() { | |
var u = document.getElementById('username'); | |
if (u) { | |
u.value = '[email protected]'; | |
} | |
var p = document.getElementById('password'); | |
if (p) { | |
p.value = 'MY_PASSWORD'; | |
} | |
} | |
window.addEventListener('load', function() { | |
setLoginInfo(); | |
}, false); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment