[jboss-cvs] jboss-seam/examples/wiki/view/themes/default/css ...

Christian Bauer christian at hibernate.org
Tue Jun 12 08:30:06 EDT 2007


  User: cbauer  
  Date: 07/06/12 08:30:06

  Modified:    examples/wiki/view/themes/default/css  template.css
  Log:
  Completed first iteration of search engine
  
  Revision  Changes    Path
  1.30      +60 -5     jboss-seam/examples/wiki/view/themes/default/css/template.css
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: template.css
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/themes/default/css/template.css,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -b -r1.29 -r1.30
  --- template.css	8 May 2007 06:12:06 -0000	1.29
  +++ template.css	12 Jun 2007 12:30:06 -0000	1.30
  @@ -24,9 +24,6 @@
   	margin: 0;
   	padding: 0;
   }
  -label {
  -    color: #000000;
  -}
   input, textarea, select {
   	border: 1px solid #C3BBB6;
       background: #fff url(../img/input.bg.gif) 0 0 no-repeat;
  @@ -402,8 +399,8 @@
   }
   
   .formFields {
  -    padding-top: 10px;
  -    padding-bottom: 10px;
  +    padding-top: 5px;
  +    padding-bottom: 5px;
       background-color: #f5f5f5;
   }
   
  @@ -450,6 +447,15 @@
       background-color: #ffeeee;
   }
   
  +.label {
  +    color: #000000;
  +    font-weight:bold;
  +}
  +
  +.formFields select {
  +    font-size: 95%;
  +}
  +
   /* Directory Browser
   ----------------------------------------------- */
   
  @@ -726,6 +732,9 @@
   }
   
   
  +/* Popups
  +-----------------------------------------------*/
  +
   /* The Window's CSS z-index value is respected (takes priority). If none is supplied,
     the Window's z-index value will be set to 3000 by default (in jqModal.js). You
     can change this value by either;
  @@ -858,3 +867,49 @@
       border-right: 1px solid #C3BBB6;
       background: #f5f5f5; /* declare background color for container to avoid distorted fonts in IE while fading */
   }
  +
  +
  +/* Progress bar
  +----------------------------------------------- */
  +
  +.progressbarContainer {
  +    margin-top: 10px;
  +    margin-bottom: 10px;
  +}
  +
  +.progressbar {
  +    border: 1px solid #C3BBB6;
  +    width: 100px;
  +    height: 15px;
  +    position: relative;
  +    color: black;
  +}
  +
  +/* color bar */
  +.progressbar div.progress {
  +    position: absolute;
  +    width: 0;
  +    height: 100%;
  +    overflow: hidden;
  +    background-color: #962325;
  +}
  +
  +/* text on bar */
  +.progressbar div.progress .text {
  +    position: absolute;
  +    text-align: center;
  +    color: white;
  +}
  +
  +/* text off bar */
  +.progressbar div.text {
  +    position: absolute;
  +    width: 100%;
  +    height: 100%;
  +    text-align: center;
  +}
  +
  +.progressbarLabel {
  +    font-weight: bold;
  +    font-size: 85%;
  +}
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list