/**
 * Modal Filemanager
 */

#filemanager-modal {
  width: 80%;
  height: 75%;
  max-height: 75%;
  margin-left: -40%;
  top: 120px;
  margin-top: 0px;
  z-index: 500000;
}

#filemanager-modal .modal-body {

}

#filemanager-modal td img {
  height: 18px;
}

#filemanager-modal .modal-header h3 {
  background: url(/cms-assets/icons/hard-disk.png) no-repeat center left;
  background-size: 20px;
  opacity: .7;
  -moz-opacity: .7;
  -webkit-opacity: .7;
  -o-opacity: .7;
  padding-left: 28px;
  color: #000;
}

#filemanager-modal .modal-header a {
  position: relative;
  z-index: 11010;
}

#modal-version {
  float: right;
  text-align: right;
  color: #ccc;
  font-size: 11px;
  width: 40%;
}

.log-message {
  display: block;
  width: 50%;
  float: left;
  font-size: 11px;
  display: none;
}


/**
 *  Folder Tree
 */

.container-fluid > .sidebar {
  width: 23%;
  float: left;
}

.container-fluid > .content {
  width: 75%;
  float: right;
}

#ofm-tree {
  height: 440px;
  overflow-y: scroll;
}

#ofm-tree ul {
  list-style-type: none;
  display: none;
  padding-left: 0px;
}

#ofm-tree ul li {
  margin-top: 5px;
  font-size: 11px;
  padding-left: 10px;
}

#ofm-tree ul li a {
  opacity: .3;
  -moz-opacity: .3;
  -webkit-opacity: .3;
  -o-opacity: .3;
  -webkit-transition: opacity .3s linear;
  -moz-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
  color: #000;
  cursor: pointer;
}

#ofm-tree ul li a:hover, #ofm-tree ul li.open > a {
  opacity: .7;
  -moz-opacity: .7;
  -webkit-opacity: .7;
  -o-opacity: .7;
}
#ofm-tree ul li.hasChildren.open {
  background: url(/cms-assets/icons/small-arrow-down.png) no-repeat 0 5px;
}

#ofm-tree ul li img {
  margin-right: 7px;
}

/**
 *  file browser
 */

#contents {
  height: 300px;
  overflow: auto;
}

#ofm-leaf {
  list-style-type: none;
}

.ofm-actions {
  text-align: right;
}

#folder-name {
  display: none;
}

#upload-path {
  font-style: italic;
  font-weight: bold;
}

.table-striped tbody tr.picked td {
  background-color: #ffcc00;
  opacity: .5;
  -moz-opacity: .5;
  -webkit-opacity: .5;
  -o-opacity: -5;
}

.media-grid li.picked a {
  border: 1px solid #ffcc00;
  opacity: .5;
  -moz-opacity: .5;
  -webkit-opacity: .5;
  -o-opacity: -5;
}


/**
 * form controls
 */

.filemanager-form-panel {
  width: 540px;
}

.filemanager-form-panel .btn {
  margin-left: 5px;
}

.filemanager-form-preview {
  height: 18px;
  line-height: 18px;
  padding: 4px 4px 5px 4px;
  font-size: 13px;
  color: #808080;
  border-radius: 3px;
  /*border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  background: #eee;*/
width: 310px;
display: block;
}

.k-button.k-upload-button {
  border: 0px;
  background: 0px;
}

#ofm-leaf .box span {
  display: block;
  height: 40px;
  color: #999;
  text-align: center;
  cursor: normal;
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0;

  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#ofm-leaf .box span.visible {
  opacity: 1;
}

#ofm-leaf .box span:hover {
  cursor: normal;
}

