Skip to content

Commit

Permalink
RWD adjustment of image view
Browse files Browse the repository at this point in the history
  • Loading branch information
youchenlee committed Mar 12, 2016
1 parent e7eae80 commit a3f2e6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/images.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@if((sizeof($files) > 0) || (sizeof($directories) > 0))

@foreach($directories as $key => $dir_name)
<div class="col-sm-6 col-md-2">
<div class="col-sm-3 col-md-2">
<div class="thumbnail text-center" data-id="{{ $dir_name['long'] }}">
<a data-id="{{ $dir_name['long'] }}" class="folder-icon pointer folder-item">
<img src="/vendor/laravel-filemanager/img/folder.png">
Expand Down Expand Up @@ -34,7 +34,7 @@
<?php $file_name = $file_info[$key]['name'];?>
<?php $thumb_src = $thumb_url . $file_name;?>

<div class="col-sm-6 col-md-2 img-row">
<div class="col-sm-3 col-md-2 img-row">

<div class="thumbnail thumbnail-img" data-id="{{ $file_name }}" id="img_thumbnail_{{ $key }}">
<img id="{{ $file }}" src="{{ $thumb_src }}" alt="" class="pointer" onclick="useFile('{{ $file_name }}')">
Expand Down

0 comments on commit a3f2e6a

Please sign in to comment.