102 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /*!
 | |
| * @file
 | |
| * @brief    boxplus: a lightweight pop-up window engine shipped with sigplus
 | |
| * @author   Levente Hunyadi
 | |
| * @version  0.9.2
 | |
| * @remarks  Copyright (C) 2009-2010 Levente Hunyadi
 | |
| * @remarks  Licensed under GNU/GPLv3, see http://www.gnu.org/licenses/gpl-3.0.html
 | |
| * @see      http://hunyadi.info.hu/projects/boxplus
 | |
| */
 | |
| 
 | |
| #boxplus .boxplus-dialog {
 | |
| border:0 none transparent !important;
 | |
| background:transparent none repeat scroll 0 0;  /* override standard background */
 | |
| }
 | |
| 
 | |
| /* dialog frame */
 | |
| #boxplus .boxplus-dialog .boxplus-m {
 | |
| position:absolute;
 | |
| top:20px;
 | |
| bottom:20px;
 | |
| left:20px;
 | |
| right:20px;
 | |
| background:transparent url(darkrounded/pattern.png) repeat scroll 0 0;
 | |
| z-index:-1;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-m.boxplus-hidden {
 | |
| visibility:visible;  /* always show, IE does not support inherit */
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog.boxplus-hidden .boxplus-m.boxplus-hidden {
 | |
| visibility:hidden;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-t,
 | |
| #boxplus .boxplus-dialog .boxplus-b {
 | |
| position:absolute;
 | |
| height:21px;
 | |
| left:21px;
 | |
| right:21px;
 | |
| background:transparent url(darkrounded/pattern.png) repeat-x scroll 0 0;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-t {
 | |
| top:0;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-b {
 | |
| bottom:0;
 | |
| background-position:left bottom;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-l,
 | |
| #boxplus .boxplus-dialog .boxplus-r {
 | |
| position:absolute;
 | |
| width:21px;
 | |
| top:20px;
 | |
| bottom:20px;
 | |
| background:transparent url(darkrounded/pattern.png) repeat-y scroll 0 0;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-l {
 | |
| left:0;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-r {
 | |
| right:0;
 | |
| background-position:right top;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-lt,
 | |
| #boxplus .boxplus-dialog .boxplus-rt,
 | |
| #boxplus .boxplus-dialog .boxplus-lb,
 | |
| #boxplus .boxplus-dialog .boxplus-rb {
 | |
| position:absolute;
 | |
| width:21px;
 | |
| height:20px;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-lt {
 | |
| top:0;
 | |
| left:0;
 | |
| background:transparent url(darkrounded/sprite.png) no-repeat scroll left top;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-rt {
 | |
| top:0;
 | |
| right:0;
 | |
| background:transparent url(darkrounded/sprite.png) no-repeat scroll right top;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-lb {
 | |
| bottom:0;
 | |
| left:0;
 | |
| background:transparent url(darkrounded/sprite.png) no-repeat scroll left bottom;
 | |
| }
 | |
| 
 | |
| #boxplus .boxplus-dialog .boxplus-rb {
 | |
| bottom:0;
 | |
| right:0;
 | |
| background:transparent url(darkrounded/sprite.png) no-repeat scroll right bottom;
 | |
| } |