﻿/* Messaging */
#jg_message_container
{
    position: fixed;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 2147483645;
}

* html #jg_message_container
{
    position: absolute;
}

#jg_message_inner
{
    position: relative;
    margin: 0 auto;
    width: 943px;
    padding: 8px 0 8px 5px;
    line-height: 20px;
    font-size: 12px;
}

#jg_message
{
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0; /*left 0 + right 0 => 100% breed */
    z-index: 6000;
    top: -1000px;
    display: none;
}
/* Message type colors*/
.jg_success
{
    background: #d7ffb0;
    border-bottom: solid 2px #6ea635;
    color: #5d8436;
}

.jg_warning
{
    background: #ffffb2;
    border-bottom: solid 2px #d0bb6e;
    color: #000;
}

.jg_error
{
    background: #ffb0b7;
    border-bottom: solid 2px #a6353e;
    color: #a6353e;
}

.jg_message_flash
{
    background: #fff !important;
}
/* Message type icons */
#jg_message.jg_success #jg_message_body
{
    padding-left: 20px;
    background: url(images/info.gif) no-repeat 0 0;
}

#jg_message.jg_warning #jg_message_body
{
    padding-left: 22px;
    background: url(images/warning.gif) no-repeat 0 0;
}

#jg_message.jg_error #jg_message_body
{
    padding-left: 20px;
    background: url(images/error.gif) no-repeat 0 0;
}
/* Hide message button */
#jg_message_hide
{
    width: 16px;
    height: 16px;
    float: right;
    cursor: pointer;
    background-repeat: no-repeat;
}

.jg_error #jg_message_hide
{
    background-image: url(images/error_hide.gif);
}

.jg_success #jg_message_hide
{
    background-image: url(images/info_hide.gif);
}

.jg_warning #jg_message_hide
{
    background-image: url(images/warning_hide.gif);
}
/* Loader */
#jg_loader_container
{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 26px;
    display: none;
}

* html #jg_loader_container
{
    position: absolute;
}

#jg_loader
{
    height: 26px;
    background: url(images/loading_bg.gif) repeat-x;
    position: relative;
    z-index: 6000;
}

    #jg_loader div
    {
        position: absolute;
        left: -432px;
        width: 432px;
        height: 26px;
        background: url(images/loading.png) no-repeat;
    }
/* Error highlighting */
input.error, textarea.error
{
    background-color: #ffa0a0;
}

/*fix voor scrollbar bij datepicker bij init + fix datepicker niet in fancybox zichtbaar*/
#ui-datepicker-div
{
    display: none;
    z-index: 1200;
}
/*block ui*/
#blockui, .blockui
{
    z-index: 5000;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: wait;
}

/* indien de tekst langer is dan de box, dan afgekapt met drie puntjes. 
De box moet een (max)width hebben. IE7+, FF, Safari, Opera, Chrome
*/
.dynamicTextBox
{
    text-overflow: ellipsis;
    display: -moz-inline-block;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}

.ghostText
{
    color: #888;
}

.highlight
{
    background-color: #fffebc;
}


span.deleteicon
{
    position: relative;
}

span.deleteicon span
{
    position: absolute;
    display: block;
    top: 3px;
    right: 0px;
    width: 16px;
    height: 16px;
    background: url('http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=4') 0 -690px;
    cursor: pointer;
}

span.deleteicon input
{
    padding-right: 16px;
}

/**
    Bootstrap-fixes
**/

/* Button-group actieve knop donkerder */
.bootstrap .btn:active, .bootstrap .btn.active
{
    background-color: #C4C4C4;
}
/* Progress bar donkerder */
.bootstrap .progress {
  background-color: #c4c4c4;
  background-image: -moz-linear-gradient(top, #e4e4e4, #e8e8e8);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e4e4e4), to(#e8e8e8));
  background-image: -webkit-linear-gradient(top, #e4e4e4, #e8e8e8);
  background-image: -o-linear-gradient(top, #e4e4e4, #e8e8e8);
  background-image: linear-gradient(to bottom, #e4e4e4, #e8e8e8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe4e4e4', endColorstr='#ffe8e8e8', GradientType=0);
}
/* Tekst van input velder donkerer */
.bootstrap input[type="text"],
.bootstrap input[type="password"],
.bootstrap textarea {
  color: #303030;
}

/*iframe hides*/
body.inFrame .hide-in-frame { display: none !important; }
body.not-inFrame .show-in-frame { display: none !important; }


.empty-hidden:empty
{
    margin: 0;
    padding: 0;
    display: none !important;
}
/* bootstrap*/
.carousel-indicators li { cursor: pointer; }
.icon-spacer-right {
    margin-right: 5px;
}
.fa-spacer-right {
    margin-right: 5px;
}

/*#region sql query*/
.sql .keyword {
    color: #428bca;
}
.sql .function {
    color: #FF00FF
}
.sql .string {
    color: brown;
}
.sql .param {
    font-weight: bold;
    color: green;
}
.sql .datatype {
    color: black;
    font-weight: bold;
}
/*#endregion*/