summaryrefslogtreecommitdiff
path: root/js/dojo-1.6/dojox/widget/Dialog/Dialog.css
blob: fd41fce1fbd52b5a7cfe9acf270733bd38843f38 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.dojoxDialog {
	position: absolute;
	z-index: 999;
	outline:0;
}

.dojoxDialog .closeText {
	display:none;
	/* for the onhover border in high contrast on IE: */
	position:absolute;
}

.dojoxDialogFixed div.dojoxDialogTitleBar {
	cursor:default; 
}

.dojoxDialogWrapper {
	left: 0;
	top: 0;
}

.dojoxDialog {
	background: #fff;
	-webkit-box-shadow: 0px 5px 10px #adadad;
	-moz-border-radius:9pt;
	-webkit-border-radius:8pt;
	border:1px solid #b7b7b7;
	padding:1.5em 3px 3px 3px;
}

.dojoxDialogFocused {
	border:1px solid #ccc;
}

.dojoxDialog .dojoxDialogPaneContent {
	border:none;
	padding:0;
}

.dojoxDialogTitleBar {
	/* outer container for the titlebar of the dialog */
	cursor:move;
	top:0;
	left:0;
	right:0;
	background:#ededed;
	height:1.5em;
	outline:0; /* remove this line if keyboard focus on dialog startup is an issue. tab still takes you to first focusable element */
	-moz-border-radius-topleft:8pt;
	-moz-border-radius-topright:8pt;
	-webkik-border-radius-topleft:7pt;
	-webkit-border-radius-topright:7pt;
}
.dj_webkit .dojoxDialogTitleBar {
	border:1px solid #ccc;
}

.dojoxDialogNoTitle .dojoxDialogTitleBar {
	display:none;
}

.dojoxDialogContent {
	/* the body of the dialog */
	padding: 3px;
	margin-top:1.2em;
}

/* pseudo-tundra-like */

.dojoxDialogTitle {
	font-weight: bold;
	padding: 8px 12px 8px 12px;
	outline:0;
	border-bottom:#b7b7b7;
}

div.dojoxDialogNoTitle {
	padding-top:9px;
}

.dojoxDialogCloseIcon, .dojoxDialogCloseIconHover {
	background : url("images/dialogCloseButton.png") no-repeat top right;
	position: absolute;
	vertical-align: middle;
	left: -19px;
	top: -19px;
	height: 29px;
	width: 29px;
	cursor: pointer;
	z-index: 999;
}
.dj_ie6 .dojoxDialogCloseIcon {
	background-image: url("images/dialogCloseButton.gif");
}

.dojoxDialog div.dijitDialogCloseIconHover,
.dojoxDialog div.dijitDialogCloseIconActive {
    background-position:0 0;
}

.dojoxDialog .dijitDialogCloseIconHover {
    background-image: url("images/dialogCloseButton.png");
}
.dj_ie6 .dojoxDialog .dijitDialogCloseIconHover {
    background-image: url("images/dialogCloseButton.gif");
}

.dojoxDialogNoTitle .dojoxDialogCloseIcon {
	top: -15px;
	left: -15px;
}