mirror of
https://github.com/Icinga/icinga-php-library.git
synced 2025-07-02 03:14:30 +02:00
41 lines
654 B
Plaintext
41 lines
654 B
Plaintext
form .uploaded-files {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
> li:not(:last-of-type) {
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
button[type="submit"].remove-uploaded-file {
|
|
.icon {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
&:focus, &:hover {
|
|
cursor: pointer;
|
|
|
|
.icon {
|
|
color: red;
|
|
}
|
|
}
|
|
}
|
|
|
|
// text-overflow: ellipsis layout rules, yes, exclusively
|
|
> li {
|
|
display: flex;
|
|
|
|
> button[type="submit"].remove-uploaded-file {
|
|
display: inline-flex;
|
|
flex: 1 1 auto;
|
|
width: 0;
|
|
|
|
> span {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|