first commit
This commit is contained in:
300
resources/jq_impromptu/jquery-impromptu.3.1.min.js
vendored
Normal file
300
resources/jq_impromptu/jquery-impromptu.3.1.min.js
vendored
Normal file
@@ -0,0 +1,300 @@
|
||||
/*
|
||||
* jQuery Impromptu
|
||||
* By: Trent Richardson [http://trentrichardson.com]
|
||||
* Version 3.1
|
||||
* Last Modified: 3/30/2010
|
||||
*
|
||||
* Copyright 2010 Trent Richardson
|
||||
* Dual licensed under the MIT and GPL licenses.
|
||||
* http://trentrichardson.com/Impromptu/GPL-LICENSE.txt
|
||||
* http://trentrichardson.com/Impromptu/MIT-LICENSE.txt
|
||||
*
|
||||
*/
|
||||
(function($){
|
||||
$.prompt=function(message,options){
|
||||
options=$.extend({},$.prompt.defaults,options);
|
||||
$.prompt.currentPrefix=options.prefix;
|
||||
var ie6=false;
|
||||
var $body=$(document.body);
|
||||
var $window=$(window);
|
||||
options.classes=$.trim(options.classes);
|
||||
if(options.classes!='')options.classes=' '+options.classes;
|
||||
var msgbox='<div class="'+options.prefix+'box'+options.classes+'" id="'+options.prefix+'box">';
|
||||
if(options.useiframe&&(($('object, applet').length>0)||ie6)){
|
||||
msgbox+='<iframe src="javascript:false;" style="display:block;position:absolute;z-index:-1;" class="'+options.prefix+'fade" id="'+options.prefix+'fade"></iframe>';
|
||||
}else{
|
||||
if(ie6){
|
||||
$('select').css('visibility','hidden');
|
||||
}
|
||||
msgbox+='<div class="'+options.prefix+'fade" id="'+options.prefix+'fade"></div>';
|
||||
}
|
||||
msgbox+='<div class="'+options.prefix+'" id="'+options.prefix+'"><div class="'+options.prefix+'container"><div class="';
|
||||
msgbox+=options.prefix+'close">X</div><div id="'+options.prefix+'states"></div>';
|
||||
msgbox+='</div></div></div>';
|
||||
var $jqib=$(msgbox).appendTo($body);
|
||||
var $jqi=$jqib.children('#'+options.prefix);
|
||||
var $jqif=$jqib.children('#'+options.prefix+'fade');
|
||||
if(message.constructor==String){
|
||||
message={
|
||||
state0:{
|
||||
html:message,
|
||||
buttons:options.buttons,
|
||||
focus:options.focus,
|
||||
submit:options.submit
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
var states="";
|
||||
$.each(message,function(statename,stateobj){
|
||||
stateobj=$.extend({},$.prompt.defaults.state,stateobj);
|
||||
message[statename]=stateobj;
|
||||
states+='<div id="'+options.prefix+'_state_'+statename+'" class="'+options.prefix+'_state" style="display:none;"><div class="'+options.prefix+'message">'+stateobj.html+'</div><div class="'+options.prefix+'buttons">';
|
||||
$.each(stateobj.buttons,function(k,v){
|
||||
if(typeof v=='object')states+='<button name="'+options.prefix+'_'+statename+'_button'+v.title.replace(/[^a-z0-9]+/gi,'')+'" id="'+options.prefix+'_'+statename+'_button'+v.title.replace(/[^a-z0-9]+/gi,'')+'" value="'+v.value+'">'+v.title+'</button>';else states+='<button name="'+options.prefix+'_'+statename+'_button'+k+'" id="'+options.prefix+'_'+statename+'_button'+k+'" value="'+v+'">'+k+'</button>';
|
||||
});
|
||||
states+='</div></div>';
|
||||
});
|
||||
$jqi.find('#'+options.prefix+'states').html(states).children('.'+options.prefix+'_state:first').css('display','block');
|
||||
$jqi.find('.'+options.prefix+'buttons:empty').css('display','none');
|
||||
$.each(message,function(statename,stateobj){
|
||||
var $state=$jqi.find('#'+options.prefix+'_state_'+statename);
|
||||
$state.children('.'+options.prefix+'buttons').children('button').click(function(){
|
||||
var msg=$state.children('.'+options.prefix+'message');
|
||||
var clicked=stateobj.buttons[$(this).text()];
|
||||
if(clicked==undefined){
|
||||
for(var i in stateobj.buttons)if(stateobj.buttons[i].title==$(this).text())clicked=stateobj.buttons[i].value;
|
||||
}
|
||||
if(typeof clicked=='object')clicked=clicked.value;
|
||||
var forminputs={};
|
||||
|
||||
$.each($jqi.find('#'+options.prefix+'states :input').serializeArray(),function(i,obj){
|
||||
if(forminputs[obj.name]===undefined){
|
||||
forminputs[obj.name]=obj.value;
|
||||
}else if(typeof forminputs[obj.name]==Array||typeof forminputs[obj.name]=='object'){
|
||||
forminputs[obj.name].push(obj.value);
|
||||
}else{
|
||||
forminputs[obj.name]=[forminputs[obj.name],obj.value];
|
||||
}
|
||||
});
|
||||
var close=stateobj.submit(clicked,msg,forminputs);
|
||||
if(close===undefined||close){
|
||||
removePrompt(true,clicked,msg,forminputs);
|
||||
}
|
||||
});
|
||||
$state.find('.'+options.prefix+'buttons button:eq('+stateobj.focus+')').addClass(options.prefix+'defaultbutton');
|
||||
});
|
||||
var ie6scroll=function(){
|
||||
$jqib.css({
|
||||
top:$window.scrollTop()
|
||||
});
|
||||
};
|
||||
|
||||
var fadeClicked=function(){
|
||||
if(options.persistent){
|
||||
var i=0;
|
||||
$jqib.addClass(options.prefix+'warning');
|
||||
var intervalid=setInterval(function(){
|
||||
$jqib.toggleClass(options.prefix+'warning');
|
||||
if(i++>1){
|
||||
clearInterval(intervalid);
|
||||
$jqib.removeClass(options.prefix+'warning');
|
||||
}
|
||||
},100);
|
||||
}else{
|
||||
removePrompt();
|
||||
}
|
||||
};
|
||||
|
||||
var keyPressEventHandler=function(e){
|
||||
var key=(window.event)?event.keyCode:e.keyCode;
|
||||
if(key==27){
|
||||
fadeClicked();
|
||||
}
|
||||
if(key==9){
|
||||
var $inputels=$(':input:enabled:visible',$jqib);
|
||||
var fwd=!e.shiftKey&&e.target==$inputels[$inputels.length-1];
|
||||
var back=e.shiftKey&&e.target==$inputels[0];
|
||||
if(fwd||back){
|
||||
setTimeout(function(){
|
||||
if(!$inputels)return;
|
||||
var el=$inputels[back===true?$inputels.length-1:0];
|
||||
if(el)el.focus();
|
||||
},10);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var positionPrompt=function(){
|
||||
$jqib.css({
|
||||
position:(ie6)?"absolute":"fixed",
|
||||
height:$window.height(),
|
||||
width:"100%",
|
||||
top:(ie6)?$window.scrollTop():0,
|
||||
left:0,
|
||||
right:0,
|
||||
bottom:0
|
||||
});
|
||||
$jqif.css({
|
||||
position:"absolute",
|
||||
height:$window.height(),
|
||||
width:"100%",
|
||||
top:0,
|
||||
left:0,
|
||||
right:0,
|
||||
bottom:0
|
||||
});
|
||||
$jqi.css({
|
||||
position:"absolute",
|
||||
top:options.top,
|
||||
left:"50%",
|
||||
marginLeft:(($jqi.outerWidth()/2)*-1)
|
||||
});
|
||||
};
|
||||
|
||||
var stylePrompt=function(){
|
||||
$jqif.css({
|
||||
zIndex:options.zIndex,
|
||||
display:"none",
|
||||
opacity:options.opacity
|
||||
});
|
||||
$jqi.css({
|
||||
zIndex:options.zIndex+1,
|
||||
display:"none"
|
||||
});
|
||||
$jqib.css({
|
||||
zIndex:options.zIndex
|
||||
});
|
||||
};
|
||||
|
||||
var removePrompt=function(callCallback,clicked,msg,formvals){
|
||||
$jqi.remove();
|
||||
if(ie6){
|
||||
$body.unbind('scroll',ie6scroll);
|
||||
}
|
||||
$window.unbind('resize',positionPrompt);
|
||||
$jqif.fadeOut(options.overlayspeed,function(){
|
||||
$jqif.unbind('click',fadeClicked);
|
||||
$jqif.remove();
|
||||
if(callCallback){
|
||||
options.callback(clicked,msg,formvals);
|
||||
}
|
||||
$jqib.unbind('keypress',keyPressEventHandler);
|
||||
$jqib.remove();
|
||||
if(ie6&&!options.useiframe){
|
||||
$('select').css('visibility','visible');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
positionPrompt();
|
||||
stylePrompt();
|
||||
if(ie6){
|
||||
$window.scroll(ie6scroll);
|
||||
}
|
||||
$jqif.click(fadeClicked);
|
||||
$window.resize(positionPrompt);
|
||||
$jqib.bind("keydown keypress",keyPressEventHandler);
|
||||
$jqi.find('.'+options.prefix+'close').click(removePrompt);
|
||||
$jqif.fadeIn(options.overlayspeed);
|
||||
$jqi[options.show](options.promptspeed,options.loaded);
|
||||
$jqi.find('#'+options.prefix+'states .'+options.prefix+'_state:first .'+options.prefix+'defaultbutton').focus();
|
||||
if(options.timeout>0)setTimeout($.prompt.close,options.timeout);
|
||||
return $jqib;
|
||||
};
|
||||
|
||||
$.prompt.defaults={
|
||||
prefix:'jqi',
|
||||
classes:'',
|
||||
buttons:{
|
||||
Ok:true
|
||||
},
|
||||
loaded:function(){},
|
||||
submit:function(){
|
||||
return true;
|
||||
},
|
||||
callback:function(){},
|
||||
opacity:0.6,
|
||||
zIndex:999,
|
||||
overlayspeed:'slow',
|
||||
promptspeed:'fast',
|
||||
show:'fadeIn',
|
||||
focus:0,
|
||||
useiframe:false,
|
||||
top:"15%",
|
||||
persistent:true,
|
||||
timeout:0,
|
||||
state:{
|
||||
html:'',
|
||||
buttons:{
|
||||
Ok:true
|
||||
},
|
||||
focus:0,
|
||||
submit:function(){
|
||||
return true;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
$.prompt.currentPrefix=$.prompt.defaults.prefix;
|
||||
$.prompt.setDefaults=function(o){
|
||||
$.prompt.defaults=$.extend({},$.prompt.defaults,o);
|
||||
};
|
||||
|
||||
$.prompt.setStateDefaults=function(o){
|
||||
$.prompt.defaults.state=$.extend({},$.prompt.defaults.state,o);
|
||||
};
|
||||
|
||||
$.prompt.getStateContent=function(state){
|
||||
return $('#'+$.prompt.currentPrefix+'_state_'+state);
|
||||
};
|
||||
|
||||
$.prompt.getCurrentState=function(){
|
||||
return $('.'+$.prompt.currentPrefix+'_state:visible');
|
||||
};
|
||||
|
||||
$.prompt.getCurrentStateName=function(){
|
||||
var stateid=$.prompt.getCurrentState().attr('id');
|
||||
return stateid.replace($.prompt.currentPrefix+'_state_','');
|
||||
};
|
||||
|
||||
$.prompt.goToState=function(state,callback){
|
||||
$('.'+$.prompt.currentPrefix+'_state').slideUp('slow');
|
||||
$('#'+$.prompt.currentPrefix+'_state_'+state).slideDown('slow',function(){
|
||||
$(this).find('.'+$.prompt.currentPrefix+'defaultbutton').focus();
|
||||
if(typeof callback=='function')callback();
|
||||
});
|
||||
};
|
||||
|
||||
$.prompt.nextState=function(callback){
|
||||
var $next=$('.'+$.prompt.currentPrefix+'_state:visible').next();
|
||||
$('.'+$.prompt.currentPrefix+'_state').slideUp('slow');
|
||||
$next.slideDown('slow',function(){
|
||||
$next.find('.'+$.prompt.currentPrefix+'defaultbutton').focus();
|
||||
if(typeof callback=='function')callback();
|
||||
});
|
||||
};
|
||||
|
||||
$.prompt.prevState=function(callback){
|
||||
var $next=$('.'+$.prompt.currentPrefix+'_state:visible').prev();
|
||||
$('.'+$.prompt.currentPrefix+'_state').slideUp('slow');
|
||||
$next.slideDown('slow',function(){
|
||||
$next.find('.'+$.prompt.currentPrefix+'defaultbutton').focus();
|
||||
if(typeof callback=='function')callback();
|
||||
});
|
||||
};
|
||||
|
||||
$.prompt.close=function(){
|
||||
$('#'+$.prompt.currentPrefix+'box').fadeOut('fast',function(){
|
||||
$(this).remove();
|
||||
});
|
||||
};
|
||||
|
||||
$.fn.prompt=function(options){
|
||||
if(options==undefined)options={};
|
||||
|
||||
if(options.withDataAndEvents==undefined)options.withDataAndEvents=false;
|
||||
$.prompt($(this).clone(options.withDataAndEvents).html(),options);
|
||||
}
|
||||
})(jQuery);
|
||||
268
resources/jq_impromptu/jquery-impromptu.css
Normal file
268
resources/jq_impromptu/jquery-impromptu.css
Normal file
@@ -0,0 +1,268 @@
|
||||
/*
|
||||
------------------------------
|
||||
Impromptu's
|
||||
------------------------------
|
||||
*/
|
||||
.jqifade{
|
||||
position: absolute;
|
||||
background-color: #aaaaaa;
|
||||
z-index: 100 !important;
|
||||
}
|
||||
div.jqi{
|
||||
width: 400px;
|
||||
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
font-size: 11px;
|
||||
text-align: left;
|
||||
border: solid 1px #eeeeee;
|
||||
padding: 7px;
|
||||
z-index: 1000 !important;
|
||||
}
|
||||
div.jqi .jqicontainer{
|
||||
font-weight: bold;
|
||||
}
|
||||
div.jqi .jqiclose{
|
||||
position: absolute;
|
||||
top: 4px; right: -2px;
|
||||
width: 18px;
|
||||
cursor: default;
|
||||
color: #bbbbbb;
|
||||
font-weight: bold;
|
||||
}
|
||||
div.jqi .jqimessage{
|
||||
padding: 10px;
|
||||
line-height: 20px;
|
||||
color: #444444;
|
||||
}
|
||||
div.jqi .jqibuttons{
|
||||
text-align: right;
|
||||
padding: 5px 0 5px 0;
|
||||
border: solid 1px #eeeeee;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
div.jqi button{
|
||||
padding: 3px 15px;
|
||||
margin: 0 10px;
|
||||
background-color: #cc0000;
|
||||
border: solid 1px #f4f4f4;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
div.jqi button:hover{
|
||||
background-color: #ff1a00;
|
||||
}
|
||||
div.jqi button.jqidefaultbutton{
|
||||
/*background-color: #8DC05B;*/
|
||||
background-color: #299a0b;
|
||||
}
|
||||
.jqiwarning .jqi .jqibuttons{
|
||||
background-color: #BF5E26;
|
||||
}
|
||||
|
||||
/*
|
||||
------------------------------
|
||||
impromptu
|
||||
------------------------------
|
||||
*/
|
||||
.impromptuwarning .impromptu{ background-color: #aaaaaa; }
|
||||
.impromptufade{
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
div.impromptu{
|
||||
position: absolute;
|
||||
background-color: #cccccc;
|
||||
padding: 10px;
|
||||
width: 300px;
|
||||
text-align: left;
|
||||
}
|
||||
div.impromptu .impromptuclose{
|
||||
float: right;
|
||||
margin: -35px -10px 0 0;
|
||||
cursor: pointer;
|
||||
color: #213e80;
|
||||
}
|
||||
div.impromptu .impromptucontainer{
|
||||
background-color: #213e80;
|
||||
padding: 5px;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
}
|
||||
div.impromptu .impromptumessage{
|
||||
background-color: #415ea0;
|
||||
padding: 10px;
|
||||
}
|
||||
div.impromptu .impromptubuttons{
|
||||
text-align: center;
|
||||
padding: 5px 0 0 0;
|
||||
}
|
||||
div.impromptu button{
|
||||
padding: 3px 10px 3px 10px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
/*
|
||||
------------------------------
|
||||
columns ex
|
||||
------------------------------
|
||||
*/
|
||||
.colsJqifadewarning .colsJqi{ background-color: #b0be96; }
|
||||
.colsJqifade{
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
div.colsJqi{
|
||||
position: absolute;
|
||||
background-color: #d0dEb6;
|
||||
padding: 10px;
|
||||
width: 400px;
|
||||
text-align: left;
|
||||
}
|
||||
div.colsJqi .colsJqiclose{
|
||||
float: right;
|
||||
margin: -35px -10px 0 0;
|
||||
cursor: pointer;
|
||||
color: #bbbbbb;
|
||||
}
|
||||
div.colsJqi .colsJqicontainer{
|
||||
background-color: #e0eEc6;
|
||||
padding: 5px;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
height: 160px;
|
||||
}
|
||||
div.colsJqi .colsJqimessage{
|
||||
background-color: #c0cEa6;
|
||||
padding: 10px;
|
||||
width: 280px;
|
||||
height: 140px;
|
||||
float: left;
|
||||
}
|
||||
div.colsJqi .jqibuttons{
|
||||
text-align: center;
|
||||
padding: 5px 0 0 0;
|
||||
}
|
||||
div.colsJqi button{
|
||||
background: url(../images/button_bg.jpg) top left repeat-x #ffffff;
|
||||
border: solid #777777 1px;
|
||||
font-size: 12px;
|
||||
padding: 3px 10px 3px 10px;
|
||||
margin: 5px 5px 5px 10px;
|
||||
width: 75px;
|
||||
}
|
||||
div.colsJqi button:hover{
|
||||
border: solid #aaaaaa 1px;
|
||||
}
|
||||
|
||||
/*
|
||||
------------------------------
|
||||
brown theme
|
||||
------------------------------
|
||||
*/
|
||||
.brownJqiwarning .brownJqi{ background-color: #cccccc; }
|
||||
.brownJqifade{
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
div.brownJqi{
|
||||
position: absolute;
|
||||
background-color: transparent;
|
||||
padding: 10px;
|
||||
width: 300px;
|
||||
text-align: left;
|
||||
}
|
||||
div.brownJqi .brownJqiclose{
|
||||
float: right;
|
||||
margin: -20px 0 0 0;
|
||||
cursor: pointer;
|
||||
color: #777777;
|
||||
font-size: 11px;
|
||||
}
|
||||
div.brownJqi .brownJqicontainer{
|
||||
position: relative;
|
||||
background-color: transparent;
|
||||
border: solid 1px #5F5D5A;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
}
|
||||
div.brownJqi .brownJqimessage{
|
||||
position: relative;
|
||||
background-color: #F7F6F2;
|
||||
border-top: solid 1px #C6B8AE;
|
||||
border-bottom: solid 1px #C6B8AE;
|
||||
}
|
||||
div.brownJqi .brownJqimessage h3{
|
||||
background: url(../images/brown_theme_gradient.jpg) top left repeat-x #ffffff;
|
||||
margin: 0;
|
||||
padding: 7px 0 7px 15px;
|
||||
color: #4D4A47;
|
||||
}
|
||||
div.brownJqi .brownJqimessage p{
|
||||
padding: 10px;
|
||||
color: #777777;
|
||||
}
|
||||
div.brownJqi .brownJqimessage img.helpImg{
|
||||
position: absolute;
|
||||
bottom: -25px;
|
||||
left: 10px;
|
||||
}
|
||||
div.brownJqi .brownJqibuttons{
|
||||
text-align: right;
|
||||
}
|
||||
div.brownJqi button{
|
||||
background: url(../images/brown_theme_gradient.jpg) top left repeat-x #ffffff;
|
||||
border: solid #777777 1px;
|
||||
font-size: 12px;
|
||||
padding: 3px 10px 3px 10px;
|
||||
margin: 5px 5px 5px 10px;
|
||||
}
|
||||
div.brownJqi button:hover{
|
||||
border: solid #aaaaaa 1px;
|
||||
}
|
||||
|
||||
/*
|
||||
*------------------------
|
||||
* clean blue ex
|
||||
*------------------------
|
||||
*/
|
||||
.cleanbluewarning .cleanblue{ background-color: #acb4c4; }
|
||||
.cleanbluefade{ position: absolute; background-color: #aaaaaa; }
|
||||
div.cleanblue{ font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; position: absolute; background-color: #ffffff; width: 300px; font-size: 11px; text-align: left; border: solid 1px #213e80; }
|
||||
div.cleanblue .cleanbluecontainer{ background-color: #ffffff; border-top: solid 14px #213e80; padding: 5px; font-weight: bold; }
|
||||
div.cleanblue .cleanblueclose{ float: right; width: 18px; cursor: default; margin: -19px -12px 0 0; color: #ffffff; font-weight: bold; }
|
||||
div.cleanblue .cleanbluemessage{ padding: 10px; line-height: 20px; font-size: 11px; color: #333333; }
|
||||
div.cleanblue .cleanbluebuttons{ text-align: right; padding: 5px 0 5px 0; border: solid 1px #eeeeee; background-color: #f4f4f4; }
|
||||
div.cleanblue button{ padding: 3px 10px; margin: 0 10px; background-color: #314e90; border: solid 1px #f4f4f4; color: #ffffff; font-weight: bold; font-size: 12px; }
|
||||
div.cleanblue button:hover{ border: solid 1px #d4d4d4; }
|
||||
|
||||
/*
|
||||
*------------------------
|
||||
* Ext Blue Ex
|
||||
*------------------------
|
||||
*/
|
||||
.extbluewarning .extblue{ border:1px red solid; }
|
||||
.extbluefade{ position: absolute; background-color: #ffffff; }
|
||||
div.extblue{ border:1px #6289B6 solid; position: absolute; background-color: #CAD8EA; padding: 0; width: 300px; text-align: left; }
|
||||
div.extblue .extblueclose{ background-color: #CAD8EA; margin:2px -2px 0 0; cursor: pointer; color: red; text-align: right; }
|
||||
div.extblue .extbluecontainer{ background-color: #CAD8EA; padding: 0 5px 5px 5px; color: #000000; font:normal 11px Verdana; }
|
||||
div.extblue .extbluemessage{ background-color: #CAD8EA; padding: 0; margin:0 15px 15px 15px; }
|
||||
div.extblue .extbluebuttons{ text-align: center; padding: 0px 0 0 0; }
|
||||
div.extblue button{ padding: 1px 4px; margin: 0 10px; background-color:#cccccc; font-weight:normal; font-family:Verdana; font-size:10px; }
|
||||
|
||||
/*
|
||||
*------------------------
|
||||
* smooth Ex
|
||||
*------------------------
|
||||
*/
|
||||
.jqismoothfade{ position: absolute; background-color: #333333; }
|
||||
div.jqismooth{ width: 350px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; position: absolute; background-color: #ffffff; font-size: 11px; text-align: left; border: solid 3px #e2e8e6; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 7px; }
|
||||
div.jqismooth .jqismoothcontainer{ font-weight: bold; }
|
||||
div.jqismooth .jqismoothclose{ position: absolute; top: 0; right: 0; width: 18px; cursor: default; text-align: center; padding: 2px 0 4px 0; color: #727876; font-weight: bold; background-color: #e2e8e6; -moz-border-radius-bottomLeft: 5px; -webkit-border-bottom-left-radius: 5px; border-left: solid 1px #e2e8e6; border-bottom: solid 1px #e2e8e6; }
|
||||
div.jqismooth .jqismoothmessage{ padding: 10px; line-height: 20px; color: #444444; }
|
||||
div.jqismooth .jqismoothbuttons{ text-align: right; padding: 5px 0 5px 0; border: solid 1px #e2e8e6; background-color: #f2f8f6; }
|
||||
div.jqismooth button{ padding: 3px 10px; margin: 0 10px; background-color: #2F6073; border: solid 1px #f4f4f4; color: #ffffff; font-weight: bold; font-size: 12px; }
|
||||
div.jqismooth button:hover{ background-color: #728A8C; }
|
||||
div.jqismooth button.jqismoothdefaultbutton{ background-color: #BF5E26; }
|
||||
.jqismoothwarning .jqismooth .jqismoothbuttons{ background-color: #BF5E26; }
|
||||
Reference in New Issue
Block a user