12345678910111213141516171819202122232425262728293031 |
- /*
- Licensed Materials - Property of IBM
- IBM Cognos Products: hal
- (C) Copyright IBM Corp. 2003, 2015
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- *
- {
- -moz-user-select: -moz-none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- *[HAL_isSelectable="true"],
- TEXTAREA,
- INPUT[type="text"]
- {
- -moz-user-select: text;
- -webkit-user-select: text;
- -ms-user-select: text;
- }
- BODY
- {
- margin: 0px;
- padding: 0px;
- border: none;
- overflow: hidden;
- }
|