Mangled path fax send (#7515)
[openemr.git] / interface / themes / core / closeDlgIframe.scss
blobdcda94bcb9b10408bb9fa31d1242817ab0c9df49
1 /*
2  * closeDlgIframe common styles
3  */
4 @if $compact-theme == false {
5   div.closeDlgIframe {
6     background: $danger;
7     cursor: pointer;
8     height: 25px;
9     position: absolute;
10     top: -12px;
11     width: 25px;
12     z-index: 10010;
13     #{$right}: -12px;
15     &::before {
16       @extend .fas;
17       color: $white;
18       content: fa-content('#{$fa-var-times}');
19       display: inline-block;
20       font-weight: 900;
21       height: 25px;
22       line-height: 25px;
23       margin: auto;
24       text-align: center;
25       width: 100%;
26     }
27   }
29   /* important for drag and resizing */
30   .drag-action,
31   .resize-action,
32   .drag-resize {
33     touch-action: none;
34     user-select: none;
35   }