]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/html/edgebar
removing old opac images and css
[Evergreen.git] / Open-ILS / src / templates / html / edgebar
1 [%# html/edgebar: a single row table with an edged outline
2   # ARGS: 
3   #     edge        # edge colour (default: black, '#000000')
4   #     fill        # fill colour (default: white, '#ffffff')
5   #     border      # border width (default: 2)
6   #     content     # bar content
7   #     + other args as per html/bar
8 -%]
9 [% DEFAULT
10      edge   = '#000000'
11      fill   = '#ffffff'
12      border = 2 
13 -%]
14 [% WRAPPER html/box
15      col   = edge
16      pad   = border
17     border = 0
18      space = 0 ;
19    inwidth = width ? '100%' : '' ;
20    WRAPPER html/bar
21      col   = fill 
22      space = 0 
23     border = 0
24      width = inwidth ;
25    content ;
26    END ;
27    END
28 %]