pip-webui
Version:
HTML5 UI for LOB applications
127 lines (112 loc) • 2.31 kB
text/less
// @file CSS styles for composite toolbar control
// @copyright Digital Living Software Corp. 2014-2016
.pip-composite-toolbar {
//width: 100%;
display: block;
background-color: #f3f3f3 ;
width: 100%;
height: 48px;
justify-content: space-around;
.pip-composite-button{
height: 48px ;
font-size: 24px ;
margin: 0px ;
}
.icon-text-block {
color: rgb(117, 117, 117);
}
.icon-checkbox-on {
color: #CB7E99;
}
.icon-location {
color: #F9B257;
}
.icon-document {
color: #8CC475;
}
.icon-camera {
color: #4EBFD9;
}
.icon-time {
color: #0099FF;
}
/* pip-composite-button && animation */
.pip-composite-button{
flex: 1;
transition: all 0.5s linear;
}
.new-item
{
flex: .00001 ;
-webkit-animation: flexGrow 500ms ease forwards;
-o-animation: flexGrow 500ms ease forwards;
animation: flexGrow 500ms ease forwards;
}
.remove-item
{
flex: 1 ;
-webkit-animation: flexShrink 500ms ease forwards;
-o-animation: flexShrink 500ms ease forwards;
animation: flexShrink 500ms ease forwards;
}
@-webkit-keyframes flexGrow {
from {
flex: .00001;
}
to {
flex: 1 ;
}
}
@-o-keyframes flexGrow {
from {
flex: .00001;
}
to {
flex: 1 ;
}
}
@keyframes flexGrow {
from {
flex: .00001;
}
to {
flex: 1 ;
}
}
@-webkit-keyframes flexShrink {
from {
flex: 1;
}
to {
flex: .01 ;
flex: .00001 ;
width: 0px ;
min-width: 0px ;
padding: 0px ;
}
}
@-o-keyframes flexShrink {
from {
flex: 1;
}
to {
flex: .01 ;
flex: .00001 ;
width: 0px ;
min-width: 0px ;
padding: 0px ;
}
}
@keyframes flexShrink {
from {
flex: 1;
}
to {
flex: .01 ;
flex: .00001 ;
width: 0px ;
min-width: 0px ;
padding: 0px ;
}
}
}