witten
/
luminotes
Archived
1
0
Fork 0

Width of search text field now set to full width of link area instead of a specific character width.

This commit is contained in:
Dan Helfman 2008-04-04 08:18:54 +00:00
parent 20d5e4a651
commit 7ba963090c
2 changed files with 2 additions and 1 deletions

View File

@ -274,6 +274,7 @@ img {
#search_text {
padding: 0.25em;
border: #999999 1px solid;
width: 100%;
}
#notebook_header_area {

View File

@ -7,6 +7,6 @@ class Search_form( Form ):
Form.__init__(
self,
Input( type = u"text", name = u"search_text", id = u"search_text", size = 20, maxlength = 512, value = "search" ),
Input( type = u"text", name = u"search_text", id = u"search_text", maxlength = 512, value = "search" ),
id = u"search_form",
)