_progress_panel.less 774 B

12345678910111213141516171819202122232425262728293031
  1. .progress-sprite(@count) when (@count >= 0) {
  2. .progress-sprite(@count - 1);
  3. &.progress-@{count} .fui-icon {
  4. background-position: 0 (-20px * (@count - 1));
  5. }
  6. }
  7. #tab-container .command-buttonset.progress {
  8. width: 130px;
  9. .fui-button {
  10. width: 20px;
  11. height: 20px;
  12. margin: 1px;
  13. .fui-label {
  14. display: none;
  15. }
  16. .fui-icon {
  17. display: block;
  18. height: 20px;
  19. width: 20px;
  20. background: url(../images/iconprogress.png) repeat-y;
  21. background-color: transparent;
  22. }
  23. padding: 2px;
  24. border-radius: 4px;
  25. .progress-sprite(9);
  26. &.fui-button-pressed {
  27. background-color: @button-active;
  28. }
  29. }
  30. }