Diff for /scripts/pgallery/src/libpgallery.sh between versions 1.2 and 1.3

version 1.2, 2012/08/31 14:26:58 version 1.3, 2012/08/31 15:52:10
Line 5 Line 5
 # can do whatever you want with this stuff. If we meet some day, and you think  # can do whatever you want with this stuff. If we meet some day, and you think
 # this stuff is worth it, you can buy me a beer in return Aron Schlesinger  # this stuff is worth it, you can buy me a beer in return Aron Schlesinger
 #  #
# $Paefchen: scripts/pgallery/src/libpgallery.sh,v 1.1 2012/08/31 12:33:07 as Exp $# $Paefchen: scripts/pgallery/src/libpgallery.sh,v 1.2 2012/08/31 14:26:58 as Exp $
 #  #
   
 BIN_CONVERT="/usr/local/bin/convert"  BIN_CONVERT="/usr/local/bin/convert"
Line 132  div.tn div.t { Line 132  div.tn div.t {
         line-height: 18px;          line-height: 18px;
 }  }
 body > div.t {  body > div.t {
         font-size: 120%;  
         font-weight: bold;          font-weight: bold;
         position: relative;          position: relative;
         bottom: 10px;          bottom: 10px;
Line 140  body > div.t { Line 139  body > div.t {
         border-width: 0 0 1px 0;          border-width: 0 0 1px 0;
         border-color: gray;          border-color: gray;
         border-style: solid;          border-style: solid;
           box-shadow: 1px 1px 2px #000000;
           margin-bottom: -6px;
 }  }
   body > div.t div.center {
           position: absolute;
           text-align: center;
           top: 0px;
           padding: 6px;
           width: 100%;
   }
 div.tn a {  div.tn a {
         position: relative;          position: relative;
         display: inline-block;          display: inline-block;
Line 245  div.nav { Line 253  div.nav {
         width: ${ARG_BIGSIZE}px;          width: ${ARG_BIGSIZE}px;
         height: 20px;          height: 20px;
 }  }
div.nav a {a {
         color: #FFF;          color: #FFF;
         text-decoration: none;          text-decoration: none;
 }  }
div.nav a:hover {a:hover {
         text-decoration: underline;          text-decoration: underline;
 }  }
 div.nav div.top {  div.nav div.top {
Line 376  HTML Line 384  HTML
 html_title()  html_title()
 {  {
         left="$1"          left="$1"
        right="$2"        center="$2"
         right="$3"
         cat <<HTML          cat <<HTML
 <div class="t">  <div class="t">
         <div class="left">$left</div>          <div class="left">$left</div>
         <div class="right">$right</div>          <div class="right">$right</div>
           <div class="center">$center</div>
         <div class="clear"></div>          <div class="clear"></div>
 </div>  </div>
 HTML  HTML

Removed from v.1.2  
changed lines
  Added in v.1.3