Initial commit
2761
crystalreportviewers13/js/dhtmllib/bolist.js
Normal file
935
crystalreportviewers13/js/dhtmllib/calendar.js
Normal file
@@ -0,0 +1,935 @@
|
||||
// <script>
|
||||
/*
|
||||
=============================================================
|
||||
WebIntelligence(r) Report Panel
|
||||
Copyright(c) 2001-2003 Business Objects S.A.
|
||||
All rights reserved
|
||||
|
||||
Use and support of this software is governed by the terms
|
||||
and conditions of the software license agreement and support
|
||||
policy of Business Objects S.A. and/or its subsidiaries.
|
||||
The Business Objects products and technology are protected
|
||||
by the US patent number 5,555,403 and 6,247,008
|
||||
|
||||
File: calendar.js
|
||||
|
||||
palette.js, menu.js and dom.js must also be included before
|
||||
|
||||
=============================================================
|
||||
*/
|
||||
|
||||
|
||||
|
||||
_firstWeekDay=0
|
||||
_dateObj=new Date
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newCalendarTextField (Constructor)
|
||||
//
|
||||
// creates a calendar text field and button widget
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newCalendarTextFieldButton(id,textId,changeCB,maxChar,keyUpCB,enterCB,noMargin,tooltip,width,focusCB,blurCB,format,arrDays,arrMonth,AM,PM)
|
||||
{
|
||||
var o=newWidget(id)
|
||||
|
||||
o.changeCB=changeCB
|
||||
o.keyUpCB=keyUpCB
|
||||
o.enterCB=enterCB
|
||||
o.focusCB=focusCB
|
||||
o.blurCB=blurCB
|
||||
o.getValue=CTFB_getValue
|
||||
o.setValue=CTFB_setValue
|
||||
o.width=width?width:150
|
||||
|
||||
o.setFormatInfo=CTFB_setFormatInfo
|
||||
o.setFormatInfo(format,arrDays,arrMonth,AM,PM)
|
||||
|
||||
o.widResize=o.resize
|
||||
o.resize=CTFB_resize
|
||||
o.text=newTextFieldWidget(textId?textId:"text_"+id,CTFB_changeCB,maxChar,CTFB_keyUpCB,CTFB_enterCB,noMargin,tooltip,width-22,CTFB_focusCB,CTFB_blurCB)
|
||||
o.text.ctfb=o
|
||||
|
||||
o.calendar=newCalendarButton("calendar_"+id,CTFB_CalendarChangeCB)
|
||||
o.calendar.ctfb=o
|
||||
o.calendar.menu.alignLeft=true
|
||||
|
||||
o.getHTML=CTFB_getHTML
|
||||
o.oldInit=o.init
|
||||
o.init=CTFB_init
|
||||
o.setDateValueFromString=CTFB_setDateValueFromString
|
||||
o.setStringFromDateValue=CTFB_setStringFromDateValue
|
||||
|
||||
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_setFormatInfo(format,arrDays,arrMonth,AM,PM)
|
||||
{
|
||||
var o=this
|
||||
|
||||
o.arrMonthNames=arrMonth?arrMonth:_month
|
||||
o.arrDayNames=arrDays?arrDays:_day
|
||||
o.format=format?format:"MM/dd/yyyy hh:mm:ss a"
|
||||
o.AM=AM?AM:_AM
|
||||
o.PM=PM?PM:_PM
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_resize(w,h)
|
||||
{
|
||||
var o=this
|
||||
|
||||
o.text.resize(w!=null?(Math.max(0,w-22)):null,h)
|
||||
o.widResize(w,h)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_getHTML()
|
||||
{
|
||||
var o=this
|
||||
return '<table cellpadding="0" border="0" cellspacing="0" id="'+o.id+'" style="width:'+o.width+'px"><tr valign="middle"><td width="100%">'+o.text.getHTML()+'</td><td>'+o.calendar.getHTML()+'</td></tr></table>'
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_init()
|
||||
{
|
||||
var o=this
|
||||
o.oldInit()
|
||||
o.text.init()
|
||||
o.calendar.init()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_changeCB()
|
||||
// PRIVATE
|
||||
{
|
||||
if (this.ctfb.changeCB) this.ctfb.changeCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_keyUpCB()
|
||||
// PRIVATE
|
||||
{
|
||||
if (this.ctfb.keyUpCB) this.ctfb.keyUpCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_enterCB()
|
||||
// PRIVATE
|
||||
{
|
||||
if (this.ctfb.enterCB) this.ctfb.enterCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_focusCB()
|
||||
// PRIVATE
|
||||
{
|
||||
if (this.ctfb.focusCB) this.ctfb.focusCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_blurCB()
|
||||
// PRIVATE
|
||||
{
|
||||
if (this.ctfb.blurCB) this.ctfb.blurCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_getValue()
|
||||
{
|
||||
return this.text.getValue()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_setValue(v)
|
||||
{
|
||||
this.text.setValue(v)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_CalendarChangeCB()
|
||||
// PRIVATE
|
||||
{
|
||||
var c=this,o=c.ctfb
|
||||
|
||||
o.setStringFromDateValue()
|
||||
|
||||
var v=c.get()
|
||||
|
||||
if (o.changeCB)
|
||||
o.changeCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_setDateValueFromString()
|
||||
{
|
||||
var o=this
|
||||
var strDateValue=o.getValue()
|
||||
var strInputFormat=o.format
|
||||
|
||||
var strRet = setDateValue(strDateValue, strInputFormat);
|
||||
|
||||
if(strRet == ",,")
|
||||
o.calendar.menu.setToday(true);
|
||||
else
|
||||
{
|
||||
var arr = strRet.split(",");//strRet = strMonth + ',' + strDay + ',' + strYear;
|
||||
var strDay=arr[1],strMonth=arr[0],strYear=arr[2];
|
||||
|
||||
o.calendar.set(parseInt(strDay), parseInt(strMonth), parseInt(strYear))
|
||||
o.calendar.menu.update()
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CTFB_setStringFromDateValue() {
|
||||
var o=this
|
||||
var format=""+o.format
|
||||
|
||||
var date=_dateObj
|
||||
var menu=o.calendar.menu
|
||||
//date.setDate(menu.day+1)
|
||||
|
||||
date.setYear(menu.year)
|
||||
date.setMonth(menu.month)
|
||||
date.setDate(menu.day+1)
|
||||
|
||||
date.setHours(0)
|
||||
date.setMinutes(0)
|
||||
date.setSeconds(0)
|
||||
|
||||
var result=formatDate(date,format);
|
||||
o.setValue(result)
|
||||
}
|
||||
|
||||
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newCalendarButton (Constructor)
|
||||
//
|
||||
// creates a calendar button widget
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newCalendarButton(id,changeCB)
|
||||
// CONSTRUCTOR
|
||||
{
|
||||
var o=newIconWidget(id,_skin+"menus.gif",IconCalendarMenuWidget_ClickCB,null,_openCalendarLab,16,16,0,114,0,114)
|
||||
|
||||
o.setClasses("iconhover", "iconcheck", "iconhover", "iconcheckhover")
|
||||
|
||||
o.changeCB=changeCB
|
||||
o.menu=newCalendarMenuWidget("iconMenu_menu_"+id,IconCalendarMenuWidget_hideCB,IconCalendarMenuWidget_closeCB)
|
||||
o.menu.parCalendar=o
|
||||
|
||||
o.set=CalendarButton_set
|
||||
o.get=CalendarButton_get
|
||||
|
||||
o.getMenu=IconMenuWidget_getMenu
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newCalendarIconButton (Constructor)
|
||||
//
|
||||
// creates a calendar icon button widget
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newCalendarIconButton(id,src,changeCB,text,alt,w,h,dx,dy,disDx,disDy)
|
||||
// CONSTRUCTOR
|
||||
{
|
||||
var o=newIconMenuWidget(id,src,IconCalendarMenuWidget_ClickCB,text,_openCalendarLab,w,h,dx,dy,disDx,disDy,false)
|
||||
|
||||
o.changeCB=changeCB
|
||||
o.menu=newCalendarMenuWidget("iconMenu_menu_"+id,IconCalendarMenuWidget_hideCB,IconMenuCalendarMenuWidget_closeCB)
|
||||
o.menu.parCalendar=o
|
||||
|
||||
o.set=CalendarButton_set
|
||||
o.get=CalendarButton_get
|
||||
|
||||
o.getMenu=IconMenuWidget_getMenu
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
function IconMenuCalendarMenuWidget_closeCB()
|
||||
{
|
||||
var menu=this,o=menu.parCalendar
|
||||
o.outEnable=true
|
||||
if (!o.menu.isShown())
|
||||
{
|
||||
IconWidget_outCB(o.icon.index)
|
||||
IconWidget_outCB(o.arrow.index)
|
||||
}
|
||||
else
|
||||
{
|
||||
IconWidget_overCB(o.icon.index)
|
||||
IconWidget_overCB(o.arrow.index)
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function IconCalendarMenuWidget_ClickCB()
|
||||
{
|
||||
var o=this,l=o.layer
|
||||
o.outEnable=false
|
||||
|
||||
if (o.ctfb)
|
||||
o.ctfb.setDateValueFromString()
|
||||
|
||||
o.menu.show(true,getPosScrolled(l).x + (o.menu.alignLeft?o.getWidth():0) ,getPosScrolled(l).y+o.getHeight()+1)
|
||||
IconWidget_overCB(o.index)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function IconCalendarMenuWidget_hideCB()
|
||||
{
|
||||
var o=this.parCalendar
|
||||
|
||||
if (o.changeCB)
|
||||
o.changeCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function IconCalendarMenuWidget_closeCB()
|
||||
{
|
||||
var menu=this,o=menu.parCalendar
|
||||
o.outEnable=true
|
||||
if (!o.menu.isShown())
|
||||
IconWidget_outCB(o.index)
|
||||
else
|
||||
IconWidget_overCB(o.index)
|
||||
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarButton_set(day,month,year)
|
||||
// day [int] 1..31
|
||||
// month [int] 1..12
|
||||
// year [int] year
|
||||
{
|
||||
var o=this.menu
|
||||
o.day=day?day-1:0
|
||||
o.month=month?month-1:0
|
||||
o.year=year?year:2000
|
||||
|
||||
o.day=Math.min(Math.max(o.day,0),30)
|
||||
o.month=Math.min(Math.max(o.month,0),11)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarButton_get(day,month,year)
|
||||
{
|
||||
var o=this.menu
|
||||
return {day:o.day+1,month:o.month+1,year:o.year}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newCalendarMenuWidget (Constructor)
|
||||
//
|
||||
// creates a calendar menu widget
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newCalendarWidget(id,changeCB)
|
||||
// id [String] the calendar id for DHTML processing
|
||||
// Returns [CalendarWidget] the new instance
|
||||
{
|
||||
var o=newWidget(id)
|
||||
|
||||
// Private Fields
|
||||
o.day=0
|
||||
o.month=0
|
||||
o.year=2000
|
||||
o.daysL=new Array
|
||||
o.changeCB=changeCB
|
||||
|
||||
var p1=o.p1=newIconWidget(id+"_p1",_skin+'../lov.gif',CalendarWidget_clickCB,"",_calendarPrevMonthLab,8,4,46,12)
|
||||
var p2=o.p2=newIconWidget(id+"_p2",_skin+'../lov.gif',CalendarWidget_clickCB,"",_calendarPrevYearLab,8,4,46,12)
|
||||
var n1=o.n1=newIconWidget(id+"_n1",_skin+'../lov.gif',CalendarWidget_clickCB,"",_calendarNextMonthLab,8,4,46,0)
|
||||
var n2=o.n2=newIconWidget(id+"_n2",_skin+'../lov.gif',CalendarWidget_clickCB,"",_calendarNextYearLab,8,4,46,0)
|
||||
|
||||
p1.allowDblClick=true
|
||||
p2.allowDblClick=true
|
||||
n1.allowDblClick=true
|
||||
n2.allowDblClick=true
|
||||
|
||||
p1.margin=p2.margin=n1.margin=n2.margin=0
|
||||
var t=o.today=newButtonWidget(id+"_t",_today,CalendarWidget_clickCB)
|
||||
|
||||
t.par=p1.par=p2.par=n1.par=n2.par=o
|
||||
t.today=p1.p1=p2.p2=n1.n1=n2.n2=true
|
||||
|
||||
// Public Methods
|
||||
o.init=CalendarWidget_init
|
||||
o.getHTML=CalendarWidget_getHTML
|
||||
|
||||
// Private methods
|
||||
o.update=CalendarWidget_update
|
||||
o.setToday=CalendarWidget_setToday
|
||||
o.set=CalendarWidget_set
|
||||
o.get=CalendarWidget_get
|
||||
|
||||
o.focus=CalendarWidget_focus
|
||||
o.focusOnDay=CalendarWidget_focusOnDay
|
||||
|
||||
o.isCalendar=true
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_set(day,month,year)
|
||||
// day [int] 1..31
|
||||
// month [int] 1..12
|
||||
// year [int] year
|
||||
{
|
||||
var o=this
|
||||
o.day=day?day-1:0
|
||||
o.month=month?month-1:0
|
||||
o.year=year?year:2000
|
||||
|
||||
o.day=Math.min(Math.max(o.day,0),30)
|
||||
o.month=Math.min(Math.max(o.month,0),11)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_get(day,month,year)
|
||||
{
|
||||
var o=this
|
||||
return {day:o.day+1,month:o.month+1,year:o.year}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_init()
|
||||
// Redefined for disable the default widget init function
|
||||
// Return [void]
|
||||
{
|
||||
var o=this
|
||||
o.p1.init()
|
||||
o.p2.init()
|
||||
o.n1.init()
|
||||
o.n2.init()
|
||||
o.today.init()
|
||||
|
||||
var l=o.layer=getLayer(o.id)
|
||||
o.layer._widget=o.widx
|
||||
o.css=o.layer.style
|
||||
for (var i=0;i<42;i++)
|
||||
o.daysL[i]=getElemBySub(l,""+i)
|
||||
|
||||
o.update()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_getHTML()
|
||||
{
|
||||
var o=this,d=_moz?10:12
|
||||
|
||||
var keysCbs=' onkeydown="'+_codeWinName+'.MenuWidget_keyDown(\''+o.id+'\',event);return true" '
|
||||
|
||||
var s='<table onmousedown="'+_codeWinName+'._minb(event)" onmouseup="'+_codeWinName+'._minb(event)" '+keysCbs+' style="cursor:default" class="calendarFrame" id="'+o.id+'" border="0" cellpadding="0" cellspacing="0">'+
|
||||
|
||||
// Month year zone
|
||||
'<tr>'+
|
||||
'<td align="center" style="padding:1px" >'+
|
||||
'<table class="dialogzone" width="100%" cellpadding="0" border="0" cellspacing="0">'+
|
||||
'<tr>'+
|
||||
'<td style="padding-top:1px">'+o.n1.getHTML()+'</td>'+
|
||||
'<td rowspan="2" width="100%" align="center" class="dialogzone"><span subid="month" tabIndex=0>'+convStr(_month[o.month])+'</span> <span subid="year" tabIndex=0>'+convStr(o.year)+'</span></td>'+
|
||||
'<td style="padding-top:1px">'+o.n2.getHTML()+'</td>'+
|
||||
'</tr>'+
|
||||
'<tr valign="top">'+
|
||||
'<td style="padding-bottom:1px">'+o.p1.getHTML()+'</td><td style="padding-bottom:1px">'+o.p2.getHTML()+'</td>'+
|
||||
'</tr>'+
|
||||
'</table>'+
|
||||
'</td>'+
|
||||
'</tr>'
|
||||
|
||||
// Days header
|
||||
s+='<tr><td align="center"><table style="margin:2px;margin-top:6px" cellpadding="0" border="0" cellspacing="0">'
|
||||
for (var i=0;i<7;i++)
|
||||
{
|
||||
var j=(i+_firstWeekDay)%7
|
||||
if ((j%7)==0) s+='<tr align="center">'
|
||||
s+='<td class="calendarTextPart">'+_day[j]+'</td>'
|
||||
|
||||
if ((j%7)==6) s+='</tr>'
|
||||
}
|
||||
s+='<tr><td colspan="7" style="padding:2px;"><table width="100%" height="3" cellpadding="0" cellspacing="0" border="0" style="'+backImgOffset(_skin+"menus.gif",0,80)+';"><tbody><tr><td></td></tr></tbody></table></td></tr>'
|
||||
|
||||
// Days
|
||||
for (var i=0;i<6;i++)
|
||||
{
|
||||
s+='<tr align="right">'
|
||||
for (var j=0;j<7;j++)
|
||||
{
|
||||
s+='<td class="calendarTextPart" onmousedown="'+_codeWinName+'.CalendarWidget_mouseDown(this)" onmouseover="'+_codeWinName+'.CalendarWidget_mouseOver(this)" onmouseout="'+_codeWinName+'.CalendarWidget_mouseOut(this)" onkeydown="'+_codeWinName+'.CalendarWidget_keyDown(this,event)">'+
|
||||
'<div subid="'+(j+(i*7))+'" class="menuCalendar"></div></td>'
|
||||
}
|
||||
|
||||
s+='</tr>'
|
||||
}
|
||||
|
||||
s+='<tr><td colspan="7" style="padding:2px;"><table width="100%" height="3" cellpadding="0" cellspacing="0" border="0" style="'+backImgOffset(_skin+"menus.gif",0,80)+';"><tbody><tr><td></td></tr></tbody></table></td></tr>'
|
||||
s+='<tr><td colspan="7" align="center" style="padding-bottom=3px;padding-top:3px;">'+o.today.getHTML()+'</td></tr>'
|
||||
|
||||
// End menu
|
||||
s+='</table></td></tr>'
|
||||
s+='</table>'
|
||||
|
||||
return s
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_mouseDown(lay)
|
||||
{
|
||||
lay=lay.childNodes[0]
|
||||
var o=getWidget(lay),index=parseInt(lay.getAttribute("subid"))
|
||||
|
||||
var day=index-o.dateOffset
|
||||
|
||||
if ((day<0)||(day>o.lastDate))
|
||||
return
|
||||
|
||||
o.day=day
|
||||
o.update()
|
||||
if (o.changeCB)
|
||||
o.changeCB()
|
||||
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_clickCB()
|
||||
// PRIVATE
|
||||
{
|
||||
var o=m=this
|
||||
|
||||
// Modify current month
|
||||
if (o.p1||o.n1)
|
||||
{
|
||||
m=o.par
|
||||
m.month=(m.month+(o.p1?-1:1))%12
|
||||
if (m.month==-1)
|
||||
m.month=11
|
||||
m.update()
|
||||
}
|
||||
|
||||
// Modify current year
|
||||
if (o.p2||o.n2)
|
||||
{
|
||||
m=o.par
|
||||
m.year=m.year+(o.p2?-1:1)
|
||||
m.update()
|
||||
}
|
||||
if (o.today)
|
||||
{
|
||||
m=o.par
|
||||
m.setToday(true)
|
||||
if (m.changeCB)
|
||||
m.changeCB()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newCalendarMenuWidget (Constructor)
|
||||
//
|
||||
// creates a calendar menu widget
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newCalendarMenuWidget(id,changeCB,closeCB)
|
||||
// id [String] the calendar id for DHTML processing
|
||||
// Returns [CalendarMenuWidget] the new instance
|
||||
{
|
||||
var o=newMenuWidget(id,closeCB)
|
||||
|
||||
// Private Fields
|
||||
o.day=0
|
||||
o.month=0
|
||||
o.year=2000
|
||||
o.daysL=new Array
|
||||
o.changeCB=changeCB
|
||||
|
||||
var p1=o.p1=newIconWidget(id+"_p1",_skin+'../lov.gif',CalendarMenuWidget_clickCB,"",_calendarPrevMonthLab,8,4,46,12)
|
||||
var p2=o.p2=newIconWidget(id+"_p2",_skin+'../lov.gif',CalendarMenuWidget_clickCB,"",_calendarPrevYearLab,8,4,46,12)
|
||||
var n1=o.n1=newIconWidget(id+"_n1",_skin+'../lov.gif',CalendarMenuWidget_clickCB,"",_calendarNextMonthLab,8,4,46,0)
|
||||
var n2=o.n2=newIconWidget(id+"_n2",_skin+'../lov.gif',CalendarMenuWidget_clickCB,"",_calendarNextYearLab,8,4,46,0)
|
||||
|
||||
p1.allowDblClick=true
|
||||
p2.allowDblClick=true
|
||||
n1.allowDblClick=true
|
||||
n2.allowDblClick=true
|
||||
|
||||
p1.margin=p2.margin=n1.margin=n2.margin=0
|
||||
var t=o.today=newButtonWidget(id+"_t",_today,CalendarMenuWidget_clickCB)
|
||||
|
||||
t.par=p1.par=p2.par=n1.par=n2.par=o
|
||||
t.today=p1.p1=p2.p2=n1.n1=n2.n2=true
|
||||
|
||||
// Public Methods
|
||||
o.getHTML=CalendarMenuWidget_getHTML
|
||||
o.oldMenuInit=o.justInTimeInit
|
||||
o.justInTimeInit=CalendarMenuWidget_justInTimeInit
|
||||
|
||||
// Private methods
|
||||
o.update=CalendarWidget_update
|
||||
o.setToday=CalendarWidget_setToday
|
||||
|
||||
o.focus=CalendarWidget_focus
|
||||
o.focusOnDay=CalendarWidget_focusOnDay
|
||||
|
||||
o.isCalendar=true
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarMenuWidget_justInTimeInit()
|
||||
{
|
||||
var o=this
|
||||
o.oldMenuInit()
|
||||
o.p1.init()
|
||||
o.p2.init()
|
||||
o.n1.init()
|
||||
o.n2.init()
|
||||
o.today.init()
|
||||
|
||||
var l=o.layer
|
||||
for (var i=0;i<42;i++)
|
||||
o.daysL[i]=getElemBySub(l,""+i)
|
||||
|
||||
o.update()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarMenuWidget_getHTML()
|
||||
{
|
||||
var o=this,d=_moz?10:12
|
||||
|
||||
var keysCbs=' onkeydown="'+_codeWinName+'.MenuWidget_keyDown(\''+o.id+'\',event);return true" '
|
||||
|
||||
//var s=o.getShadowHTML()
|
||||
var s=''
|
||||
s+='<a style="position:absolute;left:-30px;top:-30px; visibility:hidden" id="startLink_'+o.id+'" href="javascript:void(0)" onfocus="'+_codeWinName+'.MenuWidget_keepFocus(\''+o.id+'\');return false;" ></a>'
|
||||
s+='<table onmousedown="'+_codeWinName+'._minb(event)" onmouseup="'+_codeWinName+'._minb(event)" '+keysCbs+' style="cursor:default" class="menuFrame" id="'+o.id+'" border="0" cellpadding="0" cellspacing="0">'+
|
||||
|
||||
// Month year zone
|
||||
'<tr>'+
|
||||
'<td align="center" style="padding:1px" >'+
|
||||
'<table class="dialogzone" width="100%" cellpadding="0" border="0" cellspacing="0">'+
|
||||
'<tr>'+
|
||||
'<td style="padding-top:1px">'+o.n1.getHTML()+'</td>'+
|
||||
'<td rowspan="2" width="100%" align="center" class="dialogzone"><span subid="month" tabIndex=0>'+convStr(_month[o.month])+'</span> <span subid="year" tabIndex=0>'+convStr(o.year)+'</span></td>'+
|
||||
'<td style="padding-top:1px">'+o.n2.getHTML()+'</td>'+
|
||||
'</tr>'+
|
||||
'<tr valign="top">'+
|
||||
'<td style="padding-bottom:1px">'+o.p1.getHTML()+'</td><td style="padding-bottom:1px">'+o.p2.getHTML()+'</td>'+
|
||||
'</tr>'+
|
||||
'</table>'+
|
||||
'</td>'+
|
||||
'</tr>'
|
||||
|
||||
// Days header
|
||||
s+='<tr><td align="center"><table style="margin:2px;margin-top:6px" cellpadding="0" border="0" cellspacing="0">'
|
||||
for (var i=0;i<7;i++)
|
||||
{
|
||||
var j=(i+_firstWeekDay)%7
|
||||
if ((j%7)==0) s+='<tr align="center">'
|
||||
s+='<td class="calendarTextPart">'+_day[j]+'</td>'
|
||||
|
||||
if ((j%7)==6) s+='</tr>'
|
||||
}
|
||||
s+='<tr><td colspan="7" style="padding:2px;"><table width="100%" height="3" cellpadding="0" cellspacing="0" border="0" style="'+backImgOffset(_skin+"menus.gif",0,80)+';"><tbody><tr><td></td></tr></tbody></table></td></tr>'
|
||||
|
||||
// Days
|
||||
for (var i=0;i<6;i++)
|
||||
{
|
||||
s+='<tr align="right">'
|
||||
for (var j=0;j<7;j++)
|
||||
{
|
||||
s+='<td class="calendarTextPart" onmousedown="'+_codeWinName+'.CalendarMenuWidget_mouseDown(this)" onmouseover="'+_codeWinName+'.CalendarWidget_mouseOver(this)" onmouseout="'+_codeWinName+'.CalendarWidget_mouseOut(this)" onkeydown="'+_codeWinName+'.CalendarMenuWidget_keyDown(this,event)">'+
|
||||
'<div subid="'+(j+(i*7))+'" class="menuCalendar"></div></td>'
|
||||
}
|
||||
|
||||
s+='</tr>'
|
||||
}
|
||||
|
||||
s+='<tr><td colspan="7" style="padding:2px;"><table width="100%" height="3" cellpadding="0" cellspacing="0" border="0" style="'+backImgOffset(_skin+"menus.gif",0,80)+';"><tbody><tr><td></td></tr></tbody></table></td></tr>'
|
||||
s+='<tr><td colspan="7" align="center" style="padding-bottom=3px;padding-top:3px;">'+o.today.getHTML()+'</td></tr>'
|
||||
|
||||
|
||||
|
||||
// End menu
|
||||
s+='</table></td></tr>'
|
||||
s+='</table>'
|
||||
s+='<a style="position:absolute;left:-30px;top:-30px; visibility:hidden" id="endLink_'+o.id+'" href="javascript:void(0)" onfocus="'+_codeWinName+'.MenuWidget_keepFocus(\''+o.id+'\');return false;" ></a>'
|
||||
|
||||
return s
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarMenuWidget_clickCB()
|
||||
// PRIVATE
|
||||
{
|
||||
var o=m=this
|
||||
|
||||
// Modify current month
|
||||
if (o.p1||o.n1)
|
||||
{
|
||||
m=o.par
|
||||
m.month=(m.month+(o.p1?-1:1))%12
|
||||
if (m.month==-1)
|
||||
m.month=11
|
||||
m.update()
|
||||
}
|
||||
|
||||
// Modify current year
|
||||
if (o.p2||o.n2)
|
||||
{
|
||||
m=o.par
|
||||
m.year=m.year+(o.p2?-1:1)
|
||||
m.update()
|
||||
}
|
||||
if (o.today)
|
||||
{
|
||||
m=o.par
|
||||
m.setToday(true)
|
||||
m.show(false)
|
||||
if (m.changeCB)
|
||||
m.changeCB()
|
||||
|
||||
//give focus to parent textfield when close menu
|
||||
var cal = m.parCalendar
|
||||
if( cal && cal.ctfb && cal.ctfb.text)
|
||||
cal.ctfb.text.focus()
|
||||
else
|
||||
cal.focus()
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_update()
|
||||
// PRIVATE
|
||||
{
|
||||
var o=this
|
||||
if (o.layer==null)
|
||||
return
|
||||
var month=getElemBySub(o.layer,"month"),year=getElemBySub(o.layer,"year"),l=o.layer
|
||||
|
||||
month.innerHTML=convStr(_month[o.month])
|
||||
year.innerHTML=convStr(""+o.year)
|
||||
|
||||
|
||||
_dateObj.setYear(o.year)
|
||||
_dateObj.setMonth(o.month)
|
||||
_dateObj.setDate(1)
|
||||
|
||||
var offset=_dateObj.getDay()
|
||||
|
||||
var last=26
|
||||
for (var i=26;i<33;i++)
|
||||
{
|
||||
_dateObj.setDate(i)
|
||||
if (_dateObj.getMonth()==o.month)
|
||||
last=i-1
|
||||
else
|
||||
break
|
||||
}
|
||||
|
||||
o.lastDate=last
|
||||
o.dateOffset=offset
|
||||
|
||||
o.day=Math.min(last,o.day)
|
||||
|
||||
for (var i=0;i<42;i++)
|
||||
{
|
||||
var j=i-offset,lay=o.daysL[i],cName="menuCalendar"
|
||||
|
||||
if ((j<0)||(j>last))
|
||||
{
|
||||
lay.innerHTML=""
|
||||
lay.tabIndex=-1 //cannot receive focus
|
||||
}
|
||||
else
|
||||
{
|
||||
lay.innerHTML=""+(j+1)
|
||||
lay.tabIndex=0 //can receive focus
|
||||
if (j==o.day)
|
||||
{
|
||||
cName="menuCalendarSel"
|
||||
lay.title=_calendarSelectionLab+(j+1)
|
||||
}
|
||||
}
|
||||
lay.className=cName
|
||||
}
|
||||
}
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_setToday(update)
|
||||
{
|
||||
_dateObj=new Date
|
||||
var o=this
|
||||
o.day=_dateObj.getDate()-1
|
||||
o.month=_dateObj.getMonth()
|
||||
o.year=_dateObj.getFullYear()
|
||||
|
||||
if (update)
|
||||
o.update()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarMenuWidget_mouseDown(lay)
|
||||
{
|
||||
lay=lay.childNodes[0]
|
||||
var o=getWidget(lay),index=parseInt(lay.getAttribute("subid"))
|
||||
|
||||
var day=index-o.dateOffset
|
||||
|
||||
if ((day<0)||(day>o.lastDate))
|
||||
return
|
||||
|
||||
o.day=day
|
||||
o.update()
|
||||
o.show(false)
|
||||
if (o.changeCB)
|
||||
o.changeCB()
|
||||
|
||||
//give focus to parent textfield when close menu
|
||||
var cal = o.parCalendar
|
||||
if( cal && cal.ctfb && cal.ctfb.text)
|
||||
cal.ctfb.text.focus()
|
||||
else
|
||||
cal.focus()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_mouseOver(lay)
|
||||
{
|
||||
lay=lay.childNodes[0]
|
||||
var o=getWidget(lay),index=parseInt(lay.getAttribute("subid"))
|
||||
|
||||
var day=index-o.dateOffset,cName=""
|
||||
|
||||
if ((day<0)||(day>o.lastDate))
|
||||
cName="menuCalendar"
|
||||
else
|
||||
cName="menuCalendarSel"
|
||||
|
||||
lay.className=cName
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function CalendarWidget_mouseOut(lay)
|
||||
{
|
||||
lay=lay.childNodes[0]
|
||||
var o=getWidget(lay),index=parseInt(lay.getAttribute("subid"))
|
||||
var day=index-o.dateOffset,cName=""
|
||||
|
||||
if (o.day!=day)
|
||||
lay.className="menuCalendar"
|
||||
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function getElemBySub(l,subId)
|
||||
{
|
||||
if (l.getAttribute&&(l.getAttribute("subid")==subId))
|
||||
return l
|
||||
|
||||
var sub=l.childNodes,len=sub.length
|
||||
for (var i=0;i<len;i++)
|
||||
{
|
||||
var r=getElemBySub(sub[i],subId)
|
||||
if (r) return r
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
function CalendarWidget_focus()
|
||||
{
|
||||
var o=this
|
||||
o.n1.focus()
|
||||
if(o.endLink) o.endLink.show(true)
|
||||
if(o.startLink) o.startLink.show(true)
|
||||
}
|
||||
|
||||
function CalendarWidget_focusOnDay()
|
||||
{
|
||||
var o=this
|
||||
o.day.focus()
|
||||
}
|
||||
|
||||
function CalendarWidget_keyDown(lay,e)
|
||||
{
|
||||
var k=eventGetKey(e)
|
||||
if(k==13)//enter
|
||||
{
|
||||
CalendarWidget_mouseDown(lay)
|
||||
}
|
||||
}
|
||||
|
||||
function CalendarMenuWidget_keyDown(lay,e)
|
||||
{
|
||||
var k=eventGetKey(e)
|
||||
if(k==13)//enter
|
||||
{
|
||||
CalendarMenuWidget_mouseDown(lay)
|
||||
}
|
||||
}
|
||||
985
crystalreportviewers13/js/dhtmllib/dialog.js
Normal file
@@ -0,0 +1,985 @@
|
||||
// <script>
|
||||
|
||||
/*
|
||||
=============================================================
|
||||
WebIntelligence(r) Report Panel
|
||||
Copyright(c) 2001-2003 Business Objects S.A.
|
||||
All rights reserved
|
||||
|
||||
Use and support of this software is governed by the terms
|
||||
and conditions of the software license agreement and support
|
||||
policy of Business Objects S.A. and/or its subsidiaries.
|
||||
The Business Objects products and technology are protected
|
||||
by the US patent number 5,555,403 and 6,247,008
|
||||
|
||||
File: dialog.js
|
||||
Dialog boxes
|
||||
=============================================================
|
||||
*/
|
||||
|
||||
if (window._DHTML_LIB_DIALOG_JS_LOADED==null)
|
||||
{
|
||||
_DHTML_LIB_DIALOG_JS_LOADED=true
|
||||
|
||||
DialogBoxWidget_modals=new Array;
|
||||
DialogBoxWidget_instances=new Array
|
||||
DialogBoxWidget_current=null
|
||||
|
||||
_promptDlgInfo=0
|
||||
_promptDlgWarning=1
|
||||
_promptDlgCritical=2
|
||||
|
||||
_dlgTitleLBorderToTxt=20
|
||||
|
||||
_dlgTitleHeight=25
|
||||
_dlgTitleMarginBottom=4
|
||||
_dlgTitleRBorderToClose=10
|
||||
|
||||
//close button in the title
|
||||
_dlgTitleCloseBtnImgFile='dialogtitle.gif'
|
||||
_dlgTitleCloseBtnW=11
|
||||
_dlgTitleCloseBtnH=10
|
||||
_dlgTitleCloseBtnDy=26
|
||||
_dlgTitleCloseBtnHoverDy=37
|
||||
|
||||
_dlgBottomMargin=14
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newDialogBoxWidget (Constructor)
|
||||
//
|
||||
// Class for dialog box
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newDialogBoxWidget(id,title,width,height,defaultCB,cancelCB,noCloseButton,isAlert)
|
||||
// CONSTRUCTOR
|
||||
// id [String] the id for DHTML processing
|
||||
// title [String] the caption dialog text
|
||||
// width [int optional] dialog box width
|
||||
// height [int optional] dialog box height
|
||||
// defaultCB [Function optional] callback when enter key is hit
|
||||
// cancelCB [Function optional] callback when esc key is hit or close button pushed
|
||||
// noCloseButton [Boolean optional] if true no close (on top right) button is displayed
|
||||
// isAlert [Boolean optional] if true JAWS will read dialog as an "alert" and read everything
|
||||
{
|
||||
var o=newWidget(id)
|
||||
|
||||
o.title=title
|
||||
o.width=width
|
||||
o.height=height
|
||||
o.defaultCB=defaultCB
|
||||
o.cancelCB=cancelCB
|
||||
o.noCloseButton=noCloseButton?noCloseButton:false
|
||||
o.isAlert=isAlert
|
||||
o.closeCB=null
|
||||
o.resizeable=false
|
||||
o.oldMouseDown=null
|
||||
o.oldCurrent=null
|
||||
o.modal=null
|
||||
o.hiddenVis=new Array
|
||||
o.lastLink=null
|
||||
o.firstLink=null
|
||||
o.titleLayer = null
|
||||
o.defaultBtn=null
|
||||
o.divLayer=null
|
||||
|
||||
o.oldInit=o.init
|
||||
o.oldShow=o.show
|
||||
o.init=DialogBoxWidget_init
|
||||
o.setResize=DialogBoxWidget_setResize
|
||||
o.beginHTML=DialogBoxWidget_beginHTML
|
||||
o.endHTML=DialogBoxWidget_endHTML
|
||||
o.show=DialogBoxWidget_Show
|
||||
o.center=DialogBoxWidget_center
|
||||
o.focus=DialogBoxWidget_focus
|
||||
o.setTitle=DialogBoxWidget_setTitle
|
||||
o.getContainerWidth=DialogBoxWidget_getContainerWidth
|
||||
o.getContainerHeight=DialogBoxWidget_getContainerHeight
|
||||
DialogBoxWidget_instances[id]=o
|
||||
o.modal=newWidget('modal_'+id)
|
||||
o.placeIframe=DialogBoxWidget_placeIframe
|
||||
o.oldResize=o.resize
|
||||
o.resize=DialogBoxWidget_resize
|
||||
o.attachDefaultButton=DialogBoxWidget_attachDefaultButton
|
||||
o.unload=DialogBoxWidget_unload
|
||||
o.close = DialogBoxWidget_close;
|
||||
o.setCloseCB = DialogBoxWidget_setCloseCB;
|
||||
o.setNoCloseButton = DialogBoxWidget_setNoCloseButton;
|
||||
|
||||
if (!_ie)
|
||||
{
|
||||
if (o.width!=null) o.width=Math.max(0,width+4)
|
||||
if (o.height!=null) o.height=Math.max(0,height+4)
|
||||
}
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_setResize(resizeCB,minWidth,minHeight,noResizeW,noResizeH)
|
||||
// Allow the dialog box to be resized
|
||||
// resizeCB [Function] callback for resize
|
||||
// minWidth [int] minimum dialog width
|
||||
// minHeight [int] minimum dialog height
|
||||
// noResizeW [boolean] disable vertical resizing
|
||||
// noResizeH [boolean] disable horizontal resizing
|
||||
{
|
||||
var o=this;
|
||||
o.resizeable=true
|
||||
o.resizeCB=resizeCB
|
||||
o.minWidth=minWidth?minWidth:50
|
||||
o.minHeight=minHeight?minHeight:50
|
||||
|
||||
o.noResizeW=noResizeW
|
||||
o.noResizeH=noResizeH
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_setTitle(title)
|
||||
// Change the dialog title
|
||||
// title [String] the new title
|
||||
{
|
||||
var o=this
|
||||
o.title=title
|
||||
if (o.titleLayer == null)
|
||||
o.titleLayer = getLayer('titledialog_'+this.id);
|
||||
o.titleLayer.innerHTML=convStr(title)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_setCloseIcon(lyr,isActive)
|
||||
// PRIVATE
|
||||
{
|
||||
changeOffset(lyr,0,(isActive==1?0:18))
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_beginHTML()
|
||||
// Get the widget beginning HTML
|
||||
// Returns : [String] the HTML
|
||||
{
|
||||
with (this) {
|
||||
var moveableCb = ' onselectstart="return false" ondragstart="return false" onmousedown="' + _codeWinName
|
||||
+ '.DialogBoxWidget_down(event,\'' + id + '\',this,false);return false;" '
|
||||
var titleBG = "background-image:url(" + _skin + "dialogtitle.gif)"
|
||||
|
||||
var mdl = '<div onselectstart="return false" onmouseup="' + _codeWinName + '.DialogBoxWidget_keepFocus(\'' + this.id
|
||||
+ '\');" onmousedown="' + _codeWinName + '.eventCancelBubble(event)" border="0" hspace="0" vspace="0" src="' + _skin
|
||||
+ '../transp.gif" id="modal_' + id + '" style="background-color:#888888;opacity:0.3;filter:alpha(opacity:30);position:absolute;top:0px;left:0px;width:1px;height:1px">'
|
||||
+ (_ie ? img (_skin + '../transp.gif', '100%', '100%', null) : '') + '</div>'
|
||||
|
||||
var btn = '';
|
||||
|
||||
if (_dtd4) {
|
||||
btn = '<td style="padding-right:' + _dlgTitleRBorderToClose + 'px"><div id="dialogClose_' + id
|
||||
+ '" class="dlgCloseBtn" title="' + _closeDialog + '"></div></td>';
|
||||
} else {
|
||||
btn = '<td style="padding-right:'
|
||||
+ _dlgTitleRBorderToClose
|
||||
+ 'px">'
|
||||
+ simpleImgOffset (_skin + _dlgTitleCloseBtnImgFile, _dlgTitleCloseBtnW, _dlgTitleCloseBtnH, 0, _dlgTitleCloseBtnDy,
|
||||
'dialogClose_' + id, null, _closeDialog) + '</td>';
|
||||
}
|
||||
|
||||
var closeBtn = '<td class="dlgCloseArea" align="left" valign="middle">'
|
||||
+ '<table border="0" cellspacing="0" cellpadding="0"><tbody><tr style="height:' + _dlgTitleHeight + 'px">' + btn
|
||||
+ '</tr></tbody></table>' + '</td>';
|
||||
|
||||
var dlgtitle = '<table style="height:' + _dlgTitleHeight
|
||||
+ '" class="dlgTitle" width="100%" border="0" cellspacing="0" cellpadding="0">' + '<tr valign="top" style="height:'
|
||||
+ _dlgTitleHeight + 'px">' + '<td ' + moveableCb + ' style="cursor:move;padding-left:' + _dlgTitleLBorderToTxt
|
||||
+ 'px;" width="100%" valign="middle" align="left">' + '<nobr><span id="titledialog_' + id
|
||||
+ '" tabIndex="0" class="titlezone">' + convStr (title) + '</span></nobr></td>' + closeBtn
|
||||
+ '</tr></table>';
|
||||
|
||||
var s = '';
|
||||
|
||||
s = mdl;
|
||||
|
||||
var dims = sty ("width", width ? ("" + width + "px") : null)
|
||||
+ sty ("height", height ? ("" + Math.max (0, height + (_moz ? -2 : 0)) + "px") : null)
|
||||
|
||||
s += '<button style="position:absolute;left:-30px;top:-30px; visibility:hidden" id="firstLink_'+this.id+'" onfocus="'+_codeWinName+'.DialogBoxWidget_keepFocus(\''+this.id+'\');return false;" ></button>';
|
||||
s += '<table border="0" cellspacing="0" cellpadding="0" id="' + id + '" style="display:none;padding:0px;visibility:' + _hide
|
||||
+ ';position:absolute;top:-2000px;left:-2000px;' + dims + '" ' + (isAlert?'role="alertdialog"':'role="dialog"') + '>';
|
||||
s += '<tr><td ' + (_moz ? 'style="' + dims + '" ' : "") + 'class="dialogbox" id="td_dialog_' + id + '" onresize="' + _codeWinName
|
||||
+ '.DialogBoxWidget_resizeIframeCB(\'' + id + '\',this)" valign="top">';
|
||||
s += '<table class="dlgBox2" width="100%" border="0" cellspacing="0" cellpadding="0"><tbody>'
|
||||
s += '<tr><td height="' + _dlgTitleHeight +'" valign="top">' + dlgtitle + '</td></tr>';
|
||||
s += '<tr><td class="dlgBody" valign="top" id="div_dialog_' + id + '">'
|
||||
return s;
|
||||
|
||||
}
|
||||
}
|
||||
/*
|
||||
function DialogBoxWidget_beginHTML()
|
||||
// Get the widget beginning HTML
|
||||
// Returns : [String] the HTML
|
||||
{
|
||||
with (this)
|
||||
{
|
||||
var moveableCb=' onselectstart="return false" ondragstart="return false" onmousedown="'+_codeWinName+'.DialogBoxWidget_down(event,\''+id+'\',this,false);return false;" '
|
||||
var mdl='<div onselectstart="return false" ondragstart="return false" onmousedown="'+_codeWinName+'.eventCancelBubble(event)" border="0" hspace="0" vspace="0" src="'+_skin+'../transp.gif" id="modal_'+id+'" style="position:absolute;top:0px;left:0px;width:1px;height:1px">'+(_ie?img(_skin+'../transp.gif','100%','100%',null):'')+'</div>'
|
||||
var titleBG="background-image:url("+_skin+"dialogtitle.gif)"
|
||||
|
||||
return mdl+
|
||||
'<a style="position:absolute;left:-30px;top:-30px; visibility:hidden" id="firstLink_'+this.id+'" href="javascript:void(0)" onfocus="'+_codeWinName+'.DialogBoxWidget_keepFocus(\''+this.id+'\');return false;" ></a>'+
|
||||
'<table border="0" cellspacing="0" cellpadding="2" id="'+id+'" style="display:none;padding:0px;visibility:'+_hide+';position:absolute;top:-2000px;left:-2000px;'+sty("width",width?(""+width+"px"):null)+sty("height",height?(""+height+"px"):null)+'"><tr><td id="td_dialog_'+id+'" onresize="'+_codeWinName+'.DialogBoxWidget_resizeIframeCB(\''+id+'\',this)" class="dialogbox" valign="top">'+
|
||||
'<table width="100%" style="margin-bottom:4px" border="0" cellspacing="0" cellpadding="0"><tr valign="top">'+
|
||||
'<td '+moveableCb+' style="cursor:move;'+titleBG+'" class="titlezone">'+getSpace(5,18)+'</td>'+
|
||||
'<td '+moveableCb+' style="cursor:move;'+titleBG+'" class="titlezone" width="100%" valign="middle" align="left"><nobr><span id="titledialog_'+id+'" tabIndex="0" class="titlezone">'+convStr(title)+'</span></nobr></td>'+
|
||||
'<td class="titlezone" style="'+titleBG+'">'+
|
||||
(noCloseButton?'':'<a href="javascript:void(0)" onclick="'+_codeWinName+'.DialogBoxWidget_close(\''+id+'\');return false;" title="'+ _closeDialog +'">'+imgOffset(_skin+'dialogelements.gif',18,18,0,18,'dialogClose_'+this.id,'onmouseover="'+_codeWinName+'.DialogBoxWidget_setCloseIcon(this,1)" onmouseout="'+_codeWinName+'.DialogBoxWidget_setCloseIcon(this,0)" ',_closeDialog,'cursor:'+_hand)+'</a>')+
|
||||
'</td>'+
|
||||
'</tr></table>'
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_endHTML()
|
||||
// Get the widget end HTML
|
||||
// Returns : [String] the HTML
|
||||
{
|
||||
var s='</td></tr>'
|
||||
|
||||
s+='<tr><td style="height:'+_dlgBottomMargin+'px;"></td></tr>';
|
||||
s+='</tbody></table>';
|
||||
s+='</td></tr></table>';
|
||||
s+='<button style="position:absolute;left:-30px;top:-30px; visibility:hidden" id="lastLink_'+this.id+'" onfocus="'+_codeWinName+'.DialogBoxWidget_keepFocus(\''+this.id+'\');return false;" ></button>'
|
||||
|
||||
return s;}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_getContainerWidth()
|
||||
// Get the width of the container
|
||||
// Returns : [int] the width
|
||||
{
|
||||
var o=this
|
||||
return o.width-(2+2)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_getContainerHeight()
|
||||
// Get the height of the container
|
||||
// Returns : [int] the height
|
||||
{
|
||||
var o=this
|
||||
return o.height-(2+18+2+2+2)
|
||||
}
|
||||
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_close(id)
|
||||
// PRIVATE
|
||||
{
|
||||
var o=DialogBoxWidget_instances[id]
|
||||
if (o)
|
||||
{
|
||||
o.show(false)
|
||||
if(o.cancelCB!=null) o.cancelCB()
|
||||
}
|
||||
}
|
||||
|
||||
//================================================================================
|
||||
|
||||
function DialogBoxWidget_setCloseCB(closeCB)
|
||||
{
|
||||
this.closeCB = closeCB;
|
||||
}
|
||||
|
||||
//================================================================================
|
||||
|
||||
function DialogBoxWidget_setNoCloseButton(noCloseButton)
|
||||
{
|
||||
if (this.noCloseButton !== noCloseButton){
|
||||
this.noCloseButton = noCloseButton;
|
||||
if (this.initialized()) {
|
||||
this.closeButton.style.visibility = this.noCloseButton?_hide:_show;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_resizeIframeCB(id,lyr)
|
||||
{
|
||||
DialogBoxWidget_instances[id].placeIframe()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_placeIframe()
|
||||
{
|
||||
var o=this
|
||||
if (o.iframe)
|
||||
{
|
||||
var lyr=o.td_lyr
|
||||
if (lyr==null)
|
||||
{
|
||||
o.td_lyr=lyr=getLayer("td_dialog_"+o.id)
|
||||
}
|
||||
o.iframe.resize(lyr.offsetWidth,lyr.offsetHeight)
|
||||
o.iframe.move(o.layer.offsetLeft,o.layer.offsetTop)
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
//use when resize dialogbox by code (exemple: variableEditorDialog.html)
|
||||
function DialogBoxWidget_resize(w,h)
|
||||
{
|
||||
var o=this;
|
||||
o.oldResize(w,h);
|
||||
if (o.iframe)
|
||||
{
|
||||
o.iframe.resize(w,h);
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_init()
|
||||
// Init the widget layers
|
||||
// Return [void]
|
||||
{
|
||||
if (this.layer != null)
|
||||
return
|
||||
|
||||
var o = this
|
||||
o.oldInit ();
|
||||
o.modal.init ();
|
||||
o.lastLink = newWidget ("lastLink_" + o.id)
|
||||
o.firstLink = newWidget ("firstLink_" + o.id)
|
||||
o.lastLink.init ()
|
||||
o.firstLink.init ()
|
||||
if (_saf)
|
||||
o.webKitFocusElem = getLayer ("webKitFocusElem" + o.id);
|
||||
|
||||
o.closeButton = getLayer ('dialogClose_' + o.id)
|
||||
o.closeButton.style.visibility = o.noCloseButton?_hide:_show;
|
||||
o.closeButton.onmouseover = DialogBoxWidget_moverCloseBtn;
|
||||
o.closeButton.onmouseout = DialogBoxWidget_moverCloseBtn;
|
||||
o.closeButton.onclick = function() {
|
||||
o.close (o.id);
|
||||
}
|
||||
}
|
||||
|
||||
function DialogBoxWidget_moverCloseBtn(evt)
|
||||
{
|
||||
var evt=getEvent(evt);
|
||||
var over=(evt && evt.type=="mouseover")?true:false;
|
||||
|
||||
if (_dtd4)
|
||||
this.className=over?'dlgCloseBtnHover':'dlgCloseBtn';
|
||||
else
|
||||
changeOffset(this,0, over?_dlgTitleCloseBtnHoverDy:_dlgTitleCloseBtnDy);
|
||||
}
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_attachDefaultButton(btn)
|
||||
// Attach a default button to the dialogbox
|
||||
//the callback of this button will be call by Enter action
|
||||
{
|
||||
this.defaultBtn=btn;
|
||||
this.defaultBtn.setDefaultButton();
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
_theLYR=null
|
||||
_dlgResize=null
|
||||
|
||||
function DialogBoxWidget_down(e,id,obj,isResize)
|
||||
// PRIVATE
|
||||
{
|
||||
_dlgResize=isResize
|
||||
var o=DialogBoxWidget_instances[id],lyr=o.layer,mod=o.modal.layer
|
||||
|
||||
lyr.onmousemove=mod.onmousemove=eval('_curWin.'+_codeWinName+'.DialogBoxWidget_move')
|
||||
lyr.onmouseup=mod.onmouseup=eval('_curWin.'+_codeWinName+'.DialogBoxWidget_up')
|
||||
|
||||
lyr.dlgStartPosx=mod.dlgStartPosx=parseInt(lyr.style.left)
|
||||
lyr.dlgStartPosy=mod.dlgStartPosy=parseInt(lyr.style.top)
|
||||
|
||||
lyr.dlgStartx=mod.dlgStartx=eventGetX(e)
|
||||
lyr.dlgStarty=mod.dlgStarty=eventGetY(e)
|
||||
|
||||
lyr.dlgStartw=mod.dlgStartw=o.getWidth()
|
||||
lyr.dlgStarth=mod.dlgStarth=o.getHeight()
|
||||
|
||||
lyr._widget=mod._widget=o.widx
|
||||
|
||||
_theLYR=lyr
|
||||
|
||||
eventCancelBubble(e)
|
||||
|
||||
if (lyr.setCapture)
|
||||
lyr.setCapture(true)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_move(e)
|
||||
// PRIVATE
|
||||
{
|
||||
var o=_theLYR,dlg=getWidget(o)
|
||||
|
||||
if (_dlgResize)
|
||||
{
|
||||
var newW=Math.max(dlg.minWidth,o.dlgStartw+eventGetX(e)-o.dlgStartx)
|
||||
var newH=Math.max(dlg.minHeight,o.dlgStarth+eventGetY(e)-o.dlgStarty)
|
||||
|
||||
dlg.resize(dlg.noResizeW?null:newW,dlg.noResizeH?null:newH)
|
||||
|
||||
if (dlg.firstTR)
|
||||
{
|
||||
if (!dlg.noResizeW)
|
||||
dlg.firstTR.style.width=newW-4
|
||||
|
||||
if (!dlg.noResizeH)
|
||||
dlg.secondTR.style.height=newH-44
|
||||
}
|
||||
|
||||
if (dlg.resizeCB)
|
||||
dlg.resizeCB(newW,newH)
|
||||
}
|
||||
else
|
||||
{
|
||||
var x=Math.max(0,o.dlgStartPosx-o.dlgStartx+eventGetX(e))
|
||||
var y=Math.max(0,o.dlgStartPosy-o.dlgStarty+eventGetY(e))
|
||||
|
||||
//x = Math.min( Math.max(10,winWidth()-10), x)
|
||||
//y = Math.min( Math.max(10,winHeight()-18), y)
|
||||
|
||||
|
||||
dlg.iframe.move(x,y)
|
||||
dlg.move(x,y)
|
||||
}
|
||||
eventCancelBubble(e)
|
||||
return false
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_up(e)
|
||||
// PRIVATE
|
||||
{
|
||||
var o=getWidget(_theLYR),lyr=o.layer,mod=o.modal.layer;
|
||||
lyr.onmousemove=mod.onmousemove=null;
|
||||
lyr.onmouseup=mod.onmouseup=null;
|
||||
|
||||
if (lyr.releaseCapture)
|
||||
lyr.releaseCapture();
|
||||
|
||||
_theLYR=null
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_keypress(e)
|
||||
// PRIVATE
|
||||
{
|
||||
eventCancelBubble(e)
|
||||
var dlg=DialogBoxWidget_current
|
||||
if (dlg!=null)
|
||||
{
|
||||
switch( eventGetKey(e))
|
||||
{
|
||||
case 13://enter
|
||||
if(dlg.yes && !dlg.no) //old code ???
|
||||
{
|
||||
if (dlg.defaultCB) dlg.defaultCB();return false;
|
||||
}
|
||||
|
||||
//Behavior is different from textArea and textField with the Enter action
|
||||
if(isTextArea(_ie?_curWin.event:e)) return true;
|
||||
|
||||
if(dlg.defaultBtn!=null && !dlg.defaultBtn.isDisabled())
|
||||
{
|
||||
dlg.defaultBtn.executeCB(); return false;
|
||||
}
|
||||
break;
|
||||
case 27://cancel
|
||||
if (!dlg.noCloseButton) // accept 'esc' only if there is a close button in the dialog
|
||||
{
|
||||
dlg.show(false)
|
||||
hideBlockWhileWaitWidget()
|
||||
if (dlg.cancelCB!=null) dlg.cancelCB()
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case 8: //back space
|
||||
return isTextInput(_ie?_curWin.event:e);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidgetResizeModals(e)
|
||||
// PRIVATE
|
||||
{
|
||||
var isCurrentDlgDisplayed = DialogBoxWidget_current && DialogBoxWidget_current.isDisplayed();
|
||||
if(isCurrentDlgDisplayed) {
|
||||
DialogBoxWidget_current.setDisplay(false);
|
||||
DialogBoxWidget_current.iframe.setDisplay(false);
|
||||
}
|
||||
var originalDisplay = [];
|
||||
for(var i = 0, len = DialogBoxWidget_modals.length; i < len; i++) {
|
||||
originalDisplay[i] = DialogBoxWidget_modals[i].display;
|
||||
DialogBoxWidget_modals[i].display = "none";
|
||||
}
|
||||
|
||||
var docWidth = documentWidth() + 'px';
|
||||
var docHeight = documentHeight() + 'px';
|
||||
|
||||
if(isCurrentDlgDisplayed) {
|
||||
DialogBoxWidget_current.setDisplay(true);
|
||||
DialogBoxWidget_current.iframe.setDisplay(true);
|
||||
}
|
||||
|
||||
for(var i = 0, len = DialogBoxWidget_modals.length; i < len; i++) {
|
||||
var m_sty=DialogBoxWidget_modals[i];
|
||||
m_sty.display = originalDisplay[i];
|
||||
m_sty.width = docWidth;
|
||||
m_sty.height = docHeight;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_center()
|
||||
{
|
||||
var o=this;
|
||||
var defaults = {modalDisplay : o.modal.css.display, layerDisplay : o.css.display};
|
||||
|
||||
o.modal.css.display = "none";
|
||||
o.css.display = "none";
|
||||
var scrY=getScrollY(),scrX=getScrollX();
|
||||
o.modal.css.display = defaults.modalDisplay;
|
||||
|
||||
o.css.display = "block";
|
||||
var height = o.layer.offsetHeight, width = o.layer.offsetWidth;
|
||||
o.css.display = defaults.layerDisplay;
|
||||
|
||||
var yOffset = (winHeight()- height)/2;
|
||||
yOffset = (yOffset < 0) ? 0 : yOffset;
|
||||
|
||||
var xOffset = (winWidth()- width)/2;
|
||||
xOffset = (xOffset < 0) ? 0 : xOffset;
|
||||
|
||||
|
||||
o.move(Math.max(0,scrX + xOffset),Math.max(0,scrY + yOffset));
|
||||
o.placeIframe()
|
||||
}
|
||||
|
||||
function DialogBoxWidget_Show(sh)
|
||||
// Show or Hide the dialog
|
||||
// sh [boolean] if true show
|
||||
{
|
||||
with (this)
|
||||
{
|
||||
m_sty=modal.css
|
||||
l_sty=css
|
||||
|
||||
if (sh)
|
||||
{
|
||||
if (!this.iframe)
|
||||
{
|
||||
this.iframe=newWidget(getDynamicBGIFrameLayer().id)
|
||||
this.iframe.init()
|
||||
}
|
||||
|
||||
oldCurrent=DialogBoxWidget_current
|
||||
DialogBoxWidget_current=this
|
||||
|
||||
if (_ie)
|
||||
{
|
||||
layer.onkeydown=eval('_curWin.'+_codeWinName+'.DialogBoxWidget_keypress')
|
||||
modal.layer.onkeydown=eval('_curWin.'+_codeWinName+'.DialogBoxWidget_keypress')
|
||||
window.attachEvent("onresize", eval('DialogBoxWidget_onWindowResize'));
|
||||
}
|
||||
else
|
||||
{
|
||||
_curDoc.addEventListener("keydown", eval('_curWin.'+_codeWinName+'.DialogBoxWidget_keypress'), false)
|
||||
window.addEventListener("resize", eval('DialogBoxWidget_onWindowResize'), false);
|
||||
}
|
||||
|
||||
oldMouseDown=_curDoc.onmousedown
|
||||
_curDoc.onmousedown=null
|
||||
|
||||
hideBlockWhileWaitWidget()
|
||||
}
|
||||
else
|
||||
{
|
||||
DialogBoxWidget_current=oldCurrent
|
||||
oldCurrent=null
|
||||
|
||||
if (_ie)
|
||||
{
|
||||
layer.onkeydown=null
|
||||
modal.layer.onkeydown=null
|
||||
window.detachEvent("onresize", eval('DialogBoxWidget_onWindowResize'));
|
||||
}
|
||||
else
|
||||
{
|
||||
_curDoc.removeEventListener("keydown", eval('_curWin.'+_codeWinName+'.DialogBoxWidget_keypress'), false)
|
||||
window.removeEventListener("resize", eval('DialogBoxWidget_onWindowResize'), false);
|
||||
}
|
||||
|
||||
_curDoc.onmousedown=oldMouseDown
|
||||
}
|
||||
|
||||
var sameState=(layer.isShown==sh)
|
||||
|
||||
if (sameState)
|
||||
return
|
||||
layer.isShown=sh
|
||||
|
||||
if (sh)
|
||||
{
|
||||
if (_curWin.DialogBoxWidget_zindex==null)
|
||||
_curWin.DialogBoxWidget_zindex=1000;
|
||||
|
||||
|
||||
this.iframe.css.zIndex=_curWin.DialogBoxWidget_zindex++;
|
||||
m_sty.zIndex=_curWin.DialogBoxWidget_zindex++;
|
||||
l_sty.zIndex=_curWin.DialogBoxWidget_zindex++;
|
||||
|
||||
DialogBoxWidget_modals[DialogBoxWidget_modals.length]=m_sty
|
||||
|
||||
m_sty.display=''
|
||||
l_sty.display='block'
|
||||
this.iframe.setDisplay(true)
|
||||
holdBGIFrame(this.iframe.id);
|
||||
DialogBoxWidgetResizeModals()
|
||||
|
||||
this.height=layer.offsetHeight;
|
||||
this.width=layer.offsetWidth;
|
||||
|
||||
//add scroll bar for small resolution 800*600
|
||||
//do the resize action before the center
|
||||
if(_small && height)
|
||||
{
|
||||
if(divLayer == null)
|
||||
divLayer=getLayer("div_dialog_"+id);
|
||||
if(divLayer)
|
||||
{
|
||||
divLayer.style.overflow="auto";
|
||||
divLayer.style.height = (winHeight()< height)? (winHeight()-40) : getContainerHeight();
|
||||
divLayer.style.width = (_moz?width+20:getContainerWidth());
|
||||
}
|
||||
resize(null,((winHeight()< height)? (winHeight()-10):null));
|
||||
}
|
||||
|
||||
if (isHidden(layer))
|
||||
{
|
||||
this.center()
|
||||
}
|
||||
|
||||
if (!_small && this.resizeCB)
|
||||
this.resizeCB(width,height)
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
var l=DialogBoxWidget_modals.length=Math.max(0,DialogBoxWidget_modals.length-1)
|
||||
|
||||
m_sty.width='1px'
|
||||
m_sty.height='1px'
|
||||
|
||||
m_sty.display='none'
|
||||
l_sty.display='none'
|
||||
|
||||
|
||||
if (this.iframe != null) {
|
||||
this.iframe.setDisplay(false)
|
||||
releaseBGIFrame(this.iframe.id)
|
||||
}
|
||||
}
|
||||
|
||||
modal.show(sh);
|
||||
|
||||
firstLink.show(sh)
|
||||
lastLink.show(sh)
|
||||
|
||||
oldShow(sh);
|
||||
|
||||
if (DialogBoxWidget_current!=null && sh==true)
|
||||
DialogBoxWidget_current.focus();
|
||||
|
||||
if (!sh && closeCB!=null) closeCB();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function DialogBoxWidget_onWindowResize ()
|
||||
{
|
||||
DialogBoxWidgetResizeModals();
|
||||
}
|
||||
|
||||
// must be called to release bg iframe
|
||||
function DialogBoxWidget_unload()
|
||||
{
|
||||
if (this.iframe) {
|
||||
releaseBGIFrame(this.iframe.id)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_keepFocus(id)
|
||||
// PRIVATE
|
||||
{
|
||||
var o=DialogBoxWidget_instances[id];
|
||||
if (o) o.focus();
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function DialogBoxWidget_focus()
|
||||
// apply focus on the dialog box
|
||||
{
|
||||
with (this)
|
||||
{
|
||||
if (titleLayer == null)
|
||||
titleLayer = getLayer('titledialog_'+id);
|
||||
|
||||
if(_saf && webKitFocusElem && webKitFocusElem.focus)
|
||||
webKitFocusElem.focus();
|
||||
|
||||
else if (titleLayer.focus)
|
||||
titleLayer.focus();
|
||||
}
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newAlertDialog (Constructor)
|
||||
//
|
||||
// Class for alert dialog box
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
/*
|
||||
function newAlertDialog(id,title,text,okLabel,promptType,yesCB)
|
||||
// id [String] the id for DHTML processing
|
||||
// title [String] the caption dialog text
|
||||
// text [String] the alert text
|
||||
// okLabel [String] label for the OK button
|
||||
// promptType [_promptDlgInfo | _promptDlgWarning=1 | _promptDlgCritical]
|
||||
// yesCB [Function optional] callback when clicking on OK
|
||||
{
|
||||
return newPromptDialog(id,title,text,okLabel,null,promptType,yesCB,null,true)
|
||||
}
|
||||
*/
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
//
|
||||
// OBJECT newPromptDialog (Constructor)
|
||||
//
|
||||
// Class for prompt dialog box
|
||||
//
|
||||
// ================================================================================
|
||||
// ================================================================================
|
||||
|
||||
function newPromptDialog(id,title,text,okLabel,cancelLabel,promptType,yesCB,noCB,noCloseButton,isAlert)
|
||||
// id [String] the id for DHTML processing
|
||||
// title [String] the caption dialog text
|
||||
// text [String] the alert text
|
||||
// okLabel [String] label for the OK button
|
||||
// cancelLabel [String] label for the Cancel button
|
||||
// promptType [_promptDlgInfo | _promptDlgWarning=1 | _promptDlgCritical]
|
||||
// yesCB [String or Function optional] callback when clicking on Yes
|
||||
// noCB [String or Function optional] callback when clicking on No
|
||||
// isAlert [Boolean optional] if true JAWS will read dialog as an "alert" and read everything
|
||||
{
|
||||
var o=newDialogBoxWidget(id,title,300,null,PromptDialog_defaultCB,PromptDialog_cancelCB,noCloseButton,isAlert)
|
||||
o.text=text
|
||||
o.getHTML=PromptDialog_getHTML
|
||||
o.yes=okLabel?newButtonWidget(id+"_yesBtn",okLabel,'PromptDialog_yesCB(\"'+o.id+'\")',70):null
|
||||
o.no=cancelLabel?newButtonWidget(id+"_noBtn",cancelLabel,'PromptDialog_noCB(\"'+o.id+'\")',70):null
|
||||
o.yesCB=yesCB
|
||||
o.noCB=noCB
|
||||
o.promptType=promptType
|
||||
o.txtLayer = null
|
||||
o.imgLayer = null
|
||||
|
||||
o.setPromptType=PromptDialog_setPromptType
|
||||
o.setText=PromptDialog_setText
|
||||
|
||||
//attach default button for prompt dialog
|
||||
if(o.yes) o.attachDefaultButton(o.yes)
|
||||
else if(o.no) o.attachDefaultButton(o.no)
|
||||
|
||||
return o
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_getimgPath(promptType)
|
||||
// PRIVATE
|
||||
{
|
||||
var imgPath=_skin
|
||||
switch(promptType)
|
||||
{
|
||||
case _promptDlgInfo: imgPath+='information_icon.gif';break
|
||||
case _promptDlgWarning: imgPath+='warning_icon.gif';break
|
||||
default: imgPath+='critical_icon.gif';break
|
||||
}
|
||||
return imgPath
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_getimgAlt(promptType)
|
||||
// PRIVATE
|
||||
{
|
||||
var imgAlt=''
|
||||
|
||||
/*
|
||||
switch(promptType)
|
||||
{
|
||||
case _promptDlgInfo: imgAlt=_topfs._labImgInfo;break
|
||||
case _promptDlgWarning: imgAlt=_topfs._labImgWarning;break
|
||||
default: imgAlt=_topfs._labImgError;break
|
||||
}
|
||||
*/
|
||||
return imgAlt
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_setPromptType(promptType)
|
||||
// Change the prompt icon
|
||||
// promptType [_promptDlgInfo | _promptDlgWarning=1 | _promptDlgCritical]
|
||||
{
|
||||
var o=this
|
||||
|
||||
if (o.imgLayer == null)
|
||||
o.imgLayer = getLayer("dlg_img_"+o.id)
|
||||
|
||||
o.imgLayer.src=PromptDialog_getimgPath(promptType)
|
||||
o.imgLayer.alt=PromptDialog_getimgAlt(promptType)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_setText(text)
|
||||
// Change the prompt text
|
||||
// text [String] the prompt text
|
||||
{
|
||||
var o=this
|
||||
o.text=text
|
||||
|
||||
if (o.txtLayer == null)
|
||||
o.txtLayer = getLayer("dlg_txt_"+o.id)
|
||||
|
||||
o.txtLayer.innerHTML='<div tabindex="0">'+convStr(text,false,true)+'</div>'
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_getHTML()
|
||||
// Get the widget HTML
|
||||
// Returns : [String] the HTML
|
||||
{
|
||||
var o=this
|
||||
var imgPath=PromptDialog_getimgPath(o.promptType)
|
||||
var imgAlt=PromptDialog_getimgAlt(o.promptType)
|
||||
|
||||
return o.beginHTML()+
|
||||
'<table class="dialogzone" width="290" cellpadding="0" cellspacing="5" border="0">'+
|
||||
'<tr><td>'+
|
||||
'<table class="dialogzone" cellpadding="5" cellspacing="0" border="0">'+
|
||||
'<tr><td align="right" width="32" >'+img(imgPath,32,32,null,'id="dlg_img_'+o.id+'"',imgAlt)+'</td><td></td><td id="dlg_txt_'+o.id+'" align="left" tabindex="0">'+convStr(o.text,false,true)+'</td></tr>'+
|
||||
'</table>'+
|
||||
'</td></tr>'+
|
||||
'<tr><td>'+getSep()+'</td></tr>'+
|
||||
'<tr><td align="right">'+
|
||||
'<table cellpadding="5" cellspacing="0" border="0">'+
|
||||
'<tr>'+
|
||||
(o.yes?'<td>'+o.yes.getHTML()+'</td>':'')+
|
||||
(o.no?'<td>'+o.no.getHTML()+'</td>':'')+
|
||||
'</tr>'+
|
||||
'</table>'+
|
||||
'</td></tr>'+
|
||||
'</table>'+
|
||||
o.endHTML()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_defaultCB()
|
||||
// PRIVATE
|
||||
{
|
||||
var o=this
|
||||
if (o.yesCB)
|
||||
{
|
||||
if (typeof o.yesCB!="string")
|
||||
o.yesCB()
|
||||
else
|
||||
eval(o.yesCB)
|
||||
}
|
||||
/*
|
||||
if (this.yesCB)
|
||||
this.yesCB()
|
||||
*/
|
||||
this.show(false)
|
||||
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_cancelCB()
|
||||
// PRIVATE
|
||||
{
|
||||
var o=this
|
||||
if (o.noCB)
|
||||
{
|
||||
if (typeof o.noCB!="string")
|
||||
o.noCB()
|
||||
else
|
||||
eval(o.noCB)
|
||||
}
|
||||
/*
|
||||
if (this.noCB)
|
||||
this.noCB()
|
||||
*/
|
||||
this.show(false)
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_yesCB(id)
|
||||
// PRIVATE
|
||||
{
|
||||
DialogBoxWidget_instances[id].defaultCB()
|
||||
}
|
||||
|
||||
// ================================================================================
|
||||
|
||||
function PromptDialog_noCB(id)
|
||||
// PRIVATE
|
||||
{
|
||||
DialogBoxWidget_instances[id].cancelCB()
|
||||
}
|
||||
|
||||
|
||||
4835
crystalreportviewers13/js/dhtmllib/dom.js
Normal file
10
crystalreportviewers13/js/dhtmllib/empty.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="Expires" content="never">
|
||||
</head>
|
||||
<body bgcolor="white">
|
||||
</body>
|
||||
</html>
|
||||
BIN
crystalreportviewers13/js/dhtmllib/images/borders.gif
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/help.gif
Normal file
|
After Width: | Height: | Size: 993 B |
BIN
crystalreportviewers13/js/dhtmllib/images/loading.gif
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/lov.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/min.gif
Normal file
|
After Width: | Height: | Size: 896 B |
BIN
crystalreportviewers13/js/dhtmllib/images/plus.gif
Normal file
|
After Width: | Height: | Size: 897 B |
73
crystalreportviewers13/js/dhtmllib/images/print.css
Normal file
@@ -0,0 +1,73 @@
|
||||
.panelzone
|
||||
{
|
||||
FONT-SIZE: 10px;
|
||||
COLOR: black;
|
||||
FONT-FAMILY: "arial","sans-serif";
|
||||
BACKGROUND-COLOR: white
|
||||
}
|
||||
.sqlText
|
||||
{
|
||||
FONT-SIZE: 12px;
|
||||
COLOR: black;
|
||||
FONT-FAMILY: "arial","sans-serif";
|
||||
BACKGROUND-COLOR: white
|
||||
}
|
||||
.headerPrint
|
||||
{
|
||||
FONT-SIZE: 14px;
|
||||
COLOR: black;
|
||||
FONT-FAMILY: "arial","sans-serif";
|
||||
BACKGROUND-COLOR: white
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
FONT-SIZE: 11px;
|
||||
COLOR: #2d62b0;
|
||||
FONT-FAMILY: "arial","sans-serif"
|
||||
}
|
||||
A.filterText
|
||||
{
|
||||
FONT-SIZE: 11px;
|
||||
COLOR: #2d62b0;
|
||||
FONT-FAMILY: "arial","sans-serif";
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
.treeNormal
|
||||
{
|
||||
PADDING-RIGHT: 1px;
|
||||
PADDING-LEFT: 1px;
|
||||
FONT-SIZE: 11px;
|
||||
PADDING-BOTTOM: 1px;
|
||||
COLOR: black;
|
||||
PADDING-TOP: 1px;
|
||||
FONT-FAMILY: "arial","sans-serif";
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
.treeSelected
|
||||
{
|
||||
PADDING-RIGHT: 1px;
|
||||
PADDING-LEFT: 1px;
|
||||
FONT-SIZE: 11px;
|
||||
PADDING-BOTTOM: 1px;
|
||||
COLOR: white;
|
||||
PADDING-TOP: 1px;
|
||||
FONT-FAMILY: "arial","sans-serif";
|
||||
BACKGROUND-COLOR: #195fa0;
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
A.treeNormal:hover
|
||||
{
|
||||
COLOR: black;
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
A.treeSelected:hover
|
||||
{
|
||||
COLOR: white
|
||||
}
|
||||
A
|
||||
{
|
||||
}
|
||||
A:hover
|
||||
{
|
||||
}
|
||||
73
crystalreportviewers13/js/dhtmllib/images/print_fe.css
Normal file
@@ -0,0 +1,73 @@
|
||||
.panelzone
|
||||
{
|
||||
FONT-SIZE: 10px;
|
||||
COLOR: black;
|
||||
FONT-FAMILY: "tahoma","sans-serif";
|
||||
BACKGROUND-COLOR: white
|
||||
}
|
||||
.sqlText
|
||||
{
|
||||
FONT-SIZE: 12px;
|
||||
COLOR: black;
|
||||
FONT-FAMILY: "tahoma","sans-serif";
|
||||
BACKGROUND-COLOR: white
|
||||
}
|
||||
.headerPrint
|
||||
{
|
||||
FONT-SIZE: 14px;
|
||||
COLOR: black;
|
||||
FONT-FAMILY: "tahoma","sans-serif";
|
||||
BACKGROUND-COLOR: white
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
FONT-SIZE: 11px;
|
||||
COLOR: #2d62b0;
|
||||
FONT-FAMILY: "tahoma","sans-serif"
|
||||
}
|
||||
A.filterText
|
||||
{
|
||||
FONT-SIZE: 11px;
|
||||
COLOR: #2d62b0;
|
||||
FONT-FAMILY: "tahoma","sans-serif";
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
.treeNormal
|
||||
{
|
||||
PADDING-RIGHT: 1px;
|
||||
PADDING-LEFT: 1px;
|
||||
FONT-SIZE: 11px;
|
||||
PADDING-BOTTOM: 1px;
|
||||
COLOR: black;
|
||||
PADDING-TOP: 1px;
|
||||
FONT-FAMILY: "tahoma","sans-serif";
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
.treeSelected
|
||||
{
|
||||
PADDING-RIGHT: 1px;
|
||||
PADDING-LEFT: 1px;
|
||||
FONT-SIZE: 11px;
|
||||
PADDING-BOTTOM: 1px;
|
||||
COLOR: white;
|
||||
PADDING-TOP: 1px;
|
||||
FONT-FAMILY: "tahoma","sans-serif";
|
||||
BACKGROUND-COLOR: #195fa0;
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
A.treeNormal:hover
|
||||
{
|
||||
COLOR: black;
|
||||
TEXT-DECORATION: none
|
||||
}
|
||||
A.treeSelected:hover
|
||||
{
|
||||
COLOR: white
|
||||
}
|
||||
A
|
||||
{
|
||||
}
|
||||
A:hover
|
||||
{
|
||||
}
|
||||
BIN
crystalreportviewers13/js/dhtmllib/images/prompt.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/resizepattern.gif
Normal file
|
After Width: | Height: | Size: 815 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 905 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 862 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 840 B |
|
After Width: | Height: | Size: 828 B |
|
After Width: | Height: | Size: 822 B |
|
After Width: | Height: | Size: 85 B |
|
After Width: | Height: | Size: 110 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 900 B |
|
After Width: | Height: | Size: 110 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 962 B |
|
After Width: | Height: | Size: 860 B |
|
After Width: | Height: | Size: 109 B |
|
After Width: | Height: | Size: 173 B |
|
After Width: | Height: | Size: 800 B |
|
After Width: | Height: | Size: 804 B |
@@ -0,0 +1,838 @@
|
||||
A
|
||||
{
|
||||
color:#0000e0
|
||||
}
|
||||
|
||||
A:hover
|
||||
{
|
||||
color:#e00000
|
||||
}
|
||||
|
||||
.smallTxt
|
||||
{
|
||||
font-size:3px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dragTxt
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
}
|
||||
|
||||
.dragTooltip
|
||||
{
|
||||
background-color:#FFFFE0;
|
||||
border-color:black;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
padding-right:5px;
|
||||
padding-left:5px;
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
}
|
||||
|
||||
.titlezone
|
||||
{
|
||||
background-color:#58A859;
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.dialogzone
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
color:#6A85AE;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.dialogbox
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
color:#6A85AE;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
border-top:2px solid #D5DAE0;
|
||||
border-left:2px solid #D5DAE0;
|
||||
border-bottom:2px solid #6A85AE;
|
||||
border-right:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.infozone
|
||||
{
|
||||
background-color:white;
|
||||
color:#808080;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
border:1px solid #808080;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.treeZone
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#58A859;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.treeNoBorder
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.insetBorder
|
||||
{
|
||||
background-color:white;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.dialogzonebold
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
color:#6A85AE;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bgzone
|
||||
{
|
||||
background-color:white;
|
||||
color:#336DBF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.listinputs
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.textinputs
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/*======*/
|
||||
/* Tabs */
|
||||
/*======*/
|
||||
|
||||
.thumbtxt
|
||||
{
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxt:hover
|
||||
{
|
||||
color:#E8E8E8;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.thumbtxtsel
|
||||
{
|
||||
color:#6A80A1;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxtsel:hover
|
||||
{
|
||||
color:#4269AA;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=========*/
|
||||
/* Buttons */
|
||||
/*=========*/
|
||||
|
||||
.wizbutton
|
||||
{
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wizbuttongray
|
||||
{
|
||||
color:#CCCCCC;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.wizbutton:hover
|
||||
{
|
||||
color:white;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.wizbuttongray:hover
|
||||
{
|
||||
color:#CCCCCC;
|
||||
}
|
||||
|
||||
/*===========*/
|
||||
/* Tree view */
|
||||
/*===========*/
|
||||
|
||||
.treeBody
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.treeContainer
|
||||
{
|
||||
background-color:white;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.treeNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeGray
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#909090;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:italic;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeHL
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
a.treeHL:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeNormal:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeGray:hover
|
||||
{
|
||||
color:#909090;
|
||||
}
|
||||
|
||||
a.treeSelected:hover
|
||||
{
|
||||
color:white;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Prompt Tree view */
|
||||
/*==================*/
|
||||
|
||||
.promptNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.promptSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:#C6CFDE;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
a.promptNormal:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.promptSelected:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=================*/
|
||||
/* BO Custom lists */
|
||||
/*=================*/
|
||||
|
||||
.bolist
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#D5E7FF;
|
||||
border-width:2px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.bolistitem
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
border-color:#F3F3F3;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistitemsel
|
||||
{
|
||||
background-color:#D6D6D6;
|
||||
border-color:#D6D6D6;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistlink
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.bolistlinksel
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.bolistlink:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.bolistlinksel:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.error
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
color:#245AA7;
|
||||
}
|
||||
|
||||
.critical
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:14px;
|
||||
color:red;
|
||||
}
|
||||
|
||||
/*===============*/
|
||||
/* Palette icons */
|
||||
/*===============*/
|
||||
|
||||
.palette
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
border: 1px solid #58A859;
|
||||
}
|
||||
|
||||
.combonocheck
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
}
|
||||
|
||||
.combohover
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.combocheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.combobtnhover
|
||||
{
|
||||
background-color:#94A5C6;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
border: 1px solid #E5EAF0;
|
||||
}
|
||||
|
||||
.iconcheck
|
||||
{
|
||||
background-color:#C5CAD0;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconhover
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
border-top:1px solid white;
|
||||
border-left:1px solid white;
|
||||
border-bottom:1px solid #788591;
|
||||
border-right:1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhover
|
||||
{
|
||||
background-color:#C5CAD0;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#6A85AE;
|
||||
}
|
||||
|
||||
.iconTextDis
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#7B8694;
|
||||
}
|
||||
|
||||
.iconcheckwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhoverwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.combo
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.comboDisabled
|
||||
{
|
||||
background-color:#DDDDDD;
|
||||
border: 1px solid #999999;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.comboEditable
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* menus */
|
||||
/*=======*/
|
||||
|
||||
.menuColor
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuColorSel
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuShadow
|
||||
{
|
||||
position:absolute;
|
||||
background-color:#a0a0a0;
|
||||
}
|
||||
|
||||
.menuFrame
|
||||
{
|
||||
position:absolute;
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
|
||||
.menuLeftPart
|
||||
{
|
||||
border:1px solid #E4E4EC;
|
||||
border-right:0px;
|
||||
background-color:#E4E4EC;
|
||||
}
|
||||
|
||||
.menuLeftPartColor
|
||||
{
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuLeftPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPart
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuTextPartSel
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPartDisabled
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#7B8694;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPart
|
||||
{
|
||||
border:1px solid white;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuIcon
|
||||
{
|
||||
border:1px solid none;
|
||||
}
|
||||
|
||||
.menuIconCheck
|
||||
{
|
||||
border-top:1px solid #636384;
|
||||
border-left:1px solid #636384;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuCalendar
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuCalendarSel
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuiconborders
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
background-color:#F6F6FB;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuiconbordersSel
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
background-color:#CAD1D8;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
.calendarTextPart
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* Filter */
|
||||
/*=======*/
|
||||
|
||||
.treeFilter
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
.treeFilterSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
|
||||
.treeFeedbackDD
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:0px 0px 0px 2px;
|
||||
border:2px solid #CC0000;
|
||||
}
|
||||
|
||||
.filterOp
|
||||
{
|
||||
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextFeedbackDD
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.filterBox
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 1px solid #666699;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#A6CAF0;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxFeedbackDD
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.LOVZone
|
||||
{
|
||||
background-color:#93B4E1;
|
||||
color:#FFFFFF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/*==========*/
|
||||
/* Overview */
|
||||
/*==========*/
|
||||
|
||||
.blockZone
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 1px #666666;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.blockZoneSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 2px #000033;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.iconTableZone
|
||||
{
|
||||
background-color:#E4E4EC;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.iconTableText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#2D62B0;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// Tree view
|
||||
|
||||
_treeViewSelectedColor="#E0E0E0";
|
||||
_treeViewUnselectedColor="white";
|
||||
|
||||
_listWidgetItemWidth=94;
|
||||
_listWidgetItemHeight=24;
|
||||
_listWidgetItemSpacing=5;
|
||||
@@ -0,0 +1,823 @@
|
||||
A
|
||||
{
|
||||
color:#0000e0
|
||||
}
|
||||
|
||||
A:hover
|
||||
{
|
||||
color:#e00000
|
||||
}
|
||||
|
||||
.smallTxt
|
||||
{
|
||||
font-size:3px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dragTxt
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
}
|
||||
|
||||
.dragTooltip
|
||||
{
|
||||
background-color:#FFFFE0;
|
||||
border-color:black;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
padding-right:5px;
|
||||
padding-left:5px;
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
}
|
||||
|
||||
.titlezone
|
||||
{
|
||||
background-color:#58A859;
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.dialogzone
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
color:#6A85AE;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.dialogbox
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
color:#6A85AE;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
border-top:2px solid #D5DAE0;
|
||||
border-left:2px solid #D5DAE0;
|
||||
border-bottom:2px solid #6A85AE;
|
||||
border-right:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.infozone
|
||||
{
|
||||
background-color:white;
|
||||
color:#808080;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
border:1px solid #808080;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.treeZone
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#58A859;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.treeNoBorder
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.insetBorder
|
||||
{
|
||||
background-color:white;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.dialogzonebold
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
color:#6A85AE;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bgzone
|
||||
{
|
||||
background-color:white;
|
||||
color:#336DBF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.listinputs
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.textinputs
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/*======*/
|
||||
/* Tabs */
|
||||
/*======*/
|
||||
|
||||
.thumbtxt
|
||||
{
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxt:hover
|
||||
{
|
||||
color:#E8E8E8;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.thumbtxtsel
|
||||
{
|
||||
color:#6A80A1;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxtsel:hover
|
||||
{
|
||||
color:#4269AA;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=========*/
|
||||
/* Buttons */
|
||||
/*=========*/
|
||||
|
||||
.wizbutton
|
||||
{
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wizbuttongray
|
||||
{
|
||||
color:#CCCCCC;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.wizbutton:hover
|
||||
{
|
||||
color:white;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.wizbuttongray:hover
|
||||
{
|
||||
color:#CCCCCC;
|
||||
}
|
||||
|
||||
/*===========*/
|
||||
/* Tree view */
|
||||
/*===========*/
|
||||
|
||||
.treeBody
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.treeContainer
|
||||
{
|
||||
background-color:white;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.treeNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeGray
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#909090;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:italic;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeHL
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
a.treeHL:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeNormal:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeGray:hover
|
||||
{
|
||||
color:#909090;
|
||||
}
|
||||
|
||||
a.treeSelected:hover
|
||||
{
|
||||
color:white;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Prompt Tree view */
|
||||
/*==================*/
|
||||
|
||||
.promptNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.promptSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:#EAE8E7;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
a.promptNormal:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.promptSelected:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=================*/
|
||||
/* BO Custom lists */
|
||||
/*=================*/
|
||||
|
||||
.bolist
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#D5E7FF;
|
||||
border-width:2px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.bolistitem
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
border-color:#F3F3F3;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistitemsel
|
||||
{
|
||||
background-color:#D6D6D6;
|
||||
border-color:#D6D6D6;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistlink
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.bolistlinksel
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.bolistlink:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.bolistlinksel:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.error
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
color:#245AA7;
|
||||
}
|
||||
|
||||
.critical
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:14px;
|
||||
color:red;
|
||||
}
|
||||
|
||||
/*===============*/
|
||||
/* Palette icons */
|
||||
/*===============*/
|
||||
|
||||
.palette
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
border: 1px solid #58A859;
|
||||
}
|
||||
|
||||
.combonocheck
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
}
|
||||
|
||||
.combohover
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.combocheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.combobtnhover
|
||||
{
|
||||
background-color:#94A5C6;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
border: 1px solid #E5EAF0;
|
||||
}
|
||||
|
||||
.iconcheck
|
||||
{
|
||||
background-color:#C5CAD0;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconhover
|
||||
{
|
||||
background-color:#E5EAF0;
|
||||
border-top:1px solid white;
|
||||
border-left:1px solid white;
|
||||
border-bottom:1px solid #788591;
|
||||
border-right:1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhover
|
||||
{
|
||||
background-color:#C5CAD0;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconText
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#6A85AE;
|
||||
}
|
||||
|
||||
.iconTextDis
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#7B8694;
|
||||
}
|
||||
|
||||
.iconcheckwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhoverwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.combo
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.comboDisabled
|
||||
{
|
||||
background-color:#DDDDDD;
|
||||
border: 1px solid #999999;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.comboEditable
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* menus */
|
||||
/*=======*/
|
||||
|
||||
.menuColor
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuColorSel
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuShadow
|
||||
{
|
||||
position:absolute;
|
||||
background-color:#a0a0a0;
|
||||
}
|
||||
|
||||
.menuFrame
|
||||
{
|
||||
position:absolute;
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
|
||||
.menuLeftPart
|
||||
{
|
||||
border:1px solid #E4E4EC;
|
||||
border-right:0px;
|
||||
background-color:#E4E4EC;
|
||||
}
|
||||
|
||||
.menuLeftPartColor
|
||||
{
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuLeftPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPart
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuTextPartSel
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPartDisabled
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#7B8694;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPart
|
||||
{
|
||||
border:1px solid white;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuIcon
|
||||
{
|
||||
border:1px solid none;
|
||||
}
|
||||
|
||||
.menuIconCheck
|
||||
{
|
||||
border-top:1px solid #636384;
|
||||
border-left:1px solid #636384;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuCalendar
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuCalendarSel
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuiconborders
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
background-color:#F6F6FB;
|
||||
border: 1px solid #F6F6FB;
|
||||
}
|
||||
|
||||
.menuiconbordersSel
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
background-color:#CAD1D8;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
.calendarTextPart
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* Filter */
|
||||
/*=======*/
|
||||
|
||||
.treeFilter
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
.treeFilterSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
|
||||
.treeFeedbackDD
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:0px 0px 0px 2px;
|
||||
border:2px solid #CC0000;
|
||||
}
|
||||
|
||||
.filterOp
|
||||
{
|
||||
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextFeedbackDD
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.filterBox
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 1px solid #666699;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#A6CAF0;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxFeedbackDD
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
||||
.LOVZone
|
||||
{
|
||||
background-color:#93B4E1;
|
||||
color:#FFFFFF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/*==========*/
|
||||
/* Overview */
|
||||
/*==========*/
|
||||
|
||||
.blockZone
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 1px #666666;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.blockZoneSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 2px #000033;
|
||||
padding:0px;
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 905 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 862 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 840 B |
|
After Width: | Height: | Size: 828 B |
|
After Width: | Height: | Size: 822 B |
|
After Width: | Height: | Size: 85 B |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 900 B |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 962 B |
|
After Width: | Height: | Size: 860 B |
|
After Width: | Height: | Size: 109 B |
|
After Width: | Height: | Size: 173 B |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_corporate/sep.gif
Normal file
|
After Width: | Height: | Size: 800 B |
|
After Width: | Height: | Size: 804 B |
@@ -0,0 +1,837 @@
|
||||
A
|
||||
{
|
||||
color:#0000e0
|
||||
}
|
||||
|
||||
A:hover
|
||||
{
|
||||
color:#e00000
|
||||
}
|
||||
|
||||
.smallTxt
|
||||
{
|
||||
font-size:3px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dragTxt
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
}
|
||||
|
||||
.dragTooltip
|
||||
{
|
||||
background-color:#FFFFE0;
|
||||
border-color:black;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
padding-right:5px;
|
||||
padding-left:5px;
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
}
|
||||
|
||||
.titlezone
|
||||
{
|
||||
background-color:#456E9E;
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.dialogzone
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
color:#456E9E;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.dialogbox
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
color:#456E9E;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
border-top:2px solid #C5D7EF;
|
||||
border-left:2px solid #C5D7EF;
|
||||
border-bottom:2px solid #6A85AE;
|
||||
border-right:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.infozone
|
||||
{
|
||||
background-color:white;
|
||||
color:#808080;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
border:1px solid #808080;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.treeZone
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#456E9E;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.treeNoBorder
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.insetBorder
|
||||
{
|
||||
background-color:white;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.dialogzonebold
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
color:#456E9E;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bgzone
|
||||
{
|
||||
background-color:white;
|
||||
color:#456E9E;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.listinputs
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.textinputs
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/*======*/
|
||||
/* Tabs */
|
||||
/*======*/
|
||||
|
||||
.thumbtxt
|
||||
{
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxt:hover
|
||||
{
|
||||
color:#E8E8E8;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.thumbtxtsel
|
||||
{
|
||||
color:#456E9E;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxtsel:hover
|
||||
{
|
||||
color:#6289CA;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=========*/
|
||||
/* Buttons */
|
||||
/*=========*/
|
||||
|
||||
.wizbutton
|
||||
{
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wizbuttongray
|
||||
{
|
||||
color:#CCCCCC;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.wizbutton:hover
|
||||
{
|
||||
color:white;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.wizbuttongray:hover
|
||||
{
|
||||
color:#CCCCCC;
|
||||
}
|
||||
|
||||
/*===========*/
|
||||
/* Tree view */
|
||||
/*===========*/
|
||||
|
||||
.treeBody
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.treeContainer
|
||||
{
|
||||
background-color:white;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.treeNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeGray
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#909090;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:italic;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeHL
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
a.treeHL:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeNormal:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeGray:hover
|
||||
{
|
||||
color:#909090;
|
||||
}
|
||||
|
||||
a.treeSelected:hover
|
||||
{
|
||||
color:white;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Prompt Tree view */
|
||||
/*==================*/
|
||||
|
||||
.promptNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.promptSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:#EAE8E7;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
a.promptNormal:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.promptSelected:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=================*/
|
||||
/* BO Custom lists */
|
||||
/*=================*/
|
||||
|
||||
.bolist
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#D5E7FF;
|
||||
border-width:2px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.bolistitem
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
border-color:#F3F3F3;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistitemsel
|
||||
{
|
||||
background-color:#D6D6D6;
|
||||
border-color:#D6D6D6;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistlink
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.bolistlinksel
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.bolistlink:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.bolistlinksel:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.error
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
color:#245AA7;
|
||||
}
|
||||
|
||||
.critical
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:14px;
|
||||
color:red;
|
||||
}
|
||||
|
||||
/*===============*/
|
||||
/* Palette icons */
|
||||
/*===============*/
|
||||
|
||||
.palette
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
border: 1px solid #456E9E;
|
||||
}
|
||||
|
||||
.combonocheck
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
}
|
||||
|
||||
.combohover
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.combocheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.combobtnhover
|
||||
{
|
||||
background-color:#94A5C6;
|
||||
border: 1px solid #94A5C6;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
border: 1px solid #E1E8F0;
|
||||
}
|
||||
|
||||
.iconcheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconhover
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
border-top:1px solid white;
|
||||
border-left:1px solid white;
|
||||
border-bottom:1px solid #788591;
|
||||
border-right:1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhover
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#456E9E;
|
||||
}
|
||||
|
||||
.iconTextDis
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#7B8694;
|
||||
}
|
||||
|
||||
.iconcheckwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhoverwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.combo
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.comboDisabled
|
||||
{
|
||||
background-color:#DDDDDD;
|
||||
border: 1px solid #999999;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.comboEditable
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* menus */
|
||||
/*=======*/
|
||||
|
||||
.menuColor
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuColorSel
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuShadow
|
||||
{
|
||||
position:absolute;
|
||||
background-color:#a0a0a0;
|
||||
}
|
||||
|
||||
.menuFrame
|
||||
{
|
||||
position:absolute;
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
|
||||
.menuLeftPart
|
||||
{
|
||||
border:1px solid #E1E8F0;
|
||||
border-right:0px;
|
||||
background-color:#E1E8F0;
|
||||
}
|
||||
|
||||
.menuLeftPartColor
|
||||
{
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuLeftPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPart
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuTextPartSel
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPartDisabled
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#7B8694;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPart
|
||||
{
|
||||
border:1px solid white;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuIcon
|
||||
{
|
||||
border:1px solid none;
|
||||
}
|
||||
|
||||
.menuIconCheck
|
||||
{
|
||||
border-top:1px solid #636384;
|
||||
border-left:1px solid #636384;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuCalendar
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuCalendarSel
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuiconborders
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
background-color:#F6F6FB;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuiconbordersSel
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
background-color:#CAD1D8;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
.calendarTextPart
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* Filter */
|
||||
/*=======*/
|
||||
|
||||
.treeFilter
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
.treeFilterSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
|
||||
.treeFeedbackDD
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:0px 0px 0px 2px;
|
||||
border:2px solid #CC0000;
|
||||
}
|
||||
|
||||
.filterOp
|
||||
{
|
||||
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextFeedbackDD
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.filterBox
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 1px solid #666699;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#A6CAF0;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxFeedbackDD
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.LOVZone
|
||||
{
|
||||
background-color:#93B4E1;
|
||||
color:#FFFFFF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/*==========*/
|
||||
/* Overview */
|
||||
/*==========*/
|
||||
|
||||
.blockZone
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 1px #666666;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.blockZoneSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 2px #000033;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.iconTableZone
|
||||
{
|
||||
background-color:#E4E4EC;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.iconTableText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#2D62B0;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// Tree view
|
||||
|
||||
_treeViewSelectedColor="#E0E0E0";
|
||||
_treeViewUnselectedColor="white";
|
||||
|
||||
_listWidgetItemWidth=94;
|
||||
_listWidgetItemHeight=24;
|
||||
_listWidgetItemSpacing=5;
|
||||
@@ -0,0 +1,824 @@
|
||||
A
|
||||
{
|
||||
color:#0000e0
|
||||
}
|
||||
|
||||
A:hover
|
||||
{
|
||||
color:#e00000
|
||||
}
|
||||
|
||||
.smallTxt
|
||||
{
|
||||
font-size:3px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dragTxt
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
}
|
||||
|
||||
.dragTooltip
|
||||
{
|
||||
background-color:#FFFFE0;
|
||||
border-color:black;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
padding-right:5px;
|
||||
padding-left:5px;
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
}
|
||||
|
||||
.titlezone
|
||||
{
|
||||
background-color:#456E9E;
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.dialogzone
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
color:#456E9E;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.dialogbox
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
color:#456E9E;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
border-top:2px solid #C5D7EF;
|
||||
border-left:2px solid #C5D7EF;
|
||||
border-bottom:2px solid #6A85AE;
|
||||
border-right:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.infozone
|
||||
{
|
||||
background-color:white;
|
||||
color:#808080;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
border:1px solid #808080;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.treeZone
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#456E9E;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.treeNoBorder
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.insetBorder
|
||||
{
|
||||
background-color:white;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.dialogzonebold
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
color:#456E9E;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bgzone
|
||||
{
|
||||
background-color:white;
|
||||
color:#456E9E;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.listinputs
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.textinputs
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
border: 1px solid #94A5C6;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/*======*/
|
||||
/* Tabs */
|
||||
/*======*/
|
||||
|
||||
.thumbtxt
|
||||
{
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxt:hover
|
||||
{
|
||||
color:#E8E8E8;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.thumbtxtsel
|
||||
{
|
||||
color:#456E9E;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxtsel:hover
|
||||
{
|
||||
color:#6289CA;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=========*/
|
||||
/* Buttons */
|
||||
/*=========*/
|
||||
|
||||
.wizbutton
|
||||
{
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wizbuttongray
|
||||
{
|
||||
color:#CCCCCC;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.wizbutton:hover
|
||||
{
|
||||
color:white;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.wizbuttongray:hover
|
||||
{
|
||||
color:#CCCCCC;
|
||||
}
|
||||
|
||||
/*===========*/
|
||||
/* Tree view */
|
||||
/*===========*/
|
||||
|
||||
.treeBody
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.treeContainer
|
||||
{
|
||||
background-color:white;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.treeNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeGray
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#909090;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:italic;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeHL
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
a.treeHL:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeNormal:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeGray:hover
|
||||
{
|
||||
color:#909090;
|
||||
}
|
||||
|
||||
a.treeSelected:hover
|
||||
{
|
||||
color:white;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Prompt Tree view */
|
||||
/*==================*/
|
||||
|
||||
.promptNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.promptSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:#EAE8E7;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
a.promptNormal:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.promptSelected:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=================*/
|
||||
/* BO Custom lists */
|
||||
/*=================*/
|
||||
|
||||
.bolist
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#D5E7FF;
|
||||
border-width:2px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.bolistitem
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
border-color:#F3F3F3;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistitemsel
|
||||
{
|
||||
background-color:#D6D6D6;
|
||||
border-color:#D6D6D6;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistlink
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.bolistlinksel
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.bolistlink:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.bolistlinksel:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.error
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
color:#245AA7;
|
||||
}
|
||||
|
||||
.critical
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:14px;
|
||||
color:red;
|
||||
}
|
||||
|
||||
/*===============*/
|
||||
/* Palette icons */
|
||||
/*===============*/
|
||||
|
||||
.palette
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
border: 1px solid #456E9E;
|
||||
}
|
||||
|
||||
.combonocheck
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
}
|
||||
|
||||
.combohover
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.combocheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.combobtnhover
|
||||
{
|
||||
background-color:#6392D6;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
border: 1px solid #E1E8F0;
|
||||
}
|
||||
|
||||
.iconcheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconhover
|
||||
{
|
||||
background-color:#E1E8F0;
|
||||
border-top:1px solid white;
|
||||
border-left:1px solid white;
|
||||
border-bottom:1px solid #788591;
|
||||
border-right:1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhover
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #788591;
|
||||
border-left:1px solid #788591;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconText
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#456E9E;
|
||||
}
|
||||
|
||||
.iconTextDis
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#7B8694;
|
||||
}
|
||||
|
||||
.iconcheckwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhoverwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.combo
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.comboDisabled
|
||||
{
|
||||
background-color:#DDDDDD;
|
||||
border: 1px solid #999999;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.comboEditable
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* menus */
|
||||
/*=======*/
|
||||
|
||||
.menuColor
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuColorSel
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuShadow
|
||||
{
|
||||
position:absolute;
|
||||
background-color:#a0a0a0;
|
||||
}
|
||||
|
||||
.menuFrame
|
||||
{
|
||||
position:absolute;
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
|
||||
.menuLeftPart
|
||||
{
|
||||
border:1px solid #E1E8F0;
|
||||
border-right:0px;
|
||||
background-color:#E1E8F0;
|
||||
}
|
||||
|
||||
.menuLeftPartColor
|
||||
{
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuLeftPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPart
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuTextPartSel
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPartDisabled
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#7B8694;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPart
|
||||
{
|
||||
border:1px solid white;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuIcon
|
||||
{
|
||||
border:1px solid none;
|
||||
}
|
||||
|
||||
.menuIconCheck
|
||||
{
|
||||
border-top:1px solid #636384;
|
||||
border-left:1px solid #636384;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuCalendar
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuCalendarSel
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuiconborders
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
background-color:#F6F6FB;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuiconbordersSel
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
background-color:#CAD1D8;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
.calendarTextPart
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* Filter */
|
||||
/*=======*/
|
||||
|
||||
.treeFilter
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
.treeFilterSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
|
||||
.treeFeedbackDD
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:0px 0px 0px 2px;
|
||||
border:2px solid #CC0000;
|
||||
}
|
||||
|
||||
.filterOp
|
||||
{
|
||||
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextFeedbackDD
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.filterBox
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 1px solid #666699;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#A6CAF0;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxFeedbackDD
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
||||
.LOVZone
|
||||
{
|
||||
background-color:#93B4E1;
|
||||
color:#FFFFFF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
|
||||
/*==========*/
|
||||
/* Overview */
|
||||
/*==========*/
|
||||
|
||||
.blockZone
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 1px #666666;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.blockZoneSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
color:#2D62B0;
|
||||
border:solid 2px #000033;
|
||||
padding:0px;
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_corporate/up.gif
Normal file
|
After Width: | Height: | Size: 112 B |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 905 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 862 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 862 B |
|
After Width: | Height: | Size: 853 B |
|
After Width: | Height: | Size: 834 B |
|
After Width: | Height: | Size: 85 B |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/down.gif
Normal file
|
After Width: | Height: | Size: 121 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 900 B |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/left.gif
Normal file
|
After Width: | Height: | Size: 123 B |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/menus.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/node.gif
Normal file
|
After Width: | Height: | Size: 114 B |
|
After Width: | Height: | Size: 962 B |
|
After Width: | Height: | Size: 860 B |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/right.gif
Normal file
|
After Width: | Height: | Size: 124 B |
|
After Width: | Height: | Size: 173 B |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/sep.gif
Normal file
|
After Width: | Height: | Size: 78 B |
|
After Width: | Height: | Size: 80 B |
908
crystalreportviewers13/js/dhtmllib/images/skin_default/style.css
Normal file
@@ -0,0 +1,908 @@
|
||||
A
|
||||
{
|
||||
color:#0000e0
|
||||
}
|
||||
|
||||
A:hover
|
||||
{
|
||||
color:#e00000
|
||||
}
|
||||
|
||||
.smallTxt
|
||||
{
|
||||
font-size:3px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dragTxt
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
}
|
||||
|
||||
.dragTooltip
|
||||
{
|
||||
background-color:#FFFFE0;
|
||||
border-color:black;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
padding-right:5px;
|
||||
padding-left:5px;
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
}
|
||||
|
||||
.titlezone
|
||||
{
|
||||
background-color:#4B7FCD;
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.dialogzone
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
color:#2D62B0;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.panelzone
|
||||
{
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.dialogbox
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
color:#6A85AE;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
border-top:2px solid #C5D7EF;
|
||||
border-left:2px solid #C5D7EF;
|
||||
border-bottom:2px solid #6A85AE;
|
||||
border-right:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.infozone
|
||||
{
|
||||
background-color:white;
|
||||
color:#808080;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
border:1px solid #808080;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.treeZone
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#4B7FCD;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.treeNoBorder
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.insetBorder
|
||||
{
|
||||
background-color:white;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.insetBorderBlue
|
||||
{
|
||||
background-color:#CCECFF;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.dialogzonebold
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
color:#2D62B0;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bgzone
|
||||
{
|
||||
background-color:white;
|
||||
color:#336DBF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.listinputs
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.textinputs
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
border: 1px solid #6392D6;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/*======*/
|
||||
/* Tabs */
|
||||
/*======*/
|
||||
|
||||
.thumbtxt
|
||||
{
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxt:hover
|
||||
{
|
||||
color:#E8E8E8;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.thumbtxtsel
|
||||
{
|
||||
color:#12397A;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxtsel:hover
|
||||
{
|
||||
color:#4269AA;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=========*/
|
||||
/* Buttons */
|
||||
/*=========*/
|
||||
|
||||
.wizbutton
|
||||
{
|
||||
color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wizbuttongray
|
||||
{
|
||||
color:#CCCCCC;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.wizbutton:hover
|
||||
{
|
||||
color:white;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.wizbuttongray:hover
|
||||
{
|
||||
color:#CCCCCC;
|
||||
}
|
||||
|
||||
/*===========*/
|
||||
/* Tree view */
|
||||
/*===========*/
|
||||
|
||||
.treeBody
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.treeContainer
|
||||
{
|
||||
background-color:white;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.treeNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeGray
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#909090;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:italic;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeHL
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
a.treeNormal:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeGray:hover
|
||||
{
|
||||
color:#909090;
|
||||
}
|
||||
|
||||
a.treeSelected:hover
|
||||
{
|
||||
color:white;
|
||||
}
|
||||
|
||||
a.treeHL:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Prompt Tree view */
|
||||
/*==================*/
|
||||
|
||||
.promptNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:white;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.promptSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:#EAE8E7;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
a.promptNormal:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.promptSelected:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=================*/
|
||||
/* BO Custom lists */
|
||||
/*=================*/
|
||||
|
||||
.bolist
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#D5E7FF;
|
||||
border-width:2px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.bolistitem
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
border-color:#F3F3F3;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistitemsel
|
||||
{
|
||||
background-color:#D6D6D6;
|
||||
border-color:#D6D6D6;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistlink
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.bolistlinksel
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.bolistlink:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.bolistlinksel:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.error
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
color:#245AA7;
|
||||
}
|
||||
|
||||
.critical
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:14px;
|
||||
color:red;
|
||||
}
|
||||
|
||||
/*===============*/
|
||||
/* Palette icons */
|
||||
/*===============*/
|
||||
|
||||
.palette
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border: 1px solid #4B7FCD;
|
||||
}
|
||||
|
||||
.combonocheck
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
}
|
||||
|
||||
.combohover
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.combocheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.combobtnhover
|
||||
{
|
||||
background-color:#6392D6;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border: 1px solid #D5E7FF;
|
||||
}
|
||||
|
||||
.iconcheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #6A85AE;
|
||||
border-left:1px solid #6A85AE;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconhover
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border-top:1px solid white;
|
||||
border-left:1px solid white;
|
||||
border-bottom:1px solid #6A85AE;
|
||||
border-right:1px solid #6A85AE;
|
||||
}
|
||||
|
||||
.iconcheckhover
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #6A85AE;
|
||||
border-left:1px solid #6A85AE;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#2D62B0;
|
||||
}
|
||||
|
||||
.iconTextDis
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#7B8694;
|
||||
}
|
||||
|
||||
.iconcheckwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhoverwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.combo
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.comboDisabled
|
||||
{
|
||||
background-color:#DDDDDD;
|
||||
border: 1px solid #999999;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.comboEditable
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* menus */
|
||||
/*=======*/
|
||||
|
||||
.menuColor
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuColorSel
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuShadow
|
||||
{
|
||||
position:absolute;
|
||||
background-color:#a0a0a0;
|
||||
}
|
||||
|
||||
.menuFrame
|
||||
{
|
||||
position:absolute;
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
|
||||
.menuLeftPart
|
||||
{
|
||||
border:1px solid #D5E7FF;
|
||||
border-right:0px;
|
||||
background-color:#D5E7FF;
|
||||
}
|
||||
|
||||
.menuLeftPartColor
|
||||
{
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuLeftPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPart
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuTextPartSel
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPartDisabled
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#7B8694;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPart
|
||||
{
|
||||
border:1px solid white;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuIcon
|
||||
{
|
||||
border:1px solid none;
|
||||
}
|
||||
|
||||
.menuIconCheck
|
||||
{
|
||||
border-top:1px solid #636384;
|
||||
border-left:1px solid #636384;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuCalendar
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuCalendarSel
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuiconborders
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
background-color:#F6F6FB;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuiconbordersSel
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
background-color:#CAD1D8;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
.calendarTextPart
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
|
||||
/*=======*/
|
||||
/* Filter */
|
||||
/*=======*/
|
||||
|
||||
.treeFilter
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
.treeFilterSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
|
||||
.treeFeedbackDD
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:0px 0px 0px 2px;
|
||||
border:2px solid #CC0000;
|
||||
}
|
||||
|
||||
.filterOp
|
||||
{
|
||||
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextFeedbackDD
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.filterBox
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 1px solid #666699;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#A6CAF0;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxFeedbackDD
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.LOVZone
|
||||
{
|
||||
background-color:#93B4E1;
|
||||
color:#FFFFFF;
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Chart Appearance */
|
||||
/*==================*/
|
||||
|
||||
.blockZoneFrame
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
}
|
||||
|
||||
.blockZone
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
border:solid 1px #666666;
|
||||
padding:1px;
|
||||
}
|
||||
|
||||
.blockZoneSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
border:solid 2px #000033;
|
||||
padding:0px;
|
||||
}
|
||||
.blockZone_txt
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:#A5A2A5;
|
||||
color:white;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
|
||||
.blockZone_label
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.blockZone_labelSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
border:solid 2px #000033;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.blockZone_values
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:#F3F3F3;
|
||||
color:#A5A2A5;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.blockZone_valuesSelected
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:#F3F3F3;
|
||||
color:#A5A2A5;
|
||||
border:solid 2px #000033;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.iconTableZone
|
||||
{
|
||||
background-color:#E4E4EC;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.iconTableText
|
||||
{
|
||||
font-family:"arial","sans-serif";
|
||||
font-size:11px;
|
||||
color:#2D62B0;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
// Tree view
|
||||
|
||||
_treeViewSelectedColor="#E0E0E0";
|
||||
_treeViewUnselectedColor="white";
|
||||
|
||||
_listWidgetItemWidth=94;
|
||||
_listWidgetItemHeight=24;
|
||||
_listWidgetItemSpacing=5;
|
||||
@@ -0,0 +1,891 @@
|
||||
A
|
||||
{
|
||||
color:#0000e0
|
||||
}
|
||||
|
||||
A:hover
|
||||
{
|
||||
color:#e00000
|
||||
}
|
||||
|
||||
.smallTxt
|
||||
{
|
||||
font-size:3px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dragTxt
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
}
|
||||
|
||||
.dragTooltip
|
||||
{
|
||||
background-color:#FFFFE0;
|
||||
border-color:black;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
padding-right:5px;
|
||||
padding-left:5px;
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
}
|
||||
|
||||
.titlezone
|
||||
{
|
||||
background-color:#4B7FCD;
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.dialogzone
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
color:#2D62B0;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.dialogbox
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
color:#2D62B0;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
border-top:2px solid #C5D7EF;
|
||||
border-left:2px solid #C5D7EF;
|
||||
border-bottom:2px solid #6A85AE;
|
||||
border-right:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.infozone
|
||||
{
|
||||
background-color:white;
|
||||
color:#808080;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
border:1px solid #808080;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.treeZone
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#4B7FCD;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.treeNoBorder
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.insetBorder
|
||||
{
|
||||
background-color:white;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.insetBorderBlue
|
||||
{
|
||||
background-color:#CCECFF;
|
||||
border-bottom:2px solid #D5DAE0;
|
||||
border-right:2px solid #D5DAE0;
|
||||
border-top:2px solid #6A85AE;
|
||||
border-left:2px solid #6A85AE;
|
||||
}
|
||||
|
||||
.dialogzonebold
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
color:#2D62B0;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bgzone
|
||||
{
|
||||
background-color:white;
|
||||
color:#336DBF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.listinputs
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.textinputs
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
background-color:white;
|
||||
border: 1px solid #6392D6;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/*======*/
|
||||
/* Tabs */
|
||||
/*======*/
|
||||
|
||||
.thumbtxt
|
||||
{
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxt:hover
|
||||
{
|
||||
color:#E8E8E8;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.thumbtxtsel
|
||||
{
|
||||
color:#12397A;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a.thumbtxtsel:hover
|
||||
{
|
||||
color:#4269AA;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=========*/
|
||||
/* Buttons */
|
||||
/*=========*/
|
||||
|
||||
.wizbutton
|
||||
{
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wizbuttongray
|
||||
{
|
||||
color:#CCCCCC;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.wizbutton:hover
|
||||
{
|
||||
color:white;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.wizbuttongray:hover
|
||||
{
|
||||
color:#CCCCCC;
|
||||
}
|
||||
|
||||
/*===========*/
|
||||
/* Tree view */
|
||||
/*===========*/
|
||||
|
||||
.treeBody
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.treeContainer
|
||||
{
|
||||
background-color:white;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.treeNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeGray
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#909090;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:italic;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
.treeHL
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
background-color:#D5E7FF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin-left:2px;
|
||||
}
|
||||
|
||||
a.treeHL:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeNormal:hover
|
||||
{
|
||||
color:black;
|
||||
}
|
||||
|
||||
a.treeGray:hover
|
||||
{
|
||||
color:#909090;
|
||||
}
|
||||
|
||||
a.treeSelected:hover
|
||||
{
|
||||
color:white;
|
||||
}
|
||||
|
||||
/*==================*/
|
||||
/* Prompt Tree view */
|
||||
/*==================*/
|
||||
|
||||
.promptNormal
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:white;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.promptSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#2961B5;
|
||||
background-color:#EAE8E7;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
a.promptNormal:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.promptSelected:hover
|
||||
{
|
||||
color:#2961B5;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
/*=================*/
|
||||
/* BO Custom lists */
|
||||
/*=================*/
|
||||
|
||||
.bolist
|
||||
{
|
||||
background-color:white;
|
||||
border-color:#D5E7FF;
|
||||
border-width:2px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.bolistitem
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
border-color:#F3F3F3;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistitemsel
|
||||
{
|
||||
background-color:#D6D6D6;
|
||||
border-color:#D6D6D6;
|
||||
border-width:2px;
|
||||
border-style:outset;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
margin:1px;
|
||||
padding:0px;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.bolistlink
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.bolistlinksel
|
||||
{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a.bolistlink:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.bolistlinksel:hover
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.error
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
color:#245AA7;
|
||||
}
|
||||
|
||||
.critical
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:14px;
|
||||
color:red;
|
||||
}
|
||||
|
||||
/*===============*/
|
||||
/* Palette icons */
|
||||
/*===============*/
|
||||
|
||||
.palette
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border: 1px solid #4B7FCD;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border: 1px solid #D5E7FF;
|
||||
}
|
||||
|
||||
.combonocheck
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
}
|
||||
|
||||
.combohover
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.combocheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.combobtnhover
|
||||
{
|
||||
background-color:#6392D6;
|
||||
border: 1px solid #6392D6;
|
||||
}
|
||||
|
||||
.iconnocheck
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border: 1px solid #D5E7FF;
|
||||
}
|
||||
|
||||
.iconcheck
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #6A85AE;
|
||||
border-left:1px solid #6A85AE;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconhover
|
||||
{
|
||||
background-color:#D5E7FF;
|
||||
border-top:1px solid white;
|
||||
border-left:1px solid white;
|
||||
border-bottom:1px solid #6A85AE;
|
||||
border-right:1px solid #6A85AE;
|
||||
}
|
||||
|
||||
.iconcheckhover
|
||||
{
|
||||
background-color:#B8C5D1;
|
||||
border-top:1px solid #6A85AE;
|
||||
border-left:1px solid #6A85AE;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
}
|
||||
|
||||
.iconText
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#2D62B0;
|
||||
}
|
||||
|
||||
.iconTextDis
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#7B8694;
|
||||
}
|
||||
|
||||
.iconcheckwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.iconcheckhoverwhite
|
||||
{
|
||||
background-color:#FFFFFF;
|
||||
border: 1px solid #788591;
|
||||
}
|
||||
|
||||
.combo
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #C6D7EF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.comboDisabled
|
||||
{
|
||||
background-color:#DDDDDD;
|
||||
border: 1px solid #999999;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.comboEditable
|
||||
{
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* menus */
|
||||
/*=======*/
|
||||
|
||||
.menuColor
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuColorSel
|
||||
{
|
||||
padding:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuShadow
|
||||
{
|
||||
position:absolute;
|
||||
background-color:#a0a0a0;
|
||||
}
|
||||
|
||||
.menuFrame
|
||||
{
|
||||
position:absolute;
|
||||
background-color:white;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
|
||||
.menuLeftPart
|
||||
{
|
||||
border:1px solid #D5E7FF;
|
||||
border-right:0px;
|
||||
background-color:#D5E7FF;
|
||||
}
|
||||
|
||||
.menuLeftPartColor
|
||||
{
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuLeftPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPart
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuTextPartSel
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid #636384;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuTextPartDisabled
|
||||
{
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:#7B8694;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
border:1px solid white;
|
||||
border-right:0px;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPart
|
||||
{
|
||||
border:1px solid white;
|
||||
border-left:0px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.menuRightPartSel
|
||||
{
|
||||
border:1px solid #636384;
|
||||
border-left:0px;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuIcon
|
||||
{
|
||||
border:1px solid none;
|
||||
}
|
||||
|
||||
.menuIconCheck
|
||||
{
|
||||
border-top:1px solid #636384;
|
||||
border-left:1px solid #636384;
|
||||
border-bottom:1px solid white;
|
||||
border-right:1px solid white;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuCalendar
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuCalendarSel
|
||||
{
|
||||
height:15px;
|
||||
padding:2px;
|
||||
margin-left:2px;
|
||||
margin-right:2px;
|
||||
border: 1px solid #636384;
|
||||
background-color:#CAD1D8;
|
||||
}
|
||||
|
||||
.menuiconborders
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
background-color:#F6F6FB;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
.menuiconbordersSel
|
||||
{
|
||||
padding:2px;
|
||||
white-space:nowrap;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
background-color:#CAD1D8;
|
||||
border: 1px solid #636384;
|
||||
}
|
||||
|
||||
.calendarTextPart
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:12px;
|
||||
color:black;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
/*=======*/
|
||||
/* Filter */
|
||||
/*=======*/
|
||||
|
||||
.treeFilter
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
.treeFilterSelected
|
||||
{
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color:#195FA0;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:1px 1px 1px 2px;
|
||||
}
|
||||
|
||||
|
||||
.treeFeedbackDD
|
||||
{
|
||||
text-decoration:none;
|
||||
color:black;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-style:normal;
|
||||
padding:1px;
|
||||
margin:0px 0px 0px 2px;
|
||||
border:2px solid #CC0000;
|
||||
}
|
||||
|
||||
.filterOp
|
||||
{
|
||||
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.filterText
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterTextFeedbackDD
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.filterBox
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 1px solid #666699;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#A6CAF0;
|
||||
border: 1px solid #CC0000;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.filterBoxFeedbackDD
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
background-color:#F1F1F1;
|
||||
border: 2px solid #CC0000;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
||||
.LOVZone
|
||||
{
|
||||
background-color:#93B4E1;
|
||||
color:#FFFFFF;
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
|
||||
/*==================*/
|
||||
/* Chart Appearance */
|
||||
/*==================*/
|
||||
|
||||
.blockZoneFrame
|
||||
{
|
||||
background-color:#F3F3F3;
|
||||
}
|
||||
|
||||
.blockZone
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
border:solid 1px #666666;
|
||||
padding:1px;
|
||||
}
|
||||
|
||||
.blockZoneSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
border:solid 2px #000033;
|
||||
padding:0px;
|
||||
}
|
||||
.blockZone_txt
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:#A5A2A5;
|
||||
color:white;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
|
||||
.blockZone_label
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.blockZone_labelSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:white;
|
||||
color:#A5A2A5;
|
||||
border:solid 2px #000033;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.blockZone_values
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:#F3F3F3;
|
||||
color:#A5A2A5;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.blockZone_valuesSelected
|
||||
{
|
||||
font-family:"Tahoma","sans-serif";
|
||||
font-size:11px;
|
||||
background-color:#F3F3F3;
|
||||
color:#A5A2A5;
|
||||
border:solid 2px #000033;
|
||||
padding:2px;
|
||||
}
|
||||
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/tabs.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
crystalreportviewers13/js/dhtmllib/images/skin_default/up.gif
Normal file
|
After Width: | Height: | Size: 124 B |
|
After Width: | Height: | Size: 35 KiB |