| 1 |
/** |
| 2 |
* Admin Preview |
| 3 |
* Inactive Tab Message |
| 4 |
* |
| 5 |
*/ |
| 6 |
.merchant-module-page-preview-browser-inner { |
| 7 |
display: -webkit-box; |
| 8 |
display: -ms-flexbox; |
| 9 |
display: flex; |
| 10 |
-webkit-box-align: center; |
| 11 |
-ms-flex-align: center; |
| 12 |
align-items: center; |
| 13 |
-webkit-box-pack: center; |
| 14 |
-ms-flex-pack: center; |
| 15 |
justify-content: center; |
| 16 |
-webkit-box-flex: 0; |
| 17 |
-ms-flex-positive: 0; |
| 18 |
flex-grow: 0; |
| 19 |
width: 100%; |
| 20 |
max-width: 600px; |
| 21 |
margin: auto; |
| 22 |
padding: 35px 25px; |
| 23 |
} |
| 24 |
|
| 25 |
.mrc-preview-inactive-tab-message { |
| 26 |
display: -webkit-box; |
| 27 |
display: -ms-flexbox; |
| 28 |
display: flex; |
| 29 |
-webkit-box-align: center; |
| 30 |
-ms-flex-align: center; |
| 31 |
align-items: center; |
| 32 |
gap: 14px; |
| 33 |
padding: 20px 35px; |
| 34 |
border-radius: 10px; |
| 35 |
background-color: #f5f5f5; |
| 36 |
border: 1px solid #e9e9e9; |
| 37 |
} |
| 38 |
.mrc-preview-inactive-tab-message:after { |
| 39 |
content: "\f335"; |
| 40 |
display: block; |
| 41 |
font-family: dashicons; |
| 42 |
font-size: 20px; |
| 43 |
color: #adadad; |
| 44 |
-webkit-box-ordinal-group: 4; |
| 45 |
-ms-flex-order: 3; |
| 46 |
order: 3; |
| 47 |
} |
| 48 |
|
| 49 |
.mrc-inactive-tab-message-icon-wrapper { |
| 50 |
position: relative; |
| 51 |
top: 3px; |
| 52 |
-webkit-box-ordinal-group: 2; |
| 53 |
-ms-flex-order: 1; |
| 54 |
order: 1; |
| 55 |
} |
| 56 |
.mrc-inactive-tab-message-icon-wrapper .mrc-inactive-tab-message__icon img { |
| 57 |
width: 20px; |
| 58 |
} |
| 59 |
|
| 60 |
.mrc-inactive-tab-message-text { |
| 61 |
-webkit-box-ordinal-group: 3; |
| 62 |
-ms-flex-order: 2; |
| 63 |
order: 2; |
| 64 |
} |