Changeset 1428


Ignore:
Timestamp:
09/21/09 14:42:01 (15 years ago)
Author:
rufino
Message:

Ticket #442 - Criado o plugin smarty {wf_autocomplete_input} que implementa uma listagem type ahead.

Location:
trunk/workflow
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/templates/default/css/lightbox.css

    r795 r1428  
    1818        width:600px; 
    1919        min-height:50px; 
    20         max-height:400px; 
     20        max-height:600px; 
    2121        height:auto !important; 
    22         height:400px; 
     22        height:600px; 
    2323        margin:-220px 0 0 -300px; 
    2424        border:1px solid #000000; 
     
    2828        overflow: auto; 
    2929        padding: 5px; 
    30         height: expression(this.scrollHeight > 400 ? "400px" : "auto");/* solução para o problema de altura minima no IE */ 
     30        height: expression(this.scrollHeight > 600 ? "600px" : "auto");/* solução para o problema de altura minima no IE */ 
    3131} 
    3232 
  • trunk/workflow/templates/default/processes/default.css

    r1144 r1428  
    730730    vertical-align: middle; 
    731731} 
     732 
     733div.autocomplete { 
     734    margin:0px; 
     735    padding:0px; 
     736    width:355px; 
     737    background:#fff; 
     738    border:1px solid #888; 
     739    position:absolute; 
     740} 
     741 
     742div.autocomplete ul { 
     743    margin:0px; 
     744    padding:0px; 
     745    list-style-type:none; 
     746} 
     747 
     748div.autocomplete ul li.selected { 
     749    background-color:#ffb; 
     750} 
     751 
     752div.autocomplete ul li { 
     753    margin:0; 
     754    padding:2px; 
     755    height:16px; 
     756    display:block; 
     757    list-style-type:none; 
     758    cursor:pointer; 
     759} 
     760 
     761.span_message_notice, .span_message_success, .span_message_error { 
     762    font-weight: bold; 
     763    font-size: 90%; 
     764    padding: 1px 6px; 
     765    -moz-border-radius: 3px; 
     766    -webkit-border-radius: 3px; 
     767    border-radius: 3px; 
     768    margin-left: 5px; 
     769    background:#FFF6BF; 
     770    color:#514721; 
     771    border: 1px solid #FFD324; 
     772    opacity: 100; 
     773} 
     774 
     775.span_message_success { 
     776    background:#E6EFC2 !important; 
     777    color:#264409 !important; 
     778    border-color:#C6D880 !important; 
     779} 
     780 
     781.span_message_error { 
     782    background:#FBE3E4 !important; 
     783    color:#8A1F11 !important; 
     784    border-color:#FBC2C4 !important; 
     785} 
Note: See TracChangeset for help on using the changeset viewer.