You are here

taxonomy_xml.css in Taxonomy import/export via XML 6.2

Same filename and directory in other branches
  1. 6 taxonomy_xml.css
  2. 7 taxonomy_xml.css
/**
 Small UI enhancements to the import form
 */
/* Hide unused options via js and css */
#data_source.filtered #edit-upload-file-wrapper{
  display:none;
}
#data_source.filtered #edit-url-wrapper{
  display:none;
}
#data_source.filtered #edit-filepath-wrapper{
  display:none;
}
#data_source.filtered #edit-service-wrapper{
  display:none;
}
#data_source.filtered #edit-format-wrapper{
  display:none;
}

#data_source.upload-file #edit-upload-file-wrapper{
  display:block;
}
#data_source.upload-file #edit-format-wrapper{
  display:block;
}

#data_source.url #edit-url-wrapper{
  display:block;
}
#data_source.url #edit-format-wrapper{
  display:block;
}

#data_source.filepath #edit-filepath-wrapper{
  display:block;
}
#data_source.filepath #edit-format-wrapper{
  display:block;
}


#data_source.service #edit-service-wrapper{
  display:block;
}


#data_source.service #edit-format-wrapper{
  display:none;
}

File

taxonomy_xml.css
View source
  1. /**
  2. Small UI enhancements to the import form
  3. */
  4. /* Hide unused options via js and css */
  5. #data_source.filtered #edit-upload-file-wrapper{
  6. display:none;
  7. }
  8. #data_source.filtered #edit-url-wrapper{
  9. display:none;
  10. }
  11. #data_source.filtered #edit-filepath-wrapper{
  12. display:none;
  13. }
  14. #data_source.filtered #edit-service-wrapper{
  15. display:none;
  16. }
  17. #data_source.filtered #edit-format-wrapper{
  18. display:none;
  19. }
  20. #data_source.upload-file #edit-upload-file-wrapper{
  21. display:block;
  22. }
  23. #data_source.upload-file #edit-format-wrapper{
  24. display:block;
  25. }
  26. #data_source.url #edit-url-wrapper{
  27. display:block;
  28. }
  29. #data_source.url #edit-format-wrapper{
  30. display:block;
  31. }
  32. #data_source.filepath #edit-filepath-wrapper{
  33. display:block;
  34. }
  35. #data_source.filepath #edit-format-wrapper{
  36. display:block;
  37. }
  38. #data_source.service #edit-service-wrapper{
  39. display:block;
  40. }
  41. #data_source.service #edit-format-wrapper{
  42. display:none;
  43. }