[ Index ]

WordPress Cross Reference

title

Body

[close]

/wp-includes/js/thickbox/ -> thickbox.css (source)

   1  
   2  /* ----------------------------------------------------------------------------------------------------------------*/
   3  /* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
   4  /* ----------------------------------------------------------------------------------------------------------------*/
   5  #TB_window {
   6      font: 12px "Open Sans", sans-serif;
   7      color: #333333;
   8  }
   9  
  10  #TB_secondLine {
  11      font: 10px "Open Sans", sans-serif;
  12      color:#666666;
  13  }
  14  
  15  .rtl #TB_window,
  16  .rtl #TB_secondLine {
  17      font-family: Tahoma, sans-serif;
  18  }
  19  
  20  :lang(he-il) .rtl #TB_window,
  21  :lang(he-il) .rtl #TB_secondLine {
  22      font-family: Arial, sans-serif;
  23  }
  24  
  25  #TB_window a:link {color: #666666;}
  26  #TB_window a:visited {color: #666666;}
  27  #TB_window a:hover {color: #000;}
  28  #TB_window a:active {color: #666666;}
  29  #TB_window a:focus{color: #666666;}
  30  
  31  /* ----------------------------------------------------------------------------------------------------------------*/
  32  /* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
  33  /* ----------------------------------------------------------------------------------------------------------------*/
  34  #TB_overlay {
  35      position: fixed;
  36      z-index:510; /* should overlap theme modal, which is 500 on mobile. */
  37      top: 0px;
  38      left: 0px;
  39      height:100%;
  40      width:100%;
  41  }
  42  
  43  .TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
  44  .TB_overlayBG {
  45      background-color:#000;
  46      -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  47      filter:alpha(opacity=75);
  48      -moz-opacity: 0.75;
  49      opacity: 0.75;
  50  }
  51  
  52  * html #TB_overlay { /* ie6 hack */
  53       position: absolute;
  54       height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  55  }
  56  
  57  #TB_window {
  58      position: fixed;
  59      background: #ffffff;
  60      z-index: 510; /* should overlap theme modal, which is 500 on mobile. */
  61      color:#000000;
  62      visibility: hidden;
  63      text-align:left;
  64      top:50%;
  65      left:50%;
  66      border: 1px solid #555;
  67      -moz-box-shadow: rgba(0,0,0,1) 0 4px 30px;
  68      -webkit-box-shadow: rgba(0,0,0,1) 0 4px 30px;
  69      -khtml-box-shadow: rgba(0,0,0,1) 0 4px 30px;
  70      box-shadow: rgba(0,0,0,1) 0 4px 30px;
  71  }
  72  
  73  * html #TB_window { /* ie6 hack */
  74  position: absolute;
  75  margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
  76  }
  77  
  78  #TB_window img#TB_Image {
  79      display:block;
  80      margin: 15px 0 0 15px;
  81      border-right: 1px solid #ccc;
  82      border-bottom: 1px solid #ccc;
  83      border-top: 1px solid #666;
  84      border-left: 1px solid #666;
  85  }
  86  
  87  #TB_caption{
  88      height:25px;
  89      padding:7px 30px 10px 25px;
  90      float:left;
  91  }
  92  
  93  #TB_closeWindow{
  94      height:25px;
  95      padding:11px 25px 10px 0;
  96      float:right;
  97  }
  98  
  99  #TB_closeAjaxWindow{
 100      padding:6px 10px 0;
 101      text-align:right;
 102      float:right;
 103  }
 104  
 105  #TB_closeAjaxWindow a {
 106      text-decoration: none;
 107  }
 108  
 109  #TB_ajaxWindowTitle{
 110      float:left;
 111      padding:6px 10px 0;
 112  }
 113  
 114  #TB_title{
 115      background-color:#e8e8e8;
 116      height:27px;
 117  }
 118  
 119  #TB_ajaxContent{
 120      clear:both;
 121      padding:2px 15px 15px 15px;
 122      overflow:auto;
 123      text-align:left;
 124      line-height:1.4em;
 125  }
 126  
 127  #TB_ajaxContent.TB_modal{
 128      padding:15px;
 129  }
 130  
 131  #TB_ajaxContent p{
 132      padding:5px 0px 5px 0px;
 133  }
 134  
 135  #TB_load{
 136      position: fixed;
 137      display:none;
 138      z-index:103;
 139      top: 50%;
 140      left: 50%;
 141      background-color: #E8E8E8;
 142      border: 1px solid #555;
 143      margin: -45px 0pt 0pt -125px;
 144      padding: 40px 15px 15px;
 145  }
 146  
 147  * html #TB_load { /* ie6 hack */
 148  position: absolute;
 149  margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
 150  }
 151  
 152  #TB_HideSelect{
 153      z-index:99;
 154      position:fixed;
 155      top: 0;
 156      left: 0;
 157      background-color:#fff;
 158      border:none;
 159      filter:alpha(opacity=0);
 160      -moz-opacity: 0;
 161      opacity: 0;
 162      height:100%;
 163      width:100%;
 164  }
 165  
 166  * html #TB_HideSelect { /* ie6 hack */
 167       position: absolute;
 168       height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
 169  }
 170  
 171  #TB_iframeContent{
 172      clear:both;
 173      border:none;
 174      margin-bottom:-1px;
 175      _margin-bottom:1px;
 176  }
 177  
 178  .tb-close-icon {
 179      height: 16px;
 180      margin: -3px -3px 0 0;
 181      width: 16px;
 182  }
 183  
 184  .tb-close-icon:before {
 185      content: '\f158';
 186      color: #ccc;
 187      font: normal 20px/1 'dashicons';
 188      speak: none;
 189      vertical-align: middle;
 190      -webkit-font-smoothing: antialiased;
 191      -moz-osx-font-smoothing: grayscale;
 192  }
 193  
 194  .tb-close-icon:hover:before {
 195      color: #fff;
 196  }


Generated: Tue Mar 25 01:41:18 2014 WordPress honlapkészítés: online1.hu