123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /********************************************************************************************************************************
- * Licensed Materials - Property of IBM *
- * *
- * IBM Cognos Products: UIPE *
- * *
- * (C) Copyright IBM Corp. 2014 *
- * *
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. *
- *********************************************************************************************************************************/
- HTML,
- BODY
- {
- height: 100%;
- overflow: auto;
- }
- .uipeContent
- {
- width: 100%;
- padding:15px;
- }
- .navTreeContainer
- {
- border: #444444 1px solid;
- width: 300px;
- height: 560px;
- overflow: auto;
- }
- .uipeRightPane
- {
- width: 100%;
- padding-left: 16px;
- }
- .uipeNavBarTable
- {
- width: 100%;
- }
- .uipeTabBorder
- {
- border-bottom: #444444 1px solid;
- padding: 0 1px;
- }
- .uipeHighlight,
- TD.uipeDefaultSettingsHighlight,
- TD INPUT.uipeDefaultSettingsHighlight
- {
- font-weight: bolder;
- color: #0080b2;
- }
- .uipeDeckMain
- {
- height:360px;
- width:300px;
- margin-right: 16px;
- overflow: auto;
- border: #444444 1px solid;
- }
- .uipeHeader
- {
- background-image: none;
- background-image: none, -moz-linear-gradient(top, #444444 0%, #000000 100%);
- background-image: none, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444444), color-stop(100%,#000000));
- background-image: none, -webkit-linear-gradient(top, #444444 0%, #000000 100%);
- background-image: none, -o-linear-gradient(top, #444444 0%, #000000 100%);
- background-image: none, -ms-linear-gradient(top, #444444 0%, #000000 100%);
- background-image: none, linear-gradient(to bottom, #444444 0%, #000000 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#000000',GradientType=0 );
- zoom: 1;
- background-repeat: repeat-x;
- background-position: left top;
- background-color: #444444;
- height: 35px;
- }
- .uipeHeaderTitle
- {
- color: #ffffff;
- font-weight: normal;
- font-size: 1em;
- font-family: Helvetica, Verdana, Tahoma, Arial, sans-serif;
- text-align: left;
- white-space: nowrap;
- padding-left: 16px;
- width: 100%;
- vertical-align: middle;
- }
- .uipeHeaderLip
- {
- background-color: #008abf;
- clear: left;
- display: block;
- height: 4px;
- overflow: hidden;
- }
- .uipeNavBar
- {
- background-color: #999999;
- background-image: none, -moz-linear-gradient(top, #8d8d8d 0%, #444444 100%);
- background-image: none, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8d8d8d), color-stop(100%,#444444));
- background-image: none, -webkit-linear-gradient(top, #8d8d8d 0%, #444444 100%);
- background-image: none, -o-linear-gradient(top, #8d8d8d 0%, #444444 100%);
- background-image: none, -ms-linear-gradient(top, #8d8d8d 0%, #444444 100%);
- background-image: none, linear-gradient(to bottom, #8d8d8d 0%, #444444 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d8d8d', endColorstr='#444444',GradientType=0 );
- zoom: 1;
- color: #ffffff;
- font-size: 12px;
- font-weight: bold;
- }
- .clsTreeNode_selected
- {
- cursor: default;
- padding: 2px 5px 2px 5px !important;
- background-color: #008abf;
- border: 1px solid #9c93b8;
- color: #ffffff;
- }
- .clsTreeNode_hover
- {
- cursor: default;
- padding: 2px 5px 2px 5px !important;
- background-color: #95daf2;
- border: 1px solid #95daf2;
- color: #292929;
- }
|