mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 07:39:44 +02:00
26 lines
416 B
CSS
26 lines
416 B
CSS
.button {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
outline: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.hoverable:hover {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.wrapper {
|
|
border-radius: 3px;
|
|
box-sizing: border-box;
|
|
color: #fff;
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
min-width: 40px;
|
|
outline: none;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|