|
From: Sergio A. K. <ser...@ho...> - 2002-02-21 14:44:03
|
here is a css a little more complete... (but not complete in any way) now, sql-ledger should include the stylesheet on every page... /sergio ----- Original Message ----- From: "Dieter Simader" <dsi...@sq...> > Well, I guess we found a volunteer to write a new stylesheet. Thanks, > Sergio! You just let me know which markup tags should be added / changed > and I'll adjust the code. > > > Dieter Simader http://www.sql-ledger.org (780) 472-8161 > DWS Systems Inc. Accounting Software Fax: 478-5281 > =========== On a clear disk you can seek forever =========== > > On Tue, 19 Feb 2002, Sergio A. Kessler wrote: > > > actually, you can use the print button of your browser, > > but you don't want the form's buttons to print right ? > > > > the easy solution for this is to use css to define a > > non printable class, like this: > > > > @media print { > > .noprint { /* items with this class won't print */ > > display: none; > > } > > } > > > > then you modify the source to include > > <div class=noprint> > > ..... <form's buttons> ..... > > </div> > > > > hey, you even can define things that don't > > display on screen but print > > > > @media screen { > > .noscreen { /* items with this class won't display */ > > display: none; > > } > > } > > > > it would be good for sql-ledger to use more css... > > > > /sergio > > > > ----- Original Message ----- > > From: "Jeff Strope" <js...@en...> > > > > > > > I'm pretty sure this has been covered in the past, but I just want to make > > > sure. > > > > > > The "Print Invoice" & "Print Order" (etc) form buttons do not actually > > send > > > documents to printers installed on the server, correct? > > > > > > NOTICE: When replying, please Reply to the list address. This way other members know if the issues have been resolved or not. Thanks! Your List administrator. > > > > > > > NOTICE: When replying, please Reply to the list address. This way other members know if the issues have been resolved or not. Thanks! Your List administrator. > > |