| 1 |
@import "../start"; |
| 2 |
@import "themes"; |
| 3 |
|
| 4 |
#iframe |
| 5 |
{ |
| 6 |
line-height: 0; |
| 7 |
font-size: 0; |
| 8 |
} |
| 9 |
|
| 10 |
.fs-full-size-wrapper |
| 11 |
{ |
| 12 |
margin: 40px 0 -65px -20px; |
| 13 |
|
| 14 |
@media (max-width: 600px) { |
| 15 |
margin: 0 0 -65px -10px; |
| 16 |
} |
| 17 |
} |
| 18 |
|
| 19 |
.fs-notice |
| 20 |
{ |
| 21 |
position: relative; |
| 22 |
|
| 23 |
&.fs-has-title |
| 24 |
{ |
| 25 |
margin-bottom: 30px !important; |
| 26 |
} |
| 27 |
|
| 28 |
&.success |
| 29 |
{ |
| 30 |
color: green; |
| 31 |
// font-weight: normal; |
| 32 |
} |
| 33 |
|
| 34 |
&.promotion |
| 35 |
{ |
| 36 |
border-color: $fs-notice-promotion-border-color !important; |
| 37 |
background-color: $fs-notice-promotion-bkg !important; |
| 38 |
} |
| 39 |
|
| 40 |
.fs-notice-body |
| 41 |
{ |
| 42 |
margin: .5em 0; |
| 43 |
padding: 2px; |
| 44 |
} |
| 45 |
|
| 46 |
.fs-close |
| 47 |
{ |
| 48 |
// position: absolute; |
| 49 |
// top: 2px; |
| 50 |
// bottom: 2px; |
| 51 |
// right: 2px; |
| 52 |
// min-width: 100px; |
| 53 |
// text-align: center; |
| 54 |
// padding-right: 2px; |
| 55 |
cursor: pointer; |
| 56 |
color: #aaa; |
| 57 |
float: right; |
| 58 |
|
| 59 |
&:hover |
| 60 |
{ |
| 61 |
color: #666; |
| 62 |
// background: #A9A9A9; |
| 63 |
} |
| 64 |
|
| 65 |
> * |
| 66 |
{ |
| 67 |
margin-top: 7px; |
| 68 |
display: inline-block; |
| 69 |
} |
| 70 |
} |
| 71 |
|
| 72 |
label.fs-plugin-title |
| 73 |
{ |
| 74 |
background: rgba(0, 0, 0, 0.3); |
| 75 |
color: #fff; |
| 76 |
padding: 2px 10px; |
| 77 |
position: absolute; |
| 78 |
top: 100%; |
| 79 |
bottom: auto; |
| 80 |
right: auto; |
| 81 |
@include border-radius(0 0 3px 3px); |
| 82 |
left: 10px; |
| 83 |
font-size: 12px; |
| 84 |
font-weight: bold; |
| 85 |
cursor: auto; |
| 86 |
} |
| 87 |
} |
| 88 |
|
| 89 |
div.fs-notice |
| 90 |
{ |
| 91 |
&.updated, |
| 92 |
&.success, |
| 93 |
&.promotion |
| 94 |
{ |
| 95 |
display: block !important; |
| 96 |
} |
| 97 |
} |
| 98 |
|
| 99 |
.rtl .fs-notice |
| 100 |
{ |
| 101 |
.fs-close |
| 102 |
{ |
| 103 |
// left: 2px; |
| 104 |
// right: auto; |
| 105 |
// padding-right: 0; |
| 106 |
// padding-left: 2px; |
| 107 |
float: left; |
| 108 |
} |
| 109 |
} |
| 110 |
|
| 111 |
.fs-secure-notice |
| 112 |
{ |
| 113 |
position: fixed; |
| 114 |
top: 32px; |
| 115 |
left: 160px; |
| 116 |
right: 0; |
| 117 |
background: rgb(235, 253, 235); |
| 118 |
padding: 10px 20px; |
| 119 |
color: green; |
| 120 |
z-index: 9999; |
| 121 |
@include box-shadow(0 2px 2px rgba(6, 113, 6, 0.3)); |
| 122 |
@include opacity(0.95); |
| 123 |
|
| 124 |
&:hover |
| 125 |
{ |
| 126 |
@include opacity(1); |
| 127 |
} |
| 128 |
|
| 129 |
a.fs-security-proof |
| 130 |
{ |
| 131 |
color: green; |
| 132 |
text-decoration: none; |
| 133 |
} |
| 134 |
} |
| 135 |
|
| 136 |
@media screen and (max-width: 960px) { |
| 137 |
.fs-secure-notice |
| 138 |
{ |
| 139 |
left: 36px; |
| 140 |
} |
| 141 |
} |
| 142 |
|
| 143 |
@media screen and (max-width: 600px) { |
| 144 |
.fs-secure-notice |
| 145 |
{ |
| 146 |
display: none; |
| 147 |
} |
| 148 |
} |
| 149 |
|
| 150 |
@media screen and (max-width: 500px) { |
| 151 |
#fs_promo_tab |
| 152 |
{ |
| 153 |
display: none; |
| 154 |
} |
| 155 |
} |
| 156 |
|
| 157 |
@media screen and (max-width: 782px) { |
| 158 |
.fs-secure-notice |
| 159 |
{ |
| 160 |
left: 0; |
| 161 |
top: 46px; |
| 162 |
text-align: center; |
| 163 |
} |
| 164 |
} |
| 165 |
|
| 166 |
span.fs-submenu-item.fs-sub:before |
| 167 |
{ |
| 168 |
// Add small arrow. |
| 169 |
content: '\21B3'; |
| 170 |
padding: 0 5px; |
| 171 |
} |
| 172 |
|
| 173 |
.rtl |
| 174 |
{ |
| 175 |
span.fs-submenu-item.fs-sub:before |
| 176 |
{ |
| 177 |
// Add small RTL arrow. |
| 178 |
content: '\21B2'; |
| 179 |
} |
| 180 |
} |
| 181 |
|
| 182 |
.fs-submenu-item |
| 183 |
{ |
| 184 |
&.pricing |
| 185 |
{ |
| 186 |
&.upgrade-mode |
| 187 |
{ |
| 188 |
color: greenyellow; |
| 189 |
} |
| 190 |
|
| 191 |
&.trial-mode |
| 192 |
{ |
| 193 |
color: #83e2ff; |
| 194 |
} |
| 195 |
} |
| 196 |
} |
| 197 |
|
| 198 |
#adminmenu .update-plugins.fs-trial |
| 199 |
{ |
| 200 |
background-color: #00b9eb; |
| 201 |
} |
| 202 |
.fs-ajax-spinner |
| 203 |
{ |
| 204 |
border: 0; |
| 205 |
width: 20px; |
| 206 |
height: 20px; |
| 207 |
margin-right: 5px; |
| 208 |
vertical-align: sub; |
| 209 |
display: inline-block; |
| 210 |
background: url('../../../../../../../wp-admin/images/wpspin_light-2x.gif'); |
| 211 |
background-size: contain; |
| 212 |
} |
| 213 |
|
| 214 |
.wrap.fs-section { |
| 215 |
h2 { |
| 216 |
text-align: left; |
| 217 |
} |
| 218 |
} |