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

Christian Bauer christian at hibernate.org
Fri May 4 08:35:29 EDT 2007


  User: cbauer  
  Date: 07/05/04 08:35:29

  Modified:    examples/wiki/view/themes/default/css  template.css
  Log:
  Switched to much nicer jQuery modal dialogs
  
  Revision  Changes    Path
  1.26      +58 -1     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.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- template.css	3 May 2007 14:10:48 -0000	1.25
  +++ template.css	4 May 2007 12:35:29 -0000	1.26
  @@ -734,7 +734,64 @@
   #contentTextEditResizeHandle {
       width: 25px;
       height: 10px;
  -    background: #bbb url(../img/icon.textareasize.gif) 0 0 no-repeat;
  +    background: #bbb url(../img/icon.resize_s.gif) 0 0 no-repeat;
       cursor: s-resize;
       position: absolute;
   }
  +
  +
  +/* 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;
  +    a) supplying one via CSS
  +    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
  +
  +.popupDialog {
  +    display: none;
  +    position: absolute;
  +    background-color: #fff;
  +    border: 1px solid #C3BBB6;
  +}
  +
  +.popupDialogHead {
  +    text-align: left;
  +    background: #fff url(../img/th.bg.gif) 0 0 repeat-x;
  +    font-size: 85%;
  +    font-weight: bold;
  +    color: #555;
  +    padding-left: 13px;
  +    padding-right: 10px;
  +    padding-top: 5px;
  +    padding-bottom: 5px;
  +    cursor: move;
  +}
  +
  +.popupDialogContent {
  +    padding: 10px;
  +}
  +
  +.popupDialogControls {
  +    text-align: center;
  +}
  +
  +.popupDialogResizeHandle {
  +    width: 15px;
  +    height: 15px;
  +    background: #fff url(../img/icon.resize_se.gif) 0 0 no-repeat;
  +    cursor: se-resize;
  +    position: absolute;
  +    bottom: 0;
  +    right: 0;
  +}
  +
  +.jqmOverlay { background-color: #aaa; }
  +
  +/* Fixed posistioning emulation for IE6
  +     Star selector used to hide definition from browsers other than IE6
  +     For valid CSS, use a conditional include instead */
  +/* Not active right now, activate when working on IE6 support
  +* html .popupDialog {
  +     position: absolute;
  +     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
  +}
  +*/
  
  
  



More information about the jboss-cvs-commits mailing list