##// END OF EJS Templates
Base of an as you type conpleter....
Base of an as you type conpleter. when invoking the completer, instead of having to chose/dismiss, you can continue typing, it will filter the result "as you type" and dismiss itself if ther is no match left. As it is now, it's only works with lowercase letters, I need to find a workaroud for this. for example if you type : * P-y-<tab>-S-o-m-e-t-h-i-n-g * it will propose PySide, but will dismiss when 'o' is pressed and pasting Pyso with a lower case 's'

File last commit:

r5323:7ab92dd6
r5507:6b2d9cce
Show More
projectdashboard.css
82 lines | 1.0 KiB | text/css | CssLexer
/**
* Primary styles
*
* Author: IPython Development Team
*/
body {
background-color: white;
/* This makes sure that the body covers the entire window and needs to
be in a different element than the display: box in wrapper below */
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
overflow: auto;
}
#left_panel {
}
#drop_zone {
height: 200px;
width: 200px
}
#content_panel {
width: 600px;
}
#content_toolbar {
padding: 5px;
height: 25px;
line-height: 25px;
}
#header_border {
width: 100%;
height: 2px;
}
#app_hbox {
width: 100%;
}
#drag_info {
float: left;
}
#notebooks_buttons {
float: right;
}
#project_name {
height: 25px;
line-height: 25px;
padding: 3px;
}
.notebook_item {
height: 25px;
line-height: 25px;
padding: 3px;
}
.notebook_item a {
text-decoration: none;
}
.item_buttons {
float: right;
}
.item_buttons .upload_button {
color: darkred;
}
.highlight_text {
color: blue;
}