PhocaCz / PhocaDownload

Phoca Download is Joomla! CMS extension. Component which displays downloadable documents on website.
http://www.phoca.cz/phocadownload
Other
10 stars 6 forks source link

Multiple Upload File: icon is not displayed #13

Closed Kostelano closed 3 years ago

Kostelano commented 4 years ago

Good afternoon! Small problem - the icon is not displayed in the field for multi-uploading files.

Screenshot_1

Mozilla Phoca Download 3.2.1

PhocaCz commented 4 years ago

Hi, thank you for the info, it is rendered by Glyphicons which are not loaded. Will be fixed in next version.

PhocaCz commented 4 years ago

Change in: media\com_phocadownload\css\administrator\phocadownload.css

FROM:


ul.plupload_filelist li .plupload_file_name:before {
    font-family: 'Glyphicons Halflings';
    color: #d0d0d0;
    content: "\e022";
    float: left;
    margin: 0px 5px 5px 0px;
    padding-bottom: 2px;
}
...
li.plupload_droptext:before {
    font-family: 'Glyphicons Halflings';
    color: #d0d0d0;
    content: "\e022 ";
    font-size: 200%;
    text-align: center;
    margin: 0px auto;
    /*display: block-inline;*/
    float:none;
}

TO:

ul.plupload_filelist li .plupload_file_name:before {
    font-family: 'JoomlaFont' !important;
    color: #d0d0d0;
    content: "\13b2a";
    float: left;
    margin: 0px 5px 5px 0px;
    padding-bottom: 2px;
}
...
li.plupload_droptext:before {
    font-family: 'JoomlaFont' !important;
    color: #d0d0d0;
    content: "\13b2a";
    font-size: 200%;
    text-align: center;
    margin: 0px auto;
    /*display: block-inline;*/
    float:none;
}

img

Kostelano commented 3 years ago

Thanks for the fix, close.