Skip to content

Commit

Permalink
Some style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
GodMod committed Jan 19, 2018
1 parent 5576549 commit 866c6b4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mediacenter_plugin_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static function __shortcuts()
}

//This Version is for EQdkp Plus 2.3.x
public $version = '2.2.5';
public $version = '2.2.6';
public $build = '';
public $copyright = 'GodMod';
public $vstatus = 'Alpha';
Expand Down
10 changes: 9 additions & 1 deletion templates/base_template/media_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@
$('#massupload_reset').on('click', function(evt){
storedFiles = [];
$('#files').html("");
$('#massuploadform')[0].reset();
});

$('#massupload_start').on('click', function(evt){
Expand Down Expand Up @@ -580,6 +581,8 @@
#files .filename {
float: left;
margin-top: 4px;
word-wrap: break-word;
max-width: 95%;
}

#files .fileprogress {
Expand Down Expand Up @@ -686,6 +689,11 @@
font-weight: normal;
}

@media all and (max-width: 899px) {
#files .fileprogress {
width: 95%;
}
}
</style>

<!-- IF S_NORMAL_HEADER -->
Expand Down Expand Up @@ -751,7 +759,7 @@ <h1 class="contentTitle">{L_mc_edit_media}</h1>
</div>
<!-- IF not S_EDIT -->
<div id="massupload">
<form id="editalbum" action="" method="post" enctype='multipart/form-data'>
<form id="massuploadform" action="" method="post" enctype='multipart/form-data'>
<fieldset class="settings mediumsettings">
<dl>
<dt><label>{L_mc_f_album}</label></dt>
Expand Down
3 changes: 3 additions & 0 deletions templates/base_template/mediacenter.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
margin-left: 10px;
}

.mcDashboardBox h3 {
word-break: break-word;
}
.mcPreviewImageSmall img {
background-color: @eqdkpContentContrastBackgroundColor;
border: 1px solid @eqdkpContentContrastBorderColor;
Expand Down

0 comments on commit 866c6b4

Please sign in to comment.