hal_app.css 558 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: hal
  4. (C) Copyright IBM Corp. 2003, 2015
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. *
  8. {
  9. user-select: none;
  10. -moz-user-select: -moz-none;
  11. -webkit-user-select: none;
  12. -ms-user-select: none;
  13. }
  14. *[HAL_isSelectable="true"],
  15. TEXTAREA,
  16. INPUT[type="text"]
  17. {
  18. user-select: text;
  19. -moz-user-select: text;
  20. -webkit-user-select: text;
  21. -ms-user-select: text;
  22. }
  23. HTML,
  24. BODY
  25. {
  26. overflow: hidden;
  27. position: relative;
  28. }