_fontpanel.less 639 B

12345678910111213141516171819202122232425262728293031
  1. #font-panel {
  2. .command-button {
  3. padding: 0;
  4. width: 20px;
  5. height: 20px;
  6. border: 1px solid transparent;
  7. background: transparent;
  8. &.active {
  9. border: 1px solid #ccd0d3;
  10. background: #fafcff;
  11. }
  12. &:hover {
  13. border: 1px solid #ccd0d3;
  14. background: #fff;
  15. }
  16. &:active {
  17. background: darken(#fafcff, 5%);
  18. }
  19. border-radius: 11px;
  20. margin-left: 5px;
  21. margin-top: 2px;
  22. margin-bottom: 2px !important;
  23. .fui-label {
  24. display: none;
  25. }
  26. }
  27. }