1234567891011121314151617181920212223 |
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2019, 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- .focusViewContainer {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 500; // widget border has z-index 500, so we need to set 500 for focusViewContainer which will take precedence as it's created later, so widget border does not show up when in focus mode
- .card.widgetExpanded {
- &.widgetFocus{
- border-top: none;
- .collapseSvg.focusMode {
- top: 4px;
- right: 4px;
- border: none;
- }
- }
- }
- }
|