ares-ide
Version:
A browser-based code editor and UI designer for Enyo 2 projects
29 lines (28 loc) • 618 B
CSS
/*
Put anything you reference with "url()" in ../assets/
This way, you can minify your application, and just remove the "source" folder for production
*/
.enyo-gridlist-imageitem {
width: 100%;
height: 100%;
color: #fff;
}
.enyo-gridlist-imageitem img {
display: block;
width: 100%;
}
.enyo-gridlist-imageitem .caption, .enyo-gridlist-imageitem .sub-caption {
text-align: center;
font-size: 10pt;
z-index: 10;
padding-top: 10px;
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
color: #fff;
}
.enyo-gridlist-imageitem.disabled {
opacity: 0.4;
filter: alpha(opacity=40);
}