view default/static/file.css @ 122:9d95b58200df

file: files handling first draft: file/overview.html generate a simple files/directories listing
author Goffi <goffi@goffi.org>
date Sun, 11 Mar 2018 19:21:46 +0100
parents
children 44b838bcc0d6
line wrap: on
line source

#files {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.file {
    padding: 0 0 0.5em;
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    overflow-wrap: break-word;
}

.file:hover {
    background: #ddd;
    overflow: visible;
}

.file a {
    text-decoration: none;
}

.file__icon {
    height: 3em;
    display: block;
    margin: 0 auto;
}

.icon--soft {
    fill: #777;
}

@media (min-width: 500px) {
    .file {
        padding: 1em;
        width: 170px;
    }
}