_TableInputCSV.scss 392 B

123456789101112131415161718192021222324
  1. .gf-table-input-csv {
  2. position: relative;
  3. }
  4. .gf-table-input-csv textarea {
  5. height: 100%;
  6. width: 100%;
  7. resize: none;
  8. }
  9. .gf-table-input-csv footer {
  10. position: absolute;
  11. bottom: 15px;
  12. right: 15px;
  13. border: 1px solid #222;
  14. background: #ccc;
  15. padding: 1px 4px;
  16. font-size: 80%;
  17. cursor: pointer;
  18. }
  19. .gf-table-input-csv footer.gf-table-input-csv-err {
  20. background: yellow;
  21. }