/**
 *  Файл:             window.css
 *  Модуль:           d0dger
 *  Описание:         файл таблицы стилей для окон
 *
 *  Версия:           0.00.03
 *  Дата создания:    2020-05-02
 *  Дата модификации: 2023-01-29
 * ---------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- Блок окона --- */
.windows{
   width:400px;
   height:200px;
   min-width:50px;
   min-height:50px;
   padding:2px;
   /*
   display:flex;
   flex-direction:column;
   */
   position:fixed;
 }
.windows>div{
   height:99%;
   height:calc(100% - 3px);
   border:#1C6891 1px solid;
   background-color:#fffff0;
   -webkit-border-radius:4px;
    -khtml-border-radius:4px;
     -icab-border-radius:4px;
      -moz-border-radius:4px;
       -ms-border-radius:4px;
        -o-border-radius:4px;
           border-radius:4px;
   -webkit-opacity:0.9;
    -khtml-opacity:0.9;
     -icab-opacity:0.9;
      -moz-opacity:0.9;
       -ms-opacity:0.9; 
        -o-opacity:0.9;
           opacity:0.9;
   display:flex;
   flex-direction:column;
   -webkit-box-shadow:4px 4px 10px -2px #6495ED;
    -khtml-box-shadow:4px 4px 10px -2px #6495ED;
     -icab-box-shadow:4px 4px 10px -2px #6495ED;
      -moz-box-shadow:4px 4px 10px -2px #6495ED;
       -ms-box-shadow:4px 4px 10px -2px #6495ED;
        -o-box-shadow:4px 4px 10px -2px #6495ED;
           box-shadow:4px 4px 10px -2px #6495ED;
 }
.windowsInfo{
   display:none;
 }
.windowsInfo>div{
   box-shadow:0px 0px 50px 10px #2F4F4F;
   -webkit-opacity:1;
    -khtml-opacity:1;
     -icab-opacity:1;
      -moz-opacity:1;
       -ms-opacity:1; 
        -o-opacity:1;
           opacity:1;
 }
.windows .header{
   height:18px;
   margin:0px;
   padding:1px 0px;
   background:url("../img/windows.png") 50% 50% repeat-x #DFEFFC;
   -webkit-border-radius:4px 4px 0px 0px;
    -khtml-border-radius:4px 4px 0px 0px;
     -icab-border-radius:4px 4px 0px 0px;
      -moz-border-radius:4px 4px 0px 0px;
       -ms-border-radius:4px 4px 0px 0px;
        -o-border-radius:4px 4px 0px 0px;
           border-radius:4px 4px 0px 0px;
   border-bottom:#1C6891 1px solid;
   overflow:hidden;
   white-space:nowrap;
 }
.windows .headerTxt{
   position:relative;
   top:3px;
   padding:0px 12px;
   font-family:Verdana,"DejaVu Sans","Geneva CY";
   font-size:10px;
   font-weight:bold;
   text-align:left;
   color:#2E6E9E;
   overflow:hidden;
   white-space:nowrap;
   height:20px;
 }
.windows .aButton{
   margin:0px 4px;
   float:right;
 }
.windows .content{
   flex:1;
   margin:0px 0px 1px 0px;
   padding:3px 10px;
   overflow:auto;
 }
/* ----------------------------------------------------------------------------- Блок отладки --- */
.debug{
   right:50px;
   top:20px;
 }
.debug .msg{
   margin:5px 0px;
   padding:0px;
   word-break:break-all;
 }
.debug .menu{
   cursor:pointer;
   display:inline-block;
   padding:1px !important;
 }
.debug .menu:hover{
   border:1px solid #79b7e7;
   background: #d0e5f5 url("../img/icon-bg.png") 50% 50% repeat-x;
   padding:0px !important;
   -webkit-border-radius:5px;
    -khtml-border-radius:5px;
     -icab-border-radius:5px;
      -moz-border-radius:5px;
       -ms-border-radius:5px;
        -o-border-radius:5px;
           border-radius:5px;
 }
.debug .icon{
   padding:0px;
   display:inline-block;
   text-indent:-99999px;
   overflow:hidden;
   background-repeat:no-repeat;
   width:17px;
   height:16px; 
   position:relative;
   background-position:-160px 0px;
   background-image:url("../img/icons-default.png");
 }
.debug .icon:hover{
   background-image:url("../img/icons-hover.png");
 }
.debug .icon-recycled{background-position:-176px  -96px;}
.debug .icon-move    {background-position: -32px  -80px;}
.debug .icon-close   {background-position: -80px -128px;}
.debug .icon-copy    {background-position: -48px  -80px;}
/* ------------------------------------------------------------------------------------- Конец -- */

