mirror of https://github.com/perkeep/perkeep.git
23 lines
535 B
CSS
23 lines
535 B
CSS
.cam-blobitemcontainer {
|
|
outline: 0; /* Do not show an outline when container has focus. */
|
|
border: 1px solid rgba(0,0,0,0);
|
|
position: relative;
|
|
white-space: nowrap;
|
|
transition: -webkit-transform 75ms ease-out;
|
|
transition: -moz-transform 75ms ease-out;
|
|
transition: -ms-transform 75ms ease-out;
|
|
margin-left: 36px;
|
|
}
|
|
|
|
.cam-blobitemcontainer.cam-dropactive {
|
|
border-color: #acf;
|
|
background: #e5efff;
|
|
}
|
|
.cam-blobitemcontainer-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.cam-blobitemcontainer>.cam-blobitem {
|
|
position: absolute;
|
|
}
|