| @@ -1,143 +1,143 @@ | ||
| 1 | -/** | |
| 2 | - * Pop-up styles start | |
| 3 | - **/ | |
| 4 | - #wppm_popup_background{ | |
| 5 | - position: fixed; | |
| 6 | - top:0; | |
| 7 | - left: 0; | |
| 8 | - width: 100%; | |
| 9 | - height: 100%; | |
| 10 | - z-index: 900000000000; | |
| 11 | - background-color: #000; | |
| 12 | - opacity: 0.8; | |
| 13 | - } | |
| 14 | - #wppm_popup_container{ | |
| 15 | - position: fixed; | |
| 16 | - top:30px; | |
| 17 | - left: 0; | |
| 18 | - width: 100%; | |
| 19 | - z-index: 900000000001; | |
| 20 | - } | |
| 21 | - #wppm_popup{ | |
| 22 | - position: fixed; | |
| 23 | - background-color: #fff; | |
| 24 | - height: 100px; | |
| 25 | - padding: 0 !important; | |
| 26 | - } | |
| 27 | - #wppm_popup_title{ | |
| 28 | - border-bottom: 1px solid #ccc; | |
| 29 | - font: 26px "OpenSans-Light",Helvetica,Arial,sans-serif; | |
| 30 | - padding: 15px !important; | |
| 31 | - } | |
| 32 | - #wppm_popup_title h3{ | |
| 33 | - font-size: 18px; | |
| 34 | - margin: 0 !important; | |
| 35 | - } | |
| 36 | - #wppm_popup_body{ | |
| 37 | - min-height: 100px; | |
| 38 | - max-height: 300px; | |
| 39 | - overflow-x: hidden; | |
| 40 | - overflow-y: auto; | |
| 41 | - background-color: #fff; | |
| 42 | - padding: 15px !important; | |
| 43 | - } | |
| 44 | - #wppm_popup_footer{ | |
| 45 | - background-color: #F6F6F6; | |
| 46 | - padding: 15px !important; | |
| 47 | - } | |
| 48 | - #wppm_popup_footer button{ | |
| 49 | - width: 120px; | |
| 50 | - height: 40px; | |
| 51 | - border-radius: 20px; | |
| 52 | - margin-right: 10px; | |
| 53 | - } | |
| 54 | - .wppm_popup_close{ | |
| 55 | - color: #273444; | |
| 56 | - background-color: #EFF2F7; | |
| 57 | - border-color: #000; | |
| 58 | - border-radius: 50px; | |
| 59 | - padding: 5px; | |
| 60 | - } | |
| 61 | - .wppm_popup_action{ | |
| 62 | - color: #FFF !important; | |
| 63 | - background-color: #306EFF; | |
| 64 | - border-color: #306EFF; | |
| 65 | - box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%); | |
| 66 | - cursor: pointer; | |
| 67 | - border-radius: 50px !important; | |
| 68 | - padding: 5px; | |
| 69 | - } | |
| 70 | - | |
| 71 | - .mce-window.mce-in, .mce-menu.mce-in.mce-animate{ | |
| 72 | - z-index: 900000000001 !important;; | |
| 73 | - } | |
| 74 | - | |
| 75 | - /** | |
| 76 | - * Pop-up styles start | |
| 77 | - **/ | |
| 78 | - #wppm_task_popup_background{ | |
| 79 | - position: fixed; | |
| 80 | - top:0; | |
| 81 | - left: 0; | |
| 82 | - width: 100%; | |
| 83 | - height: 100%; | |
| 84 | - z-index: 900000000000; | |
| 85 | - background-color: #000; | |
| 86 | - opacity: 0.8; | |
| 87 | -} | |
| 88 | -#wppm_task_popup_container{ | |
| 89 | - position: fixed; | |
| 90 | - top:30px; | |
| 91 | - left: 0; | |
| 92 | - width: 100%; | |
| 93 | - z-index: 900000000001; | |
| 94 | -} | |
| 95 | -#wppm_task_popup{ | |
| 96 | - position: fixed; | |
| 97 | - background-color: #fff; | |
| 98 | - height: 100px; | |
| 99 | - padding: 0 !important; | |
| 100 | -} | |
| 101 | -#wppm_task_popup_title{ | |
| 102 | - border-bottom: 1px solid #ccc; | |
| 103 | - font: 26px "OpenSans-Light",Helvetica,Arial,sans-serif; | |
| 104 | - padding: 15px !important; | |
| 105 | -} | |
| 106 | -#wppm_task_popup_title h3{ | |
| 107 | - font-size: 18px; | |
| 108 | - margin: 0 !important; | |
| 109 | -} | |
| 110 | -#wppm_task_popup_body{ | |
| 111 | - min-height: 100px; | |
| 112 | - max-height: 300px; | |
| 113 | - overflow-x: hidden; | |
| 114 | - overflow-y: auto; | |
| 115 | - background-color: #fff; | |
| 116 | - padding: 15px !important; | |
| 117 | -} | |
| 118 | -#wppm_task_popup_footer{ | |
| 119 | - background-color: #F6F6F6; | |
| 120 | - padding: 15px !important; | |
| 121 | -} | |
| 122 | -#wppm_task_popup_footer button{ | |
| 123 | - width: 120px; | |
| 124 | - height: 40px; | |
| 125 | - border-radius: 20px; | |
| 126 | - margin-right: 10px; | |
| 127 | -} | |
| 128 | -.wppm_task_popup_close{ | |
| 129 | - color: #273444; | |
| 130 | - background-color: #EFF2F7; | |
| 131 | - border-color: #000; | |
| 132 | - border-radius: 50px; | |
| 133 | - padding: 5px; | |
| 134 | -} | |
| 135 | -.wppm_task_popup_action{ | |
| 136 | - color: #FFF !important; | |
| 137 | - background-color: #306EFF; | |
| 138 | - border-color: #306EFF; | |
| 139 | - box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%); | |
| 140 | - cursor: pointer; | |
| 141 | - border-radius: 50px !important; | |
| 142 | - padding: 5px; | |
| 1 | +/** | |
| 2 | + * Pop-up styles start | |
| 3 | + **/ | |
| 4 | + #wppm_popup_background{ | |
| 5 | + position: fixed; | |
| 6 | + top:0; | |
| 7 | + left: 0; | |
| 8 | + width: 100%; | |
| 9 | + height: 100%; | |
| 10 | + z-index: 900000000000; | |
| 11 | + background-color: #000; | |
| 12 | + opacity: 0.8; | |
| 13 | + } | |
| 14 | + #wppm_popup_container{ | |
| 15 | + position: fixed; | |
| 16 | + top:30px; | |
| 17 | + left: 0; | |
| 18 | + width: 100%; | |
| 19 | + z-index: 900000000001; | |
| 20 | + } | |
| 21 | + #wppm_popup{ | |
| 22 | + position: fixed; | |
| 23 | + background-color: #fff; | |
| 24 | + height: 100px; | |
| 25 | + padding: 0 !important; | |
| 26 | + } | |
| 27 | + #wppm_popup_title{ | |
| 28 | + border-bottom: 1px solid #ccc; | |
| 29 | + font: 26px "OpenSans-Light",Helvetica,Arial,sans-serif; | |
| 30 | + padding: 15px !important; | |
| 31 | + } | |
| 32 | + #wppm_popup_title h3{ | |
| 33 | + font-size: 18px; | |
| 34 | + margin: 0 !important; | |
| 35 | + } | |
| 36 | + #wppm_popup_body{ | |
| 37 | + min-height: 100px; | |
| 38 | + max-height: 300px; | |
| 39 | + overflow-x: hidden; | |
| 40 | + overflow-y: auto; | |
| 41 | + background-color: #fff; | |
| 42 | + padding: 15px !important; | |
| 43 | + } | |
| 44 | + #wppm_popup_footer{ | |
| 45 | + background-color: #F6F6F6; | |
| 46 | + padding: 15px !important; | |
| 47 | + } | |
| 48 | + #wppm_popup_footer button{ | |
| 49 | + width: 120px; | |
| 50 | + height: 40px; | |
| 51 | + border-radius: 20px; | |
| 52 | + margin-right: 10px; | |
| 53 | + } | |
| 54 | + .wppm_popup_close{ | |
| 55 | + color: #273444; | |
| 56 | + background-color: #EFF2F7; | |
| 57 | + border-color: #000; | |
| 58 | + border-radius: 50px; | |
| 59 | + padding: 5px; | |
| 60 | + } | |
| 61 | + .wppm_popup_action{ | |
| 62 | + color: #FFF !important; | |
| 63 | + background-color: #306EFF; | |
| 64 | + border-color: #306EFF; | |
| 65 | + box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%); | |
| 66 | + cursor: pointer; | |
| 67 | + border-radius: 50px !important; | |
| 68 | + padding: 5px; | |
| 69 | + } | |
| 70 | + | |
| 71 | + .mce-window.mce-in, .mce-menu.mce-in.mce-animate{ | |
| 72 | + z-index: 900000000001 !important;; | |
| 73 | + } | |
| 74 | + | |
| 75 | + /** | |
| 76 | + * Pop-up styles start | |
| 77 | + **/ | |
| 78 | + #wppm_task_popup_background{ | |
| 79 | + position: fixed; | |
| 80 | + top:0; | |
| 81 | + left: 0; | |
| 82 | + width: 100%; | |
| 83 | + height: 100%; | |
| 84 | + z-index: 900000000000; | |
| 85 | + background-color: #000; | |
| 86 | + opacity: 0.8; | |
| 87 | +} | |
| 88 | +#wppm_task_popup_container{ | |
| 89 | + position: fixed; | |
| 90 | + top:30px; | |
| 91 | + left: 0; | |
| 92 | + width: 100%; | |
| 93 | + z-index: 900000000001; | |
| 94 | +} | |
| 95 | +#wppm_task_popup{ | |
| 96 | + position: fixed; | |
| 97 | + background-color: #fff; | |
| 98 | + height: 100px; | |
| 99 | + padding: 0 !important; | |
| 100 | +} | |
| 101 | +#wppm_task_popup_title{ | |
| 102 | + border-bottom: 1px solid #ccc; | |
| 103 | + font: 26px "OpenSans-Light",Helvetica,Arial,sans-serif; | |
| 104 | + padding: 15px !important; | |
| 105 | +} | |
| 106 | +#wppm_task_popup_title h3{ | |
| 107 | + font-size: 18px; | |
| 108 | + margin: 0 !important; | |
| 109 | +} | |
| 110 | +#wppm_task_popup_body{ | |
| 111 | + min-height: 100px; | |
| 112 | + max-height: 300px; | |
| 113 | + overflow-x: hidden; | |
| 114 | + overflow-y: auto; | |
| 115 | + background-color: #fff; | |
| 116 | + padding: 15px !important; | |
| 117 | +} | |
| 118 | +#wppm_task_popup_footer{ | |
| 119 | + background-color: #F6F6F6; | |
| 120 | + padding: 15px !important; | |
| 121 | +} | |
| 122 | +#wppm_task_popup_footer button{ | |
| 123 | + width: 120px; | |
| 124 | + height: 40px; | |
| 125 | + border-radius: 20px; | |
| 126 | + margin-right: 10px; | |
| 127 | +} | |
| 128 | +.wppm_task_popup_close{ | |
| 129 | + color: #273444; | |
| 130 | + background-color: #EFF2F7; | |
| 131 | + border-color: #000; | |
| 132 | + border-radius: 50px; | |
| 133 | + padding: 5px; | |
| 134 | +} | |
| 135 | +.wppm_task_popup_action{ | |
| 136 | + color: #FFF !important; | |
| 137 | + background-color: #306EFF; | |
| 138 | + border-color: #306EFF; | |
| 139 | + box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%); | |
| 140 | + cursor: pointer; | |
| 141 | + border-radius: 50px !important; | |
| 142 | + padding: 5px; | |
| 143 | 143 | } |