Last active
December 16, 2015 06:59
-
-
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
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
/* 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