Last active
December 14, 2015 14:49
-
-
Save samhowat/5103592 to your computer and use it in GitHub Desktop.
Basecamp recently did an update that underlines alot of links in the application. It may be a good usability update, but its a bit frustrating for others like me, who feel like the extra underlines makes the app busier than it needs to be. You can add this to your browsers custom CSS file and when you work in Basecamp these styles will remove th…
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
| /* Basecamp Overrides */ | |
| body div.global_links a, | |
| div.panel.home_tab > nav a > span, | |
| div.panel.home_tab div.project_templates a, | |
| div.sheet.project > header div.tools a, | |
| ul.todolists h3 > a, | |
| div.sheet.project > div.sheet_body section.documents section.documents.grouped_by_date > article > table > tbody > tr > td.text h3.title a { | |
| text-decoration: none !important; | |
| } | |
| div.panel.home_tab > nav a > span, | |
| div.panel.home_tab div.project_templates a { | |
| color: #7d7a75 !important; | |
| } | |
| div.panel.home_tab > nav a:hover > span, | |
| div.panel.home_tab div.project_templates a:hover { | |
| color: #000 !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment