You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
2.1 KiB
138 lines
2.1 KiB
/*
|
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
|
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
|
*
|
|
* == BEGIN LICENSE ==
|
|
*
|
|
* Licensed under the terms of any of the following licenses at your
|
|
* choice:
|
|
*
|
|
* - GNU General Public License Version 2 or later (the "GPL")
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
|
* http://www.gnu.org/licenses/lgpl.html
|
|
*
|
|
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
|
* http://www.mozilla.org/MPL/MPL-1.1.html
|
|
*
|
|
* == END LICENSE ==
|
|
*
|
|
* Styles used by the dialog boxes.
|
|
*/
|
|
|
|
body
|
|
{
|
|
margin: 0px;
|
|
padding: 10px;
|
|
background-color: #f7f8fd;
|
|
}
|
|
|
|
body, td, input, select, textarea
|
|
{
|
|
font-size: 11px;
|
|
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
|
}
|
|
|
|
body, .BackColor
|
|
{
|
|
background-color: #f7f8fd;
|
|
}
|
|
|
|
.PopupBody
|
|
{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.PopupTitle
|
|
{
|
|
font-weight: bold;
|
|
font-size: 14pt;
|
|
color: #0e3460;
|
|
background-color: #8cb2fd;
|
|
padding: 3px 10px 3px 10px;
|
|
}
|
|
|
|
.PopupButtons
|
|
{
|
|
border-top: #466ca6 1px solid;
|
|
background-color: #8cb2fd;
|
|
padding: 7px 10px 7px 10px;
|
|
}
|
|
|
|
.Button
|
|
{
|
|
border: #1c3460 1px solid;
|
|
color: #000a28;
|
|
background-color: #7096d3;
|
|
}
|
|
|
|
#btnOk
|
|
{
|
|
width: 100px;
|
|
}
|
|
|
|
.DarkBackground
|
|
{
|
|
background-color: #d7d79f;
|
|
}
|
|
|
|
.LightBackground
|
|
{
|
|
background-color: #ffffbe;
|
|
}
|
|
|
|
.PopupTitleBorder
|
|
{
|
|
border-bottom: #d5d59d 1px solid;
|
|
}
|
|
|
|
.PopupTabArea
|
|
{
|
|
color: #0e3460;
|
|
background-color: #8cb2fd;
|
|
}
|
|
|
|
.PopupTabEmptyArea
|
|
{
|
|
padding-left: 10px ;
|
|
border-bottom: #466ca6 1px solid;
|
|
}
|
|
|
|
.PopupTab, .PopupTabSelected
|
|
{
|
|
border-right: #466ca6 1px solid;
|
|
border-top: #466ca6 1px solid;
|
|
border-left: #466ca6 1px solid;
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
padding-bottom: 3px;
|
|
padding-top: 3px;
|
|
color: #0e3460;
|
|
}
|
|
|
|
.PopupTab
|
|
{
|
|
margin-top: 1px;
|
|
border-bottom: #466ca6 1px solid;
|
|
cursor: pointer;
|
|
cursor: hand;
|
|
}
|
|
|
|
.PopupTabSelected
|
|
{
|
|
font-weight:bold;
|
|
cursor: default;
|
|
padding-top: 4px;
|
|
border-bottom: #f7f8fd 1px solid;
|
|
background-color: #f7f8fd;
|
|
}
|
|
|
|
.PopupSelectionBox
|
|
{
|
|
border: #1e90ff 1px solid !important;
|
|
background-color: #add8e6 !important;
|
|
cursor: pointer;
|
|
cursor: hand;
|
|
} |