more work theming the tile view
This commit is contained in:
parent
7f9ab491f2
commit
1810edae93
@ -23,7 +23,7 @@ class Text {
|
|||||||
$image = imagecreate($width,$height);
|
$image = imagecreate($width,$height);
|
||||||
imagecolorallocate($image,255,255,255);
|
imagecolorallocate($image,255,255,255);
|
||||||
$colour = imagecolorallocate($image,0,0,0);
|
$colour = imagecolorallocate($image,0,0,0);
|
||||||
$border = imagecolorallocate($image,64,64,64);
|
$border = imagecolorallocate($image,208,208,208);
|
||||||
|
|
||||||
$x1 = 0;
|
$x1 = 0;
|
||||||
$y1 = 0;
|
$y1 = 0;
|
||||||
|
@ -105,9 +105,6 @@ a,
|
|||||||
color: $link_colour;
|
color: $link_colour;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cloud-icon.tiles i {
|
|
||||||
color: #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover,
|
a:hover,
|
||||||
a:focus,
|
a:focus,
|
||||||
@ -1735,13 +1732,23 @@ dl.bb-dl > dd > li {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cloud-icon-container {
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
border: 1px solid #eee;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
.cloud-icon i {
|
.cloud-icon i {
|
||||||
font-size: 48px;
|
font-size: 32px;
|
||||||
|
color: #aaa;
|
||||||
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cloud-icon img {
|
.cloud-icon img {
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
|
border-radius: $radius;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cloud-title {
|
.cloud-title {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
{{if $parentpath}}
|
{{if $parentpath}}
|
||||||
<div class="cloud-container" >
|
<div class="cloud-container" >
|
||||||
<div class="cloud-icon tiles"><a href="{{$parentpath.path}}">
|
<div class="cloud-icon tiles"><a href="{{$parentpath.path}}">
|
||||||
<i class="fa fa-fw fa-level-up" ></i>
|
<div class="cloud-icon-container"><i class="fa fa-fw fa-level-up" ></i></div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="cloud-title"><a href="{{$parentpath.path}}">..</a>
|
<div class="cloud-title"><a href="{{$parentpath.path}}">..</a>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
{{if $item.photo_icon}}
|
{{if $item.photo_icon}}
|
||||||
<img src="{{$item.photo_icon}}" title="{{$item.type}}" >
|
<img src="{{$item.photo_icon}}" title="{{$item.type}}" >
|
||||||
{{else}}
|
{{else}}
|
||||||
<i class="fa fa-fw {{$item.iconFromType}}" title="{{$item.type}}"></i>
|
<div class="cloud-icon-container"><i class="fa fa-fw {{$item.iconFromType}}" title="{{$item.type}}"></i></div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user