Created
August 6, 2009 01:35
-
-
Save ahutchings/163081 to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name Better Hiveminder | |
// @namespace http://gist.github.com/163081 | |
// @include http://*hiveminder.com/* | |
// ==/UserScript== | |
GM_addStyle(<><![CDATA[ | |
body { | |
font-family:"Arial",Helvetica,Helvetica Neue,Verdana,sans-serif; | |
} | |
#region-invite_new_user, #feedback_wrapper, #headers h1.hiveminder, #braindump, | |
#pro-pitch, #quicksearch input[type=submit], .tasklist span.record_locator, | |
h1.title, #greeting, #footer { | |
display:none; | |
} | |
#navigation div.container { | |
background:none; | |
} | |
#navigation .yuimenubar { | |
background:#000; | |
border:0; | |
font-size:1.25em; | |
padding:0 0.5em; | |
} | |
#navigation .yuimenubar .yuimenubaritemlabel { | |
border:0; | |
padding:0.8em 1.2em; | |
} | |
#navigation :link, #navigation :visited { | |
color:#DDD; | |
} | |
#navigation div.yuimenubar li.yuimenubaritem-selected { | |
background-color:#000; | |
} | |
#navigation .yuimenubar .yuimenubaritem-hassubmenu { | |
padding:0; | |
} | |
.yuimenubaritem-hassubmenu { | |
background:none; | |
} | |
.yuimenubaritemlabel-selected, .yuimenuitemlabel-selected { | |
text-decoration:none !important; | |
} | |
#yui-gen1:hover, #yui-gen3:hover, #yui-gen5:hover, #yui-gen7:hover { | |
background-color:#333 !important; | |
} | |
#yui-gen0 a, #yui-gen2 a, #yui-gen4 a, #yui-gen6 a { | |
color:#000 !important; | |
} | |
#yui-gen0 a:hover, #yui-gen2 a:hover, #yui-gen4 a:hover, #yui-gen6 a:hover { | |
color:#FFF !important; | |
} | |
#quicksearch { | |
line-height:2.25em; | |
} | |
#quicksearch input[type=text] { | |
background:#FFF; | |
border-color:#777; | |
} | |
input.text, input.date, input.password, input.combo-text, textarea, select { | |
background:#FFF; | |
} | |
form input.ajaxautocompletes { | |
background:#FFF; | |
} | |
input[type=text] { | |
border-color:#CCC; | |
padding:0.4em; | |
} | |
input.button, button { | |
-moz-border-radius:5px; | |
-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5); | |
border-width:0; | |
border-bottom:1px solid rgba(0, 0, 0, 0.25); | |
background-color:#222222; | |
background-image:url('data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%00%01%00%00%002%08%06%00%00%00%9D%FB%B1%8A%00%00%00%19tEXtSoftware%00Adobe%20ImageReadyq%C9e%3C%00%00%00)IDATx%DAb%FE%FF%FF%BF%03%13%03%03%C3%7F8%C1%80%CAE%23%FE%E1%15%23%93%F5%8F*F%E1w%24%BA%07%01%02%0C%00v-2d%40%F8%2B%A0%00%00%00%00IEND%AEB%60%82') !important; | |
background-repeat:repeat-x !important; | |
background-position:0 0 !important; | |
background-attachment:scroll !important; | |
cursor:pointer; | |
font-family:"Arial",Helvetica,Helvetica Neue,Verdana,sans-serif; | |
font-size:0.9em; | |
font-weight:700; | |
padding:4px 7px !important; | |
text-shadow:0 -1px 1px rgba(0, 0, 0, 0.25); | |
} | |
input.button.cancel, button.cancel { | |
border-width:0 0 1px; | |
} | |
#content { | |
border-color:#E3E3E3; | |
padding-top:1.6em; | |
} | |
.dropshadow_left_wrap1, .dropshadow_left_wrap2, .dropshadow_left_wrap3 { | |
background-image:none; | |
} | |
.tasklist span.tags { | |
background:none; | |
padding-left:0; | |
} | |
.tasklist .metadata a { | |
color:#BBB; | |
} | |
.context_menu li.toplevel .title { | |
font-weight:400; | |
} | |
.context_menu li.toplevel .title a { | |
text-decoration:none; | |
} | |
.context_menu span.expand a { | |
background-color:#F8F8F8; | |
border-color:#EEE; | |
} | |
.tasklist .create, .tasklist .bulk_edit, .tasklist .update { | |
background:#F9F9F9; | |
border:1px solid #E2E2E2; | |
margin:0; | |
padding:1.5em 1em; | |
} | |
#signupplea, div.round { | |
-moz-border-radius:0; | |
} | |
/* @todo provide color gradation */ | |
#htmltagcloud { | |
margin-top:0.6em; | |
} | |
#htmltagcloud a { | |
color:#222; | |
} | |
#tagcloud .links { | |
display:none; | |
} | |
.tagcloud h3 { | |
border-bottom-color:#DDD; | |
} | |
ul.actions li a { | |
font-family:"Arial",Helvetica,Helvetica Neue,Verdana,sans-serif; | |
} | |
]]></>+""); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment