jQueryUI ダイアログがありますが、それを閉じるための X は背景と同じ色です。どうすれば変更できますか。彼らのサイトでホストされている jqueryUI CSS を使用しましたが、動作するので、それが私の jQuery テーマに違いありません。http://www.tapmeister.com/dialog/に実際の例があり、コードを以下に示します。ありがとう
<!DOCTYPE HTML>
<html>
<head>
<title>test</title>
<meta charset="utf-8" />
<meta name="robots" content="noindex" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link href="css/ui-lightness/jquery-ui-1.9.0.custom.css" type="text/css" rel="stylesheet" />
<script src="js/jquery-ui-1.9.0.custom.min.js" type="text/javascript"></script>
<style type="text/css">
.ui-dialog-titlebar { border:0; background:none; color:#000000; }
</style>
<script type='text/javascript'>
$(document).ready( function() {$("#dialog").dialog({autoOpen: true});});
</script>
</head>
<body>
<div id="dialog" title="Title">Hi There!</div>
</body>
</html>