1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/* need this one for Mozilla */
HTML {
margin:0px;
padding:0px;
}
body{
font-family: Arial;
}
#titleText {
font-weight:bold;
color:WindowText;
}
.printAlertDiv {
width:400px;
border:1px solid ThreeDShadow;
background:button;
}
.caption {
background:ActiveCaption;
color:CaptionText;
height: 30px;
}
.message, .button {
background:ButtonFace;
color:ButtonText;
font-size: 12px;
}
.button a {
display:block;
margin-left:2px;
margin-right:2px;
width:18px;
height:18px;
border:1px solid ButtonFace;
writing-mode:tb-rl;
vertical-align:middle;
}
.button a:hover {
border-top:1px solid ButtonHighlight;
border-left:1px solid ButtonHighlight;
border-right:1px solid ButtonShadow;
border-bottom:1px solid ButtonShadow;
}
|