This commit is contained in:
ben%netscape.com 2000-08-31 05:45:28 +00:00
Родитель 7e54962a72
Коммит cfe93dcff4
4 изменённых файлов: 17 добавлений и 8 удалений

Просмотреть файл

@ -33,7 +33,7 @@ var set = null;
function CreateProfileWizard()
{
// Need to call CreateNewProfile xuls
window.openDialog('chrome://communicator/content/profile/createProfileWizard.xul', 'CPW', 'chrome,modal=yes');
window.openDialog('chrome://communicator/content/profile/createProfileWizard.xul', 'CPW', 'chrome,modal=yes,titlebar=yes');
}
// update the display to show the additional profile
@ -135,7 +135,7 @@ function ConfirmDelete()
return;
}
var win = window.openDialog('chrome://communicator/content/profile/deleteProfile.xul', 'Deleter', 'chrome,modal=yes');
var win = window.openDialog('chrome://communicator/content/profile/deleteProfile.xul', 'Deleter', 'chrome,modal=yes,titlebar=yes');
return win;
}

Просмотреть файл

@ -41,7 +41,7 @@
<window
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
class="color-dialog profile"
class="color-dialog non-resizable"
title="&windowtitle.label;"
orient="vertical"
style="width: 42em;"

Просмотреть файл

@ -4,12 +4,8 @@
{
background-color : #DDDDDD;
color : #000000;
border-left : 1px solid #FFFFFF;
border-top : 1px solid #FFFFFF;
border-right : 1px solid #DDDDDD;
border-bottom : 1px solid #DDDDDD;
}
.color-window
{
background-color : #FFFFFF;

Просмотреть файл

@ -72,6 +72,19 @@
border-bottom : 1px solid #DDDDDD;
}
window.non-resizable-dialog
{
border-left : 1px solid #FFFFFF;
border-top : 1px solid #FFFFFF;
border-right : 1px solid #DDDDDD;
border-bottom : 1px solid #DDDDDD;
}
window.non-resizable-dialog.modal
{
border : none;
}
/**
* XUL <box> debugging
**/