# HG changeset patch # User Edho Arief # Date 1353173388 -25200 # Node ID f390e3903d3c6544bd6a316e919ae69b2ec13115 # Parent b56ad3caed6d20d49b3bce4eae6477d228ff5c5e Limit box-sizing border-box to paste_paste. Kinda break bootstrap otherwise. diff -r b56ad3caed6d -r f390e3903d3c app/assets/stylesheets/box.css --- a/app/assets/stylesheets/box.css Sat Nov 17 13:03:09 2012 +0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -* { - -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ - -moz-box-sizing: border-box; /* Firefox, other Gecko */ - box-sizing: border-box; /* Opera/IE 8+ */ -} diff -r b56ad3caed6d -r f390e3903d3c app/assets/stylesheets/pastes.css --- a/app/assets/stylesheets/pastes.css Sat Nov 17 13:03:09 2012 +0700 +++ b/app/assets/stylesheets/pastes.css Sun Nov 18 00:29:48 2012 +0700 @@ -1,4 +1,7 @@ textarea#paste_paste, .mirrored_text { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; resize: none; + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ }