| 1 |
/** |
| 2 |
* WPB Elementor Addons Admin Settings CSS |
| 3 |
* |
| 4 |
* Version: 1.0 |
| 5 |
*/ |
| 6 |
|
| 7 |
.wpb-ea-admin-pro-link { |
| 8 |
background: #3878ff; |
| 9 |
color: #fff; |
| 10 |
font-size: 18px; |
| 11 |
font-weight: bold; |
| 12 |
padding: 5px 20px; |
| 13 |
margin-left: -20px; |
| 14 |
position: fixed; |
| 15 |
z-index: 99; |
| 16 |
width: 100%; |
| 17 |
-webkit-font-smoothing: antialiased; |
| 18 |
box-shadow: 0px 5px 18px 0px rgb(0 4 32 / 8%); |
| 19 |
} |
| 20 |
.wpb-ea-admin-pro-link p { |
| 21 |
font-size: 18px; |
| 22 |
font-weight: 600; |
| 23 |
} |
| 24 |
.wpb-ea-admin-pro-link a { |
| 25 |
color: #fff; |
| 26 |
} |
| 27 |
.wpb-ea-about-list li { |
| 28 |
margin-bottom: 15px; |
| 29 |
} |
| 30 |
ul.wpb-ea-about-list i { |
| 31 |
margin-right: 10px; |
| 32 |
color: #27ae60; |
| 33 |
} |
| 34 |
.wpb-ea-btn { |
| 35 |
display: inline-block; |
| 36 |
background: #3498db; |
| 37 |
color: #fff; |
| 38 |
text-decoration: none; |
| 39 |
padding: 15px 22px; |
| 40 |
font-weight: 600; |
| 41 |
font-size: 14px; |
| 42 |
border-radius: 5px; |
| 43 |
-webkit-transition: all .5s; |
| 44 |
-o-transition: all .5s; |
| 45 |
transition: all .5s; |
| 46 |
} |
| 47 |
.wpb-ea-btn:hover, .wpb-ea-btn:focus { |
| 48 |
background: #2980b9; |
| 49 |
color: #fff; |
| 50 |
} |
| 51 |
.wpb-ea-btns { |
| 52 |
margin-top: 20px; |
| 53 |
} |
| 54 |
.wpb-ea-btns .wpb-ea-btn { |
| 55 |
margin-right: 15px; |
| 56 |
} |
| 57 |
.toggle-btn input[type=checkbox]:checked:before { |
| 58 |
display: none!important; |
| 59 |
} |
| 60 |
.toggle-btn { |
| 61 |
width: 40px; |
| 62 |
height: 20px; |
| 63 |
border-radius: 50px; |
| 64 |
display: block; |
| 65 |
position: relative; |
| 66 |
background: #e74c3c; |
| 67 |
cursor: pointer; |
| 68 |
-webkit-transition: background-color 0.4s ease-in-out; |
| 69 |
-moz-transition: background-color 0.4s ease-in-out; |
| 70 |
-o-transition: background-color 0.4s ease-in-out; |
| 71 |
transition: background-color 0.4s ease-in-out; |
| 72 |
cursor: pointer; |
| 73 |
} |
| 74 |
.form-table td fieldset label.toggle-btn { |
| 75 |
margin: 0!important; |
| 76 |
} |
| 77 |
.toggle-btn.active { |
| 78 |
background: #2ecc71; |
| 79 |
} |
| 80 |
.toggle-btn.active .round-btn { |
| 81 |
left: 22px; |
| 82 |
} |
| 83 |
.toggle-btn .round-btn { |
| 84 |
width: 15px; |
| 85 |
height: 15px; |
| 86 |
background-color: #fff; |
| 87 |
border-radius: 50%; |
| 88 |
display: inline-block; |
| 89 |
position: absolute; |
| 90 |
left: 3px; |
| 91 |
top: 50%; |
| 92 |
margin-top: -8px; |
| 93 |
-webkit-transition: all 0.3s ease-in-out; |
| 94 |
-moz-transition: all 0.3s ease-in-out; |
| 95 |
-o-transition: all 0.3s ease-in-out; |
| 96 |
transition: all 0.3s ease-in-out; |
| 97 |
} |
| 98 |
.toggle-btn .cb-value { |
| 99 |
position: absolute; |
| 100 |
left: 0; |
| 101 |
right: 0; |
| 102 |
width: 100%; |
| 103 |
height: 100%; |
| 104 |
opacity: 0; |
| 105 |
z-index: 9; |
| 106 |
cursor: pointer; |
| 107 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; |
| 108 |
} |
| 109 |
span.field-desc { |
| 110 |
display: block; |
| 111 |
margin-top: 8px; |
| 112 |
} |
| 113 |
.wpb-ea-settings-wrap .group > form > h2 { |
| 114 |
display: none; |
| 115 |
} |
| 116 |
.about-wrap.wpb-ea-settings-wrap { |
| 117 |
max-width: unset; |
| 118 |
margin: 25px 15px 0; |
| 119 |
position: relative; |
| 120 |
} |
| 121 |
.about-wrap.wpb-ea-settings-wrap .notice { |
| 122 |
display: block!important; |
| 123 |
box-shadow: 0px 5px 18px 0px rgba(0, 4, 32, 0.08); |
| 124 |
border-radius: 5px; |
| 125 |
} |
| 126 |
.form-addons-container { |
| 127 |
display: -webkit-box; |
| 128 |
display: -ms-flexbox; |
| 129 |
display: flex; |
| 130 |
-ms-flex-wrap: wrap; |
| 131 |
flex-wrap: wrap; |
| 132 |
margin-right: -15px; |
| 133 |
margin-left: -15px; |
| 134 |
width: auto; |
| 135 |
} |
| 136 |
.form-addons-container .form-addon { |
| 137 |
flex: 0 100%; |
| 138 |
box-sizing: border-box; |
| 139 |
margin-bottom: 30px; |
| 140 |
padding: 0 15px; |
| 141 |
} |
| 142 |
.form-addons-container .form-addon .form-addon-inner { |
| 143 |
padding: 20px; |
| 144 |
box-sizing: border-box; |
| 145 |
border-radius: 5px; |
| 146 |
background: #fff; |
| 147 |
box-shadow: 0px 5px 18px 0px rgba(0, 4, 32, 0.08); |
| 148 |
position: relative; |
| 149 |
height: 100%; |
| 150 |
} |
| 151 |
.form-addons-container .form-addon .form-addon-inner .addon-pro-link { |
| 152 |
position: absolute; |
| 153 |
width: 100%; |
| 154 |
height: 100%; |
| 155 |
top: 0; |
| 156 |
left: 0; |
| 157 |
z-index: 1; |
| 158 |
} |
| 159 |
.addon-switch.addon-pro-label { |
| 160 |
background: #3498db; |
| 161 |
color: #fff; |
| 162 |
padding: 4px 8px; |
| 163 |
border-radius: 3px; |
| 164 |
font-size: 14px; |
| 165 |
font-weight: 700; |
| 166 |
-webkit-font-smoothing: antialiased; |
| 167 |
} |
| 168 |
.form-addons-container .form-addon .addon-switch { |
| 169 |
position: absolute; |
| 170 |
right: 10px; |
| 171 |
top: 10px; |
| 172 |
} |
| 173 |
.form-addons-container .addon-name i { |
| 174 |
font-size: 30px; |
| 175 |
margin-bottom: 20px; |
| 176 |
display: inline-block; |
| 177 |
} |
| 178 |
.form-addons-container .addon-title { |
| 179 |
margin-top: 0; |
| 180 |
margin-bottom: 5px; |
| 181 |
font-size: 17px; |
| 182 |
} |
| 183 |
.form-addons-container .addon-desc { |
| 184 |
font-size: 14px; |
| 185 |
color: rgba(0, 0, 0, 0.42); |
| 186 |
} |
| 187 |
.form-addons-container .form-addon.form-addons-section-title { |
| 188 |
flex: inherit; |
| 189 |
width: 100%; |
| 190 |
max-width: 100%; |
| 191 |
flex-basis: auto; |
| 192 |
background: transparent; |
| 193 |
box-shadow: none; |
| 194 |
margin-bottom: 40px; |
| 195 |
} |
| 196 |
.form-addons-container .form-addon.form-addons-section-title .form-addon-inner { |
| 197 |
border-left: 4px solid #3498db; |
| 198 |
} |
| 199 |
.form-addons-container > .form-addon.form-addons-section-title:not(:first-child){ |
| 200 |
margin-top: 50px; |
| 201 |
} |
| 202 |
.form-addons-container .form-addon.form-addons-section-title .addon-switch { |
| 203 |
display: none; |
| 204 |
} |
| 205 |
.form-addons-container .form-addon.form-addons-section-title .addon-title { |
| 206 |
font-size: 24px; |
| 207 |
font-weight: 500; |
| 208 |
text-align: unset; |
| 209 |
margin-bottom: 0; |
| 210 |
} |
| 211 |
.wpb-ea-settings-submit.wpb-ea-settings-submit-top { |
| 212 |
position: absolute; |
| 213 |
top: 0; |
| 214 |
left: 0; |
| 215 |
width: 100%; |
| 216 |
z-index: 1; |
| 217 |
} |
| 218 |
.wpb-ea-settings-submit .wpb-ea-settings-submit-top-inner { |
| 219 |
display: flex; |
| 220 |
justify-content: space-between; |
| 221 |
background: #fff; |
| 222 |
padding: 20px; |
| 223 |
align-items: center; |
| 224 |
box-shadow: 0px 5px 18px 0px rgba(0, 4, 32, 0.08); |
| 225 |
border-radius: 5px; |
| 226 |
} |
| 227 |
.wpb-ea-settings-submit.wpb-ea-settings-submit-top h3 { |
| 228 |
margin: 0 0 10px; |
| 229 |
line-height: normal; |
| 230 |
} |
| 231 |
.wpb-ea-settings-submit.wpb-ea-settings-submit-top p { |
| 232 |
margin: 0; |
| 233 |
padding: 0; |
| 234 |
} |
| 235 |
.wpb-ea-settings-submit .button { |
| 236 |
padding: 15px; |
| 237 |
border-radius: 5px; |
| 238 |
height: unset; |
| 239 |
line-height: normal; |
| 240 |
font-weight: 600; |
| 241 |
font-size: 15px; |
| 242 |
background: #3498db; |
| 243 |
border: 0; |
| 244 |
box-shadow: none; |
| 245 |
text-shadow: none; |
| 246 |
-webkit-transition: all .5s; |
| 247 |
-o-transition: all .5s; |
| 248 |
transition: all .5s; |
| 249 |
} |
| 250 |
.wpb-ea-settings-submit .button:hover, .wpb-ea-settings-submit .button:focus { |
| 251 |
background: #2980b9; |
| 252 |
} |
| 253 |
.wpb-ea-settings-wrap .form-table { |
| 254 |
background: #fff; |
| 255 |
box-shadow: 0px 5px 18px 0px rgba(0, 4, 32, 0.08); |
| 256 |
border-radius: 5px; |
| 257 |
} |
| 258 |
.wpb-ea-settings-wrap .form-table th { |
| 259 |
padding: 20px 10px 20px 20px; |
| 260 |
} |
| 261 |
.wpb-ea-settings-wrap .form-table td { |
| 262 |
padding: 20px 10px; |
| 263 |
} |
| 264 |
.wrap.wpb-ea-wrap.about-wrap { |
| 265 |
background: #fff; |
| 266 |
box-shadow: 0px 5px 18px 0px rgba(0, 4, 32, 0.08); |
| 267 |
padding: 20px; |
| 268 |
margin-left: 0; |
| 269 |
margin-top: 75px; |
| 270 |
} |
| 271 |
.wrap.wpb-ea-wrap.about-wrap .wp-badge { |
| 272 |
margin: 0; |
| 273 |
right: 20px; |
| 274 |
top: 20px; |
| 275 |
} |
| 276 |
.about-wrap.wpb-ea-settings-wrap .nav-tab-wrapper { |
| 277 |
margin-bottom: 25px; |
| 278 |
border-bottom: 1px solid #e2e1e1; |
| 279 |
} |
| 280 |
.about-wrap.wpb-ea-settings-wrap.wpb-ea-settings-sections-yes .nav-tab-wrapper { |
| 281 |
padding-top: 130px; |
| 282 |
} |
| 283 |
.about-wrap.wpb-ea-settings-wrap.wpb-ea-settings-sections-no .form-addons-container .form-addon.form-addons-section-title:first-child { |
| 284 |
padding-top: 115px; |
| 285 |
} |
| 286 |
.about-wrap.wpb-ea-settings-wrap .nav-tab-wrapper a.nav-tab { |
| 287 |
display: flex; |
| 288 |
margin: 0 0 -1px; |
| 289 |
padding: 15px 25px; |
| 290 |
font-weight: 600; |
| 291 |
color: #23282d; |
| 292 |
border: 1px solid transparent; |
| 293 |
background: #fff; |
| 294 |
font-size: 18px; |
| 295 |
align-items: center; |
| 296 |
justify-content: center; |
| 297 |
} |
| 298 |
.about-wrap.wpb-ea-settings-wrap .nav-tab-wrapper a.nav-tab i { |
| 299 |
margin-right: 10px; |
| 300 |
display: inline-block; |
| 301 |
} |
| 302 |
.about-wrap.wpb-ea-settings-wrap .nav-tab-wrapper a.nav-tab.nav-tab-active { |
| 303 |
color: #fff; |
| 304 |
border: 1px solid #abc; |
| 305 |
border-top: 2px solid #3498db; |
| 306 |
border-bottom: 1px solid #fff; |
| 307 |
background: #3498db; |
| 308 |
border-color: #3498db; |
| 309 |
} |
| 310 |
.wpb-ea-settings-submit.wpb-ea-settings-submit-top.wpb-ea-settings-submit-top-fixed { |
| 311 |
position: fixed; |
| 312 |
right: 0; |
| 313 |
width: unset; |
| 314 |
left: 160px; |
| 315 |
top: 32px; |
| 316 |
} |
| 317 |
|
| 318 |
|
| 319 |
/** |
| 320 |
* Responsive |
| 321 |
*/ |
| 322 |
|
| 323 |
/* Small devices (landscape phones, 576px and up) */ |
| 324 |
@media (min-width: 576px) { |
| 325 |
.form-addons-container .form-addon { |
| 326 |
flex: 0 50%; |
| 327 |
} |
| 328 |
} |
| 329 |
|
| 330 |
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */ |
| 331 |
@media (min-width: 768px) { |
| 332 |
.form-addons-container .form-addon { |
| 333 |
flex: 0 33.33%; |
| 334 |
} |
| 335 |
} |
| 336 |
|
| 337 |
/* Only bellow 768px */ |
| 338 |
@media (max-width: 768px) { |
| 339 |
.wpb-ea-settings-submit.wpb-ea-settings-submit-top.wpb-ea-settings-submit-top-fixed { |
| 340 |
position: absolute; |
| 341 |
} |
| 342 |
} |
| 343 |
|
| 344 |
/* Large devices (desktops, 992px and up) */ |
| 345 |
@media (min-width: 992px) { |
| 346 |
.form-addons-container .form-addon { |
| 347 |
flex: 0 33.33%; |
| 348 |
} |
| 349 |
} |
| 350 |
|
| 351 |
/* Extra large devices (large desktops, 1200px and up) */ |
| 352 |
@media (min-width: 1200px) { |
| 353 |
.form-addons-container .form-addon { |
| 354 |
flex: 0 25%; |
| 355 |
} |
| 356 |
} |
| 357 |
|
| 358 |
/* Extra large devices (large desktops, 1400px and up) */ |
| 359 |
@media (min-width: 1400px) { |
| 360 |
.form-addons-container .form-addon { |
| 361 |
flex: 0 20%; |
| 362 |
} |
| 363 |
} |
| 364 |
|
| 365 |
/* Extra large devices (large desktops, 1600px and up) */ |
| 366 |
@media (min-width: 1600px) { |
| 367 |
.form-addons-container .form-addon { |
| 368 |
flex: 0 16.66%; |
| 369 |
} |
| 370 |
} |
| 371 |
|
| 372 |
|
| 373 |
/** |
| 374 |
* RTL |
| 375 |
*/ |
| 376 |
|
| 377 |
.rtl .about-wrap.wpb-ea-settings-wrap .nav-tab-wrapper a.nav-tab i { |
| 378 |
margin-right: 0; |
| 379 |
margin-left: 10px; |
| 380 |
} |
| 381 |
.rtl .form-addons-container .form-addon .addon-switch { |
| 382 |
right: unset; |
| 383 |
left: 10px; |
| 384 |
} |
| 385 |
.rtl .form-addons-container .form-addon.form-addons-section-title .form-addon-inner { |
| 386 |
border-left: 0; |
| 387 |
border-right: 4px solid #3498db; |
| 388 |
} |
| 389 |
.rtl .wpb-ea-settings-wrap .form-table th { |
| 390 |
padding: 20px 20px 20px 10px; |
| 391 |
} |
| 392 |
.rtl .wpb-ea-settings-submit.wpb-ea-settings-submit-top.wpb-ea-settings-submit-top-fixed { |
| 393 |
left: 0; |
| 394 |
right: 160px; |
| 395 |
} |