the old "www/layout/<admin/frontend>/<template name>/..." layout is deprecated. new layout: www/layout/<admin|frontend>/<cache/css/images/javascript>/ The layout/<admin/frontend> is symlinked to www/<admin|frontend>/layout templates and lang are moved to includes www/includes/template/<admin/frontend> www/includes/lang/<admin/frontend> and no longer symlinked to any public facing folders The language po files have already been moved to 4dev/lang/<admin|frontend>/
29 lines
594 B
CSS
29 lines
594 B
CSS
.debug_message {
|
|
border-top: 1px solid #a4a4a4;
|
|
color: #a4a4a4;
|
|
font-size: 8px;
|
|
}
|
|
|
|
/* NEW VERSION with CSS key frame animation */
|
|
.progress {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
border: 20px solid rgba(255, 255, 255 ,0.25);
|
|
border-left-color: rgba(3, 155, 229 ,1);
|
|
border-top-color: rgba(3, 155, 229 ,1);
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
animation: rotate 600ms infinite linear;
|
|
/* align */
|
|
left: 0;
|
|
top: 0;
|
|
position: absolute;
|
|
z-index: 100;
|
|
}
|
|
/* Animation for above progress */
|
|
@keyframes rotate {
|
|
to {
|
|
transform: rotate(1turn)
|
|
}
|
|
} |