_deactivation-feedback.scss
9 years ago
_license-activation.scss
9 years ago
_license-key-resend.scss
9 years ago
_modal-common.scss
9 years ago
account.scss
9 years ago
add-ons.scss
9 years ago
checkout.scss
9 years ago
common.scss
9 years ago
connect.scss
9 years ago
debug.scss
9 years ago
dialog-boxes.scss
9 years ago
common.scss
173 lines
| 1 | @import "../start"; |
| 2 | |
| 3 | #iframe { |
| 4 | line-height: 0; |
| 5 | font-size: 0; |
| 6 | } |
| 7 | |
| 8 | .fs-full-size-wrapper { |
| 9 | margin: 0 0 -65px -20px; |
| 10 | |
| 11 | @media (max-width: $admin_mobile_max_width) { |
| 12 | margin: 0 0 -65px -10px; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | .fs-notice |
| 17 | { |
| 18 | position: relative; |
| 19 | |
| 20 | &.fs-has-title |
| 21 | { |
| 22 | margin-bottom: 30px !important; |
| 23 | } |
| 24 | |
| 25 | &.success |
| 26 | { |
| 27 | color: green; |
| 28 | // font-weight: normal; |
| 29 | } |
| 30 | |
| 31 | &.promotion |
| 32 | { |
| 33 | border-color: $fs-notice-promotion-border-color !important; |
| 34 | background-color: $fs-notice-promotion-bkg !important; |
| 35 | } |
| 36 | |
| 37 | .fs-notice-body |
| 38 | { |
| 39 | margin: .5em 0; |
| 40 | padding: 2px; |
| 41 | } |
| 42 | |
| 43 | .fs-close |
| 44 | { |
| 45 | // position: absolute; |
| 46 | // top: 2px; |
| 47 | // bottom: 2px; |
| 48 | // right: 2px; |
| 49 | // min-width: 100px; |
| 50 | // text-align: center; |
| 51 | // padding-right: 2px; |
| 52 | cursor: pointer; |
| 53 | color: #aaa; |
| 54 | float: right; |
| 55 | |
| 56 | &:hover |
| 57 | { |
| 58 | color: #666; |
| 59 | // background: #A9A9A9; |
| 60 | } |
| 61 | |
| 62 | > * |
| 63 | { |
| 64 | margin-top: 7px; |
| 65 | display: inline-block; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | label.fs-plugin-title |
| 70 | { |
| 71 | background: rgba(0, 0, 0, 0.3); |
| 72 | color: #fff; |
| 73 | padding: 2px 10px; |
| 74 | position: absolute; |
| 75 | top: 100%; |
| 76 | bottom: auto; |
| 77 | right: auto; |
| 78 | @include border-radius(0 0 3px 3px); |
| 79 | left: 10px; |
| 80 | font-size: 12px; |
| 81 | font-weight: bold; |
| 82 | cursor: auto; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | .rtl .fs-notice |
| 87 | { |
| 88 | .fs-close |
| 89 | { |
| 90 | // left: 2px; |
| 91 | // right: auto; |
| 92 | // padding-right: 0; |
| 93 | // padding-left: 2px; |
| 94 | float: left; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | .fs-secure-notice |
| 99 | { |
| 100 | position: fixed; |
| 101 | top: 32px; |
| 102 | left: 160px; |
| 103 | right: 0; |
| 104 | background: rgb(235, 253, 235); |
| 105 | padding: 10px 20px; |
| 106 | color: green; |
| 107 | z-index: 9999; |
| 108 | box-shadow: 0px 2px 2px rgba(6, 113, 6, 0.3); |
| 109 | @include opacity(0.95); |
| 110 | |
| 111 | &:hover |
| 112 | { |
| 113 | @include opacity(1); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | @media screen and (max-width: 960px) { |
| 118 | .fs-secure-notice |
| 119 | { |
| 120 | left: 36px; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | @media screen and (max-width:500px) { |
| 125 | #fs_promo_tab { |
| 126 | display: none; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | @media screen and (max-width: 782px) { |
| 131 | .fs-secure-notice |
| 132 | { |
| 133 | left: 0; |
| 134 | top: 46px; |
| 135 | text-align: center; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | span.fs-submenu-item.fs-sub:before |
| 140 | { |
| 141 | // Add small arrow. |
| 142 | content: '\21B3'; |
| 143 | padding: 0 5px; |
| 144 | } |
| 145 | |
| 146 | .rtl |
| 147 | { |
| 148 | span.fs-submenu-item.fs-sub:before |
| 149 | { |
| 150 | // Add small RTL arrow. |
| 151 | content: '\21B2'; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | .fs-submenu-item |
| 156 | { |
| 157 | &.pricing |
| 158 | { |
| 159 | &.upgrade-mode |
| 160 | { |
| 161 | color: greenyellow; |
| 162 | } |
| 163 | |
| 164 | &.trial-mode |
| 165 | { |
| 166 | color: #83e2ff; |
| 167 | } |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | #adminmenu .update-plugins.fs-trial { |
| 172 | background-color: #00b9eb; |
| 173 | } |