diff --git a/src/style/main.css b/src/style/main.css index d142cc40..79cb0d4b 100644 --- a/src/style/main.css +++ b/src/style/main.css @@ -267,7 +267,11 @@ p.commandLine span.prompt { #commandLineHistory { margin: 10px; border-radius: 5px; + /* + UGHHHh the box shadow looks SO much better, but causes an extra 12ms in the paint update + when typing in the box. sadness. i will remove for perf, maybe add back in later. box-shadow: 0 0 16px rgba(0, 0, 0, 0.5); + */ } #prompt { @@ -281,11 +285,6 @@ p.commandLine span.prompt { } #prompt span.cursor { - /* - ARGHHHhh why does this cause reflows / scrolls!?!?!? wtf - -webkit-animation-name: blink; - -webkit-animation-duration: 1s; - -webkit-animation-iteration-count: 99999; */ background: #DDD; position: relative; opacity: 0; diff --git a/todo.txt b/todo.txt index 72dc3356..2c53066c 100644 --- a/todo.txt +++ b/todo.txt @@ -36,8 +36,5 @@ Bugs to fix: - When you are rebasing and you hit the bottom, all the nodes go in the wrong spot... We need some kind of "update everything but this set of nodes" thing... -- cannot checkout commits with dashes - always grab the maxHeight -- debug why typing takes so long with the profiler -