No changes
This commit is contained in:
parent
8680a02b13
commit
b6b398f5bf
17374 changed files with 2475441 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
a:before {
|
||||
display: none;
|
||||
}
|
||||
.form-group {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,101 @@
|
|||
.viewitem {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.file-operations {
|
||||
display: inline-block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.operations-button
|
||||
{
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.operations-button:before {
|
||||
font-family: FontAwesome;
|
||||
display: inline-block;
|
||||
margin-right: 2px;
|
||||
}
|
||||
.operations-button img {
|
||||
display: none;
|
||||
}
|
||||
.operations-button div {
|
||||
display: inline-block;
|
||||
}
|
||||
a[href^="?m=litefm&home_id="] {
|
||||
margin-right: 5px;
|
||||
}
|
||||
i.fa.fa-folder-open-o {
|
||||
color: #ffe699;
|
||||
}
|
||||
#remove:before {
|
||||
content: "\f1f8";
|
||||
}
|
||||
#rename:before {
|
||||
content: "\f044";
|
||||
}
|
||||
#move:before {
|
||||
content: "\f047";
|
||||
}
|
||||
#copy:before {
|
||||
content: "\f24d";
|
||||
}
|
||||
#compress:before {
|
||||
content: "\f1c6";
|
||||
}
|
||||
#uncompress:before {
|
||||
content: "\f1c6";
|
||||
}
|
||||
#create_file:before {
|
||||
content: "\f044";
|
||||
}
|
||||
#create_folder:before {
|
||||
content: "\f114";
|
||||
}
|
||||
#upload:not(form):before {
|
||||
content: "\f093";
|
||||
}
|
||||
|
||||
|
||||
.progress {
|
||||
height: auto !important;
|
||||
}
|
||||
#upload [name="upload"] {
|
||||
padding: 5px 10px;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
border-radius: 3px;
|
||||
border: 1px solid transparent;
|
||||
background-image: -webkit-linear-gradient(top, #1997c6 0, #126e90 100%);
|
||||
background-image: -o-linear-gradient(top, #1997c6 0, #126e90 100%);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1997c6), to(#126e90));
|
||||
background-image: linear-gradient(to bottom, #1997c6 0, #126e90 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1997c6', endColorstr='#ff126e90', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #116787;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.ui-dialog-titlebar-close {
|
||||
border-radius: 3px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
[id^="fileid"] {
|
||||
position: relative;
|
||||
}
|
||||
[id^="progress"] {
|
||||
height: 5px !important;
|
||||
border: none !important;
|
||||
border-radius: 2px;
|
||||
width: 96% !important;
|
||||
}
|
||||
[id^="progress"] > div {
|
||||
background: #1997c6 !important;
|
||||
height: 5px !important;
|
||||
border-radius: 2px !important;
|
||||
-webkit-transition: width 0.2s ease-in-out;
|
||||
-moz-transition: width 0.2s ease-in-out;
|
||||
-o-transition: width 0.2s ease-in-out;
|
||||
transition: width 0.2s ease-in-out;
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
$(document).ready(function() {
|
||||
$('.operations-button').addClass('btn').addClass('btn-xs').addClass('btn-primary');
|
||||
$('.main [href^="?m=gamemanager&p=game_monitor&home_id="]').addClass('btn').addClass('btn-primary').addClass('btn-sm');
|
||||
|
||||
$('img[src="images/folder.png"]').replaceWith('<i class="fa fa-folder-open-o" aria-hidden="true"></i>');
|
||||
$('img[src="images/txt.png"]').replaceWith('<i class="fa fa-pencil-square-o" aria-hidden="true"></i>');
|
||||
$('img[src="images/exec.png"]').replaceWith('<i class="fa fa-cog" aria-hidden="true"></i>');
|
||||
|
||||
$('.unlocked').children('span').addClass('btn').addClass('btn-xs').addClass('btn-danger').css('min-width','80px');
|
||||
$('.locked').children('span').addClass('btn').addClass('btn-xs').addClass('btn-success').css('min-width','80px');
|
||||
|
||||
$('[href*="&item="], [href^="javascript:downloadFile"]').addClass('label').addClass('label-default');
|
||||
$('[href$="&p=read_file"]').removeClass('label').removeClass('label-default').addClass('btn').addClass('btn-primary').addClass('btn-xs');
|
||||
|
||||
/* *** Long Name Fix *** */
|
||||
$('td > h3').each(function(){
|
||||
$(this).parent('td').attr('style', 'max-width:400px');
|
||||
$(this).attr('title', $(this).text()).attr('style', 'overflow:hidden;text-overflow:ellipsis;display:inline-block;white-space:nowrap;max-width:100%;');
|
||||
});
|
||||
});
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue