Hi guys!
I want just to share my .v-table-scrollposition customization, because I love it :).
Works with valo theme only:
.v-table-scrollposition {
@include animation(valo-animate-in-fade 500ms);
}
.v-table-scrollposition > span:before {
content:'';
display: inline-block;
@include valo-spinner(24px, 4px, $v-focus-color, 1000ms);
margin-right: 5px;
position: relative;
top: 6px;
}
.v-table-scrollposition > span {
background-color: white;
border-radius: 22px;
padding: 10px;
font-weight: 400;
-webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.05);
box-shadow: 0 0px 3px rgba(0, 0, 0, 0.05);
}
Please, if you see any css problem/optimization, tell me
Enjoy!