owncloud/core

View on GitHub
apps/files/css/detailsView.css

Summary

Maintainability
Test Coverage
#app-sidebar .detailFileInfoContainer {
    min-height: 50px;
    padding: 15px;
}

#app-sidebar .detailFileInfoContainer > div {
    clear: both;
}

#app-sidebar .mainFileInfoView {
    margin-right: 20px; /* accommodate for close icon */
    float:left;
    display:block;
    width: 100%;
}

#app-sidebar .mainFileInfoView .icon {
    display: inline-block;
    background-size: 16px 16px;
}

#app-sidebar .mainFileInfoView .permalink {
    margin-left: 10px;
    opacity: .5;
}
#app-sidebar .mainFileInfoView .permalink-field>input {
    clear: both;
    width: 90%;
}

#app-sidebar .file-details-container {
    display: inline-block;
    float: left;
}

#app-sidebar .thumbnailContainer.image {
    margin-left: -15px;
    margin-right: -35px; /* 15 + 20 for the close button */
    margin-top: -15px;
}

#app-sidebar .thumbnailContainer.image.portrait {
    margin: 0; /* if we don't fit the image anyway we give it back the margin */
}

#app-sidebar .image .thumbnail {
    width:100%;
    display:block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    float: none;
    margin: 0;
    height: auto;
}

#app-sidebar .image .thumbnail .stretcher {
    content: '';
    display: block;
    padding-bottom: 56.25%; /* sets height of .thumbnail to 9/16 of the width */
}

#app-sidebar .image.portrait .thumbnail {
    background-position: 50% top;
}

#app-sidebar .image.portrait .thumbnail {
    background-size: contain;
}

#app-sidebar .thumbnail {
    width: 75px;
    height: 75px;
    display: inline-block;
    float: left;
    margin-right: 10px;
    background-size: 75px;
}

#app-sidebar .ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#app-sidebar .fileName {
    font-size: 16px;
    padding-top: 13px;
    padding-bottom: 3px;
}

#app-sidebar .fileName h3 {
    max-width: 280px;
    display: inline-block;
    padding: 5px 0;
    margin: -5px 0;
}

#app-sidebar .file-details {
    color: #999;
}

#app-sidebar .action-favorite {
    vertical-align: sub;
    padding: 10px;
    margin: -10px;
}

#app-sidebar .action-favorite > span{
    opacity: .7 !important;
}

#app-sidebar .detailList {
    float: left;
}

#app-sidebar .close {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    opacity: .5;
}