quote-control.less 658 B

1234567891011121314151617181920212223242526
  1. // Quote control is small tooltip with "quote" button
  2. // It's displayed next to selected text in posts
  3. .quote-control-arrow {
  4. width: 0;
  5. height: 0;
  6. border-left: @quote-control-padding solid transparent;
  7. border-right: @quote-control-padding solid transparent;
  8. border-bottom: @quote-control-padding solid @quote-control-bg;
  9. position: relative;
  10. left: @quote-control-radius;
  11. }
  12. .quote-control-inner {
  13. padding: @quote-control-padding;
  14. background: @quote-control-bg;
  15. border-radius: @quote-control-radius;
  16. }
  17. .quote-control-btn {
  18. background: @quote-control-btn-bg;
  19. border-color: @quote-control-btn-bg;
  20. color: @quote-control-btn-color;
  21. }