123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- @charset "UTF-8";
- /****************************************************************
- ** 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 following imported css file is to shrink down the text on the screen to 'normal' size. It also
- contains classes and IDs that are common between QSReport.css and RVReport.css
- */
- @import url(QSRVCommon.css);
- /*
- The following classes are used by the context menu in QueryStudio.
- */
- DIV.menuItem,
- DIV.menuLink
- {
- font-family: Tahoma, arial, geneva, helvetica, sans-serif;
- font-weight: normal;
- font-size: 70%;
- color: #0000CC;
- }
- DIV.menuLink
- {
- text-decoration: underline;
- }
- .contextMenuItem,
- .contextMenuItemOver
- {
- font-family: Tahoma, arial, geneva, helvetica, sans-serif;
- font-size: 70%;
- color: #0000CC;
- text-decoration: underline;
- padding: 2px 15px 2px 5px;
- }
- .contextMenuItemOver
- {
- cursor: pointer;
- cursor: hand;
- background-color:#CCCCEE;
- }
- .contextMenuBox
- {
- background-color:#FFFFFF;
- border: 1px solid #0000CC;
- }
- /*
- Styles for report titles and subtitles.
- Needed because there are links in QueryStudio.
- */
- .filterSubtitleStyle
- {
- color: #0000CC;
- text-decoration: underline;
- cursor: pointer;
- cursor: hand;
- }
- .tt,
- .st
- {
- cursor: pointer;
- cursor: hand;
- }
- #busyIndicator
- {
- cursor: default;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- z-index:50;
- }
- .pf
- {
- font-weight: normal;
- color: #000000;
- }
- .reportBody
- {
- background-color: #FFFFFF;
- }
- #reportFrame
- {
- vertical-align: top;
- }
- .startPageText
- {
- font-weight: normal;
- font-size: 70%;
- color: #000000;
- }
- .startPageTextOver
- {
- font-weight: normal;
- font-size: 70%;
- color: #666699;
- }
- .startPageTable
- {
- margin-top: 7px;
- border-collapse: collapse;
- width: 66%;
- height: 25%;
- }
- .startPageListColumnTitle
- {
- padding: 3px 5px;
- border: 1px solid #93B1CD;
- line-break: strict;
- background-color: #BFD2E2;
- }
- .startPageListColumnTitleOver
- {
- padding: 3px 5px;
- border: 1px solid #93B1CD;
- line-break: strict;
- background-color: #000000;
- }
- .startPageListColumn
- {
- padding: 3px 5px;
- border-color: #93B1CD;
- border-width: 0px 1px 1px;
- border-style: dashed;
- line-break: strict;
- background-color: none;
- }
- .startPageListColumnOver
- {
- padding: 3px 5px;
- border-color: #93B1CD;
- border-width: 0px 1px 1px;
- border-style: dashed;
- line-break: strict;
- background-color: #9999CC;
- }
- .onDragOver
- {
- background-color: #9999CC;
- }
- .clsCaretInsert
- {
- padding: 2px;
- border: 1px solid #999999;
- background-color: white;
- }
|