kopia lustrzana https://github.com/OpenDroneMap/WebODM
68 wiersze
1.3 KiB
SCSS
68 wiersze
1.3 KiB
SCSS
.project-list-item{
|
|
min-height: 60px;
|
|
|
|
.project-name{
|
|
font-weight: bold;
|
|
}
|
|
|
|
.drag-drop-icon{
|
|
display: none;
|
|
position: absolute;
|
|
border-radius: 100%;
|
|
padding: 16px;
|
|
left: 48%;
|
|
top: 0;
|
|
font-size: 300%;
|
|
-webkit-animation: pulsate 0.5s ease-out;
|
|
-webkit-animation-iteration-count: infinite;
|
|
animation: pulsate 0.5s ease-out;
|
|
animation-iteration-count: infinite;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
@-webkit-keyframes pulsate {
|
|
0% {opacity: 0.5;}
|
|
50% {opacity: 1.0;}
|
|
100% {opacity: 0.5;}
|
|
}
|
|
@keyframes pulsate {
|
|
0% {opacity: 0.5;}
|
|
50% {opacity: 1.0;}
|
|
100% {opacity: 0.5;}
|
|
}
|
|
|
|
&.refreshing{
|
|
background-color: #eee;
|
|
}
|
|
|
|
-webkit-transition: background-color 1s ease;
|
|
transition: background-color 1s ease;
|
|
|
|
&.dz-drag-hover{
|
|
.drag-drop-icon{
|
|
display: block;
|
|
}
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
.project-links{
|
|
font-size: 90%;
|
|
i{
|
|
margin-right: 4px;
|
|
}
|
|
a{
|
|
margin-right: 12px;
|
|
}
|
|
}
|
|
|
|
.dz-preview{
|
|
display: none;
|
|
}
|
|
|
|
.row{
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
margin-top: 10px;
|
|
}
|
|
}
|