1
|
.ui-dialog-content p {
|
2
|
cursor: default;
|
3
|
-webkit-touch-callout: none;
|
4
|
-webkit-user-select: none;
|
5
|
-khtml-user-select: none;
|
6
|
-moz-user-select: none;
|
7
|
-ms-user-select: none;
|
8
|
user-select: none;
|
9
|
}
|
10
|
|
11
|
.ui-dialog-title {
|
12
|
cursor: default;
|
13
|
-webkit-touch-callout: none;
|
14
|
-webkit-user-select: none;
|
15
|
-khtml-user-select: none;
|
16
|
-moz-user-select: none;
|
17
|
-ms-user-select: none;
|
18
|
user-select: none;
|
19
|
}
|
20
|
|
21
|
.ui-dialog-titlebar {
|
22
|
background: #f0f9ff; /* Old browsers */
|
23
|
background: -moz-linear-gradient(top, #f0f9ff 0%, #cbebff 47%, #a1dbff 100%); /* FF3.6+ */
|
24
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f9ff), color-stop(47%,#cbebff), color-stop(100%,#a1dbff)); /* Chrome,Safari4+ */
|
25
|
background: -webkit-linear-gradient(top, #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* Chrome10+,Safari5.1+ */
|
26
|
background: -o-linear-gradient(top, #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* Opera 11.10+ */
|
27
|
background: -ms-linear-gradient(top, #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* IE10+ */
|
28
|
background: linear-gradient(top, #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* W3C */
|
29
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f9ff', endColorstr='#a1dbff',GradientType=0 ); /* IE6-9 */
|
30
|
}
|
31
|
|
32
|
.ui-dialog {
|
33
|
font-family: sans-serif;
|
34
|
}
|
35
|
|
36
|
.ui-button-text {
|
37
|
color: black;
|
38
|
}
|
39
|
|
40
|
#clearNameButton:hover {
|
41
|
border: 1px solid #999999;
|
42
|
background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
|
43
|
font-weight: normal;
|
44
|
color: #212121;
|
45
|
}
|
46
|
|
47
|
.ui-dialog input[type="text"] {
|
48
|
margin-bottom: 0.5em;
|
49
|
margin-top: 0.5em;
|
50
|
}
|
51
|
|
52
|
.ui-widget-overlay {
|
53
|
opacity: 0.8;
|
54
|
background: black;
|
55
|
}
|