ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "shortpixel-folderbrowser.scss"

Full Path: /home/zcziejy/ryadselyen/res/scss/shortpixel-folderbrowser.scss
File size: 1.56 KB
MIME-type: text/plain
Charset: utf-8

// Shortpixel FolderTree Component

.sp-folder-picker
{
    position :relative;
    border: 1px solid #000;
    margin: 8px 0;
    max-height: 50vh;
    overflow-y: scroll;

    .loading {
      background: rgba(0,0,0,0.4);
      position: absolute;
      width: 100%;
      height: 100%;
      h3 {
          font-size: 30px;
          font-weight: bold;
          left: 50%;
          color: #fff;
          text-align: center;
      }
    }

    ul {
      margin-top: 8px;
      margin-left: 35px;
      &.expanded {
         display: block;
      }
      &.collapsed {
         display: none;
      }
    }

    // item
    .folder
    {
       line-height: 20px;
       i {
         margin-right: 8px;
         vertical-align: top;
         width: 20px;
         height: 20px;
         display: inline-block;
       }
       a {
          cursor: pointer;
          color: #000;
        }
        &.selected > a {
            font-weight: 700;
        }
        &.closed > a > i {
          background: url('../img/filebrowser/folder-closed.svg') center center;
          background-repeat: no-repeat;
          background-size: 20px 20px;
          fill: #ff0000;
        }
        &.open > a > i {
          background: url('../img/filebrowser/folder-open.svg') center center;
          background-repeat: no-repeat;
          background-size: 20px 20px;
        }
        &.is_active > a {
           color: #ccc;
        }
    }


} // sp-folder-picker

// The whole modal space
.modal-folder-picker
{
  .sp-folder-picker-selected {
     display: inline-block;
     padding: 6px 0;
  }

}