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: #cccccc 1px solid;
- width: 300px;
- height: 560px;
- overflow: auto;
- }
- .uipeRightPane
- {
- width: 100%;
- padding-left: 16px;
- }
- .uipeNavBarTable
- {
- width: 100%;
- }
- .uipeTabBorder
- {
- border-bottom: #cccccc 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: #cccccc 1px solid;
- }
- .uipeHeader
- {
- background-image: none;
- background-image: none, -moz-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8eb1dd), color-stop(100%,#5888cb));
- background-image: none, -webkit-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, -o-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, -ms-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, linear-gradient(to bottom, #8eb1dd 0%, #5888cb 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8eb1dd', endColorstr='#5888cb',GradientType=0 );
- zoom: 1;
- background-repeat: repeat-x;
- background-position: left top;
- background-color: #8eb1dd;
- 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: #f3f3f3;
- clear: left;
- display: block;
- height: 4px;
- overflow: hidden;
- }
- .uipeNavBar
- {
- background-color: #134679;
- background-image: none, -moz-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8eb1dd), color-stop(100%,#5888cb));
- background-image: none, -webkit-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, -o-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, -ms-linear-gradient(top, #8eb1dd 0%, #5888cb 100%);
- background-image: none, linear-gradient(to bottom, #8eb1dd 0%, #5888cb 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8eb1dd', endColorstr='#5888cb',GradientType=0 );
- zoom: 1;
- color: #ffffff;
- font-size: 12px;
- font-weight: bold;
- }
- .clsTreeNode_selected
- {
- cursor: default;
- padding: 2px 5px 2px 5px !important;
- background-color: #5888cb;
- border: 1px solid #9c93b8;
- color: #ffffff;
- }
- .clsTreeNode_hover
- {
- cursor: default;
- padding: 2px 5px 2px 5px !important;
- background-color: #e3e9f3;
- border: 1px solid #e3e9f3;
- color: #292929;
- }
|