1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /****************************************************************
- ** Licensed Materials - Property of IBM
- **
- ** BI and PM: qs
- **
- ** (C) Copyright IBM Corp. 2001, 2017
- **
- ** US Government Users Restricted Rights - Use, duplication or
- ** disclosure restricted by GSA ADP Schedule Contract with
- ** IBM Corp.
- *****************************************************************/
- /*
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- */
- /* The classes in this file are common between QSReport.css and RVReport.css and have
- been removed from those css files and put into this file. */
- /* The following two classes are for cursor change when drilling down on a chart */
- .drillCursor
- {
- cursor: url("../skins/presentation/viewer/images/actin_drill_down.cur");
- }
- .drillThroughCursor
- {
- cursor:hand;
- }
- .noDrillCursor
- {
- cursor:default;
- }
- /* The following class is used by the waiting screen (when the report is loading) */
- .busyUpdatingStr
- {
- font-size: 70%;
- padding-right:5px;
- line-height:15px;
- color: #000000;
- vertical-align:middle;
- }
- .busyBody
- {
- font-family: Tahoma, arial, geneva, helvetica, sans-serif;
- background-color: #FFFFFF;
- color: #000000;
- }
- /* Pointer selectors */
- /*List styles*/
- .ls > .textItem,
- .lt > .textItem,
- .lc > .textItem,
- .lm > .textItem,
- .lh > .textItem,
- .lf > .textItem,
- .ih > .textItem,
- .if > .textItem,
- .is > .textItem,
- .oh > .textItem,
- .of > .textItem,
- .os > .textItem,
- /* Section styles */
- .sc > .textItem,
- .sb > .textItem,
- .sh > .textItem,
- .sf > .textItem,
- .ss > .textItem,
- /* Crosstab styles */
- .xt > .textItem,
- .xm > .textItem,
- .ml > .textItem,
- .mv > .textItem,
- .cl > .textItem,
- .cv > .textItem,
- .sl > .textItem,
- .sv > .textItem,
- .hl > .textItem,
- .hv > .textItem,
- .nl > .textItem,
- .nv > .textItem,
- .xl > .textItem,
- .xv > .textItem,
- .il > .textItem,
- .iv > .textItem,
- .ol > .textItem,
- .ov > .textItem,
- .dm > .textItem
- {
- cursor: default;
- }
|