Skip to content

Instantly share code, notes, and snippets.

@dalelane
Last active December 16, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dalelane/5395554 to your computer and use it in GitHub Desktop.
Save dalelane/5395554 to your computer and use it in GitHub Desktop.
Stylish (http://userstyles.org/help/stylish) script to stop Remember The Milk being fixed width, and instead resize to the browser width
/* remove the fixed width from the overall page */
#content {
width : auto;
margin-left: 15px;
margin-right: 15px;
}
/* use proportion instead of pixels to specify size */
/* of main list and the right info boxes */
#listbox {
width : 66%;
}
#detailsbox {
width : 31%;
}
/* remove fixed widths from other page elements */
#details, #detailswrap, #list, .notewidth, #detailsoverflow.has-overflow .notewidth, .taskcloud, .taskcloudbox, #keywrap, #detailsstatuswrap {
width : auto;
}
.noteedittext, #detailsoverflow.has-overflow .notewidth.noteedittext, .noteedittext.notewidth {
width : 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment