/* SummerNote plugin for WonderCMS, CSS */
.fileItem {
     margin: 3px;
     float: left;
     width: 100px;
}
a.fileItem:link, a.fileItem:visited {
    padding: 4px 7px;
    text-decoration: none;
    display: inline-block;
}
a.fileItem:hover, a.fileItem:active {
    text-decoration: none;
    background-color: #e0efe0;
}

a.fileSelect {
    text-decoration: none;
    background-color: #e0efe0;
    font-weight: bolder;
}

thumb > span:after {
    content: "\f00e";
	font-family: FontAwesome;
    position: absolute;
	font-size: 22px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .6s;
    -webkit-transition: all .6s;
    background: rgba(0,0,0,0.7);
    color: #FFF;
    text-align: center;
    padding: 45px 0;
}
.thumb > span:hover:after {
    opacity:1;
}
.thumb img {
	width:100%
}
.thumb {
	border: 1px solid #aaa;
	padding: 2px;
	margin-bottom: 1px;
	position: relative;
	box-shadow: 0 1px 3px rgba(0,0,0,0.9);
	overflow: hidden;
	height: 90px
}
.thumb img {
    -webkit-transition: all .6s ease; /* Safari and Chrome */
  	-moz-transition: all .6s ease; /* Firefox */
  	-o-transition: all .6s ease; /* IE 9 */
  	-ms-transition: all .6s ease; /* Opera */
  	transition: all .6s ease;
}
.thumb:hover {
    box-shadow: 1px 2px 4px 1px rgba(100,150,100,0.9);
}
.thumbselect {
    box-shadow: 2px 3px 5px 2px rgba(100,150,100,0.9);
}
