handsontable.removeRow.css 505 B

1234567891011121314151617181920212223
  1. /**
  2. * Handsontable RemoveRow extension. See `demo/buttons.html` for example usage
  3. */
  4. .handsontable.htRemoveRow th.htRemoveRow {
  5. text-align: center;
  6. }
  7. .handsontable.htRemoveRow th.htRemoveRow .btn {
  8. background-color: #BBB;
  9. border-radius: 9px;
  10. padding: 0 6px 0 6px;
  11. color: #FFF;
  12. cursor: pointer;
  13. font-size: 11px;
  14. font-weight: bold;
  15. display: none;
  16. margin: 0 auto;
  17. width: 10px;
  18. }
  19. .handsontable.htRemoveRow th.htRemoveRow .btn:hover {
  20. background-color: #777;
  21. }