123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- Licensed Materials - Property of IBM
- IBM Cognos Products: irot
- (C) Copyright IBM Corp. 2003, 2014
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- SPAN,
- A
- {
- display: inline-block;
- }
- SPAN[style*='display:inline'],
- SPAN[style*='display: inline'],
- A[style*='display:inline'],
- A[style*='display: inline']
- {
- display: inline-block !important;
- }
- *[style*='text-align:left'],
- *[style*='text-align: left']
- {
- text-align: -moz-left !important;
- }
- *[style*='text-align:right'],
- *[style*='text-align: right']
- {
- text-align: -moz-right !important;
- }
- *[style*='text-align:center'],
- *[style*='text-align: center']
- {
- text-align: -moz-center !important;
- }
- DIV.clsAppTooltip
- {
- background-color: rgba(255, 255, 255, 0.8);
- border-radius: 5px 5px 5px 5px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
- }
|