focusMode.scss 680 B

1234567891011121314151617181920212223
  1. /**
  2. * Licensed Materials - Property of IBM
  3. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2019, 2020
  4. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  5. */
  6. .focusViewContainer {
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. right: 0;
  11. bottom: 0;
  12. 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
  13. .card.widgetExpanded {
  14. &.widgetFocus{
  15. border-top: none;
  16. .collapseSvg.focusMode {
  17. top: 4px;
  18. right: 4px;
  19. border: none;
  20. }
  21. }
  22. }
  23. }