1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * IBM Confidential
- * OCO Source Materials
- * IBM Business Platform: Dashboard
- * (C) Copyright IBM Corp. 2018
- * The source code for this program is not published or otherwise divested of its trade secrets,
- * irrespective of what has been deposited with the U.S. Copyright Office
- **/
- .flyout-content-container {
- height: 100%;
- display: block;
- }
- .flyout-content {
- clear: both;
- display: block;
- }
- .flyout-close-button {
- display: block;
- float: right;
- padding: 8px 0;
- &[dir="rtl"] {
- float: left;
- }
- }
- .flyout-loading {
- background-image: url(../images/wLoading.svg);
- background-repeat: no-repeat;
- height: 40px;
- line-height: 50px;
- margin: 5px;
- padding-left: 50px;
- &[dir="rtl"] {
- padding-left: 0px;
- padding-right: 50px;
- }
- }
- .ie .flyout-loading {
- background-image: url(../images/wLoading.gif);
- }
|