Fix for an extra line at the end of the variable listing

Once again, fix the issue where some color cells aren't clickable
This commit is contained in:
ridiculousfish 2012-04-01 01:31:38 -07:00
parent 51ed3fbc4b
commit 37defa739b
2 changed files with 7 additions and 6 deletions

View file

@ -199,9 +199,10 @@ body {
}
.colorpicker_target {
margin: 0px;
height: 50px;
margin-bottom: -50px;
margin: 0 0 -50px 0;
position: relative;
bottom: 47px;
float: left; /* for some reason this makes the cells that it overlaps (before adjusting its bottom) clickable in Safari */
}
.colorpicker_target_tab {
@ -217,8 +218,6 @@ body {
margin-right: -2px;
min-width: 110px;
text-align: center;
position: relative;
bottom: 47px;
}
.colorpicker_target_selected {

View file

@ -160,7 +160,9 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
# Use \x1e ("record separator") to distinguish between history items. The first
# backslash is so Python passes one backslash to fish
out, err = run_fish_cmd('for val in $history; echo -n $val \\x1e; end')
return out.split('\x1e')
result = out.split('\x1e')
if result: result.pop()
return result
def do_get_color_for_variable(self, name):