| 1 |
/** |
| 2 |
* All of the CSS for your admin-specific functionality should be |
| 3 |
* included in this file. |
| 4 |
*/ |
| 5 |
/* General */ |
| 6 |
#adminmenu .wp-has-current-submenu ul a[href="admin.php?page=wdk_importdemo"] { |
| 7 |
display: none; |
| 8 |
} |
| 9 |
|
| 10 |
.wdk-wrap .clearfix:after { |
| 11 |
content: ''; |
| 12 |
display: table; |
| 13 |
clear: both; |
| 14 |
} |
| 15 |
|
| 16 |
.wdk-wrap .postbox-header h3 { |
| 17 |
padding-left: 15px; |
| 18 |
} |
| 19 |
|
| 20 |
.wdk-wrap .pull_right { |
| 21 |
float: right; |
| 22 |
} |
| 23 |
|
| 24 |
.wdk-wrap .hidden { |
| 25 |
display: none; |
| 26 |
} |
| 27 |
|
| 28 |
.wdk-wrap .img-link { |
| 29 |
display: block; |
| 30 |
} |
| 31 |
|
| 32 |
.actions_column a:hover span { |
| 33 |
color: black; |
| 34 |
} |
| 35 |
|
| 36 |
.wp-list-table a.title { |
| 37 |
font-weight: bold; |
| 38 |
} |
| 39 |
|
| 40 |
/* Sortable */ |
| 41 |
.wdk-wrap .ui-sortable-handle a { |
| 42 |
text-decoration: none; |
| 43 |
border: 0px; |
| 44 |
color: black; |
| 45 |
} |
| 46 |
|
| 47 |
.wdk-wrap .ui-sortable-handle a:hover { |
| 48 |
color: #135e96; |
| 49 |
} |
| 50 |
|
| 51 |
.wdk-wrap .ui-sortable-handle h3 a { |
| 52 |
font-size: 16px; |
| 53 |
} |
| 54 |
|
| 55 |
.wdk-wrap .ui-sortable-handle h3 span { |
| 56 |
padding-right: 15px; |
| 57 |
} |
| 58 |
|
| 59 |
.wdk-wrap .hndle { |
| 60 |
display: block; |
| 61 |
} |
| 62 |
|
| 63 |
.wdk-wrap .listing_edit_map { |
| 64 |
height: 350px; |
| 65 |
width: 100%; |
| 66 |
} |
| 67 |
|
| 68 |
/* Alerts */ |
| 69 |
.wdk-wrap .alert { |
| 70 |
border-radius: 0; |
| 71 |
} |
| 72 |
|
| 73 |
.wdk-wrap .alert.alert-success { |
| 74 |
background: #E6F4E7; |
| 75 |
color: #376637; |
| 76 |
border-left: 3px solid #88BF88; |
| 77 |
margin: 0px 0px 5px 0px; |
| 78 |
padding: 15px; |
| 79 |
font-weight: bold; |
| 80 |
} |
| 81 |
|
| 82 |
.wdk-wrap .alert.alert-danger { |
| 83 |
background: #FFE6DF; |
| 84 |
color: #AB3C1B; |
| 85 |
border-left: 3px solid #E98B6F; |
| 86 |
margin: 0px 0px 5px 0px; |
| 87 |
padding: 15px; |
| 88 |
font-weight: bold; |
| 89 |
} |
| 90 |
|
| 91 |
.wdk-wrap .alert.alert-info { |
| 92 |
background: #cce5ff; |
| 93 |
color: #3d648e; |
| 94 |
border-left: 3px solid #3d648e; |
| 95 |
margin: 0px 0px 5px 0px; |
| 96 |
padding: 15px; |
| 97 |
font-weight: bold; |
| 98 |
} |
| 99 |
|
| 100 |
/* Labels */ |
| 101 |
.wdk-wrap .label { |
| 102 |
display: inline-block; |
| 103 |
} |
| 104 |
|
| 105 |
.wdk-wrap .label.label-success { |
| 106 |
background: #E6F4E7; |
| 107 |
color: #376637; |
| 108 |
margin: 0px 5px 5px 0px; |
| 109 |
padding: 5px; |
| 110 |
} |
| 111 |
|
| 112 |
.wdk-wrap .label.label-danger { |
| 113 |
background: #FFE6DF; |
| 114 |
color: #AB3C1B; |
| 115 |
margin: 0px 5px 5px 0px; |
| 116 |
padding: 5px; |
| 117 |
} |
| 118 |
|
| 119 |
.wdk-wrap .label.label-info { |
| 120 |
background: #cce5ff; |
| 121 |
color: #3d648e; |
| 122 |
margin: 0px 5px 5px 0px; |
| 123 |
padding: 5px; |
| 124 |
} |
| 125 |
|
| 126 |
.wdk-wrap .label.label-warning { |
| 127 |
color: #664d03; |
| 128 |
background-color: #fff3cd; |
| 129 |
border-color: #ffecb5; |
| 130 |
margin: 0px 5px 5px 0px; |
| 131 |
padding: 5px; |
| 132 |
} |
| 133 |
|
| 134 |
/* Custom fields layout */ |
| 135 |
div.wdk-field-edit { |
| 136 |
margin: 15px 0px; |
| 137 |
display: flex; |
| 138 |
justify-content: flex-start; |
| 139 |
} |
| 140 |
|
| 141 |
div.wdk-field-edit label { |
| 142 |
width: auto; |
| 143 |
display: inline-block; |
| 144 |
vertical-align: top; |
| 145 |
max-width: 80px; |
| 146 |
flex: 0 0 100px; |
| 147 |
padding-right: 10px; |
| 148 |
font-weight: 600; |
| 149 |
} |
| 150 |
|
| 151 |
div.wdk-field-edit.edittable { |
| 152 |
padding: 0px; |
| 153 |
margin: 0; |
| 154 |
} |
| 155 |
|
| 156 |
div.wdk-field-edit.edittable div.wdk-field-container { |
| 157 |
padding: 0px; |
| 158 |
} |
| 159 |
|
| 160 |
div.wdk-field-edit.edittable div.wdk-field-container .wdk_dropdown_tree { |
| 161 |
max-width: 351px; |
| 162 |
} |
| 163 |
|
| 164 |
div.wdk-field-edit div.wdk-field-container { |
| 165 |
display: inline-block; |
| 166 |
padding: 0px 15px; |
| 167 |
padding-right: 0; |
| 168 |
flex: 1 2 auto; |
| 169 |
} |
| 170 |
|
| 171 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree, |
| 172 |
div.wdk-field-edit div.wdk-field-container input:not([type="checkbox"]):not([type="radio"]), |
| 173 |
div.wdk-field-edit div.wdk-field-container select { |
| 174 |
width: 100%; |
| 175 |
max-width: 230px; |
| 176 |
} |
| 177 |
|
| 178 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree > .btn-group { |
| 179 |
width: 100%; |
| 180 |
display: flex; |
| 181 |
height: auto; |
| 182 |
} |
| 183 |
|
| 184 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button { |
| 185 |
padding: 0 8px; |
| 186 |
height: auto; |
| 187 |
box-shadow: 0 0 0 transparent; |
| 188 |
border: 1px solid #8c8f94; |
| 189 |
background-color: #fff; |
| 190 |
color: #2c3338; |
| 191 |
min-height: 30px; |
| 192 |
} |
| 193 |
|
| 194 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle, |
| 195 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button { |
| 196 |
border-radius: 4px; |
| 197 |
} |
| 198 |
|
| 199 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button:first-child { |
| 200 |
border-top-right-radius: 0; |
| 201 |
border-bottom-right-radius: 0; |
| 202 |
} |
| 203 |
|
| 204 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group { |
| 205 |
border: 1px solid #8c8f94; |
| 206 |
} |
| 207 |
|
| 208 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_scroll { |
| 209 |
border-left: 1px solid #8c8f94; |
| 210 |
left: 0; |
| 211 |
} |
| 212 |
|
| 213 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child { |
| 214 |
border-top-left-radius: 0; |
| 215 |
border-bottom-left-radius: 0; |
| 216 |
background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat right 5px top 55%; |
| 217 |
background-size: auto; |
| 218 |
background-size: 16px 16px; |
| 219 |
cursor: pointer; |
| 220 |
vertical-align: middle; |
| 221 |
} |
| 222 |
|
| 223 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree { |
| 224 |
min-width: initial; |
| 225 |
position: relative; |
| 226 |
} |
| 227 |
|
| 228 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container input.form-control.search_term { |
| 229 |
height: initial; |
| 230 |
padding: 0 8px; |
| 231 |
} |
| 232 |
|
| 233 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon { |
| 234 |
position: relative; |
| 235 |
padding: 6px 14px; |
| 236 |
} |
| 237 |
|
| 238 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon i { |
| 239 |
position: absolute; |
| 240 |
left: 0; |
| 241 |
margin-left: 5px; |
| 242 |
top: 50%; |
| 243 |
margin-top: -9px; |
| 244 |
} |
| 245 |
|
| 246 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon i.fa-spin { |
| 247 |
margin-left: 7px; |
| 248 |
margin-top: -7px; |
| 249 |
} |
| 250 |
|
| 251 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .fa:after { |
| 252 |
font-family: dashicons; |
| 253 |
line-height: 1; |
| 254 |
font-weight: 400; |
| 255 |
font-style: normal; |
| 256 |
text-transform: none; |
| 257 |
text-rendering: auto; |
| 258 |
font-size: 20px; |
| 259 |
text-align: center; |
| 260 |
} |
| 261 |
|
| 262 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after, |
| 263 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:before { |
| 264 |
display: none !important; |
| 265 |
} |
| 266 |
|
| 267 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:after { |
| 268 |
content: "\f179"; |
| 269 |
} |
| 270 |
|
| 271 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after { |
| 272 |
content: "\f113"; |
| 273 |
} |
| 274 |
|
| 275 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner { |
| 276 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 277 |
animation: wdk-spin 2s infinite linear; |
| 278 |
} |
| 279 |
|
| 280 |
@keyframes wdk-spin { |
| 281 |
0% { |
| 282 |
-webkit-transform: rotate(0deg); |
| 283 |
transform: rotate(0deg); |
| 284 |
} |
| 285 |
100% { |
| 286 |
-webkit-transform: rotate(360deg); |
| 287 |
transform: rotate(360deg); |
| 288 |
} |
| 289 |
} |
| 290 |
|
| 291 |
div.wdk-field-edit p.wdk-hint { |
| 292 |
font-style: italic; |
| 293 |
} |
| 294 |
|
| 295 |
/* Tables */ |
| 296 |
.wdk-wrap .widefat .actions_column { |
| 297 |
text-align: right; |
| 298 |
} |
| 299 |
|
| 300 |
.wdk-wrap .form-table td { |
| 301 |
vertical-align: top; |
| 302 |
} |
| 303 |
|
| 304 |
.wdk-wrap .wdk-side-content { |
| 305 |
display: flex; |
| 306 |
flex-wrap: wrap; |
| 307 |
} |
| 308 |
|
| 309 |
.wdk-wrap .wdk-side-content .wdk-col { |
| 310 |
flex: 1 2 auto; |
| 311 |
} |
| 312 |
|
| 313 |
.wdk-wrap .wdk-side-content .wdk-col.main { |
| 314 |
flex: 1 2 50%; |
| 315 |
padding-right: 35px; |
| 316 |
} |
| 317 |
|
| 318 |
.wdk-wrap .wdk-side-content .wdk-col.sidebar { |
| 319 |
flex: 1 2 30%; |
| 320 |
min-width: 400px; |
| 321 |
padding: 22px 0; |
| 322 |
} |
| 323 |
|
| 324 |
.wdk-wrap .wdk-side-content + .form-table td { |
| 325 |
padding-right: 0; |
| 326 |
} |
| 327 |
|
| 328 |
.wdk-wrap .wdk-side-content + .form-table th, |
| 329 |
.wdk-wrap .wdk-side-content .form-table th { |
| 330 |
max-width: 85px; |
| 331 |
padding-right: 10px; |
| 332 |
} |
| 333 |
|
| 334 |
/* Filtering above/below tables */ |
| 335 |
.wdk-wrap .tablenav.top .left { |
| 336 |
float: left; |
| 337 |
} |
| 338 |
|
| 339 |
.wdk-wrap .inputbox_map { |
| 340 |
height: 250px; |
| 341 |
width: 100%; |
| 342 |
max-width: 450px; |
| 343 |
} |
| 344 |
|
| 345 |
/* Visual Builder Search Forms */ |
| 346 |
.wdk-builder-container .widget-title h3, .widget-title h4 { |
| 347 |
white-space: initial; |
| 348 |
} |
| 349 |
|
| 350 |
.wdk-builder-container .wdk-builder-elements-column { |
| 351 |
margin-bottom: 15px; |
| 352 |
display: block; |
| 353 |
width: 40%; |
| 354 |
float: left; |
| 355 |
padding-top: 6px; |
| 356 |
} |
| 357 |
|
| 358 |
.wdk-builder-elements-box h3.sec-title { |
| 359 |
position: relative; |
| 360 |
border: 1px solid #c3c4c7; |
| 361 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 362 |
color: #fff; |
| 363 |
background: #2c3338; |
| 364 |
padding: 10px 15px; |
| 365 |
margin-bottom: 0; |
| 366 |
margin-top: 0; |
| 367 |
margin-right: 15px; |
| 368 |
} |
| 369 |
|
| 370 |
.wdk-builder-elements { |
| 371 |
width: 100%; |
| 372 |
min-height: auto; |
| 373 |
box-sizing: border-box; |
| 374 |
padding: 15px 15px 15px 0px; |
| 375 |
display: grid; |
| 376 |
grid-template-columns: repeat(2, 1fr); |
| 377 |
grid-column-gap: 10px; |
| 378 |
grid-row-gap: 0; |
| 379 |
} |
| 380 |
|
| 381 |
.wdk-builder-elements .widget { |
| 382 |
width: 100%; |
| 383 |
} |
| 384 |
|
| 385 |
.wdk-builder-selected { |
| 386 |
margin-top: 6px; |
| 387 |
width: 80%; |
| 388 |
border: 1px solid #c3c4c7; |
| 389 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 390 |
min-height: 400px; |
| 391 |
float: left; |
| 392 |
box-sizing: border-box; |
| 393 |
padding: 15px; |
| 394 |
} |
| 395 |
|
| 396 |
#wdk-drop .widget.ui-draggable.ui-sortable-handle, |
| 397 |
#wdk-drop .ui-sortable-placeholder.widget-placeholder, |
| 398 |
.wdk-wrap .drop-container .widget.ui-draggable.ui-sortable-handle, |
| 399 |
.wdk-wrap .drop-container .ui-sortable-placeholder.widget-placeholder { |
| 400 |
width: 300px; |
| 401 |
margin: 0px 15px 15px 0px; |
| 402 |
float: left; |
| 403 |
} |
| 404 |
|
| 405 |
#wdk-drag .widget-action, |
| 406 |
#wdk-drag .widget-inside { |
| 407 |
display: none !important; |
| 408 |
} |
| 409 |
|
| 410 |
.wdk-builder-container button[aria-expanded="true"] .toggle-indicator::before { |
| 411 |
content: "\f142"; |
| 412 |
} |
| 413 |
|
| 414 |
#wdk-drop .widget-inside, |
| 415 |
.wdk-wrap .drop-container .widget-inside { |
| 416 |
padding: 5px; |
| 417 |
} |
| 418 |
|
| 419 |
/* Visual Builder result item */ |
| 420 |
.wdk-wrap .drop-container { |
| 421 |
width: 60%; |
| 422 |
float: left; |
| 423 |
} |
| 424 |
|
| 425 |
.wdk-wrap .drop-container .wdk-builder-selected { |
| 426 |
width: 100%; |
| 427 |
min-height: 100px; |
| 428 |
} |
| 429 |
|
| 430 |
.wdk-wrap .drop-container > h3 { |
| 431 |
padding-bottom: 0px; |
| 432 |
margin-bottom: 0px; |
| 433 |
} |
| 434 |
|
| 435 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container .wp-editor-wrap input, |
| 436 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container .wp-editor-wrap select { |
| 437 |
width: auto; |
| 438 |
max-width: auto; |
| 439 |
} |
| 440 |
|
| 441 |
.wdk-field-edit.SECTION .title { |
| 442 |
border-bottom: 1px solid #c3c4c7; |
| 443 |
width: 100%; |
| 444 |
padding: 10px 0; |
| 445 |
} |
| 446 |
|
| 447 |
.wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child i { |
| 448 |
display: none; |
| 449 |
} |
| 450 |
|
| 451 |
/* columns */ |
| 452 |
.wdk-wrap { |
| 453 |
/* addon subscription */ |
| 454 |
} |
| 455 |
|
| 456 |
.wdk-wrap div.wdk-field-edit.notes a { |
| 457 |
margin-left: 5px; |
| 458 |
display: inline-block; |
| 459 |
font-weight: 600; |
| 460 |
font-size: 14px; |
| 461 |
} |
| 462 |
|
| 463 |
.wdk-wrap .mb0 { |
| 464 |
margin-bottom: 0 !important; |
| 465 |
} |
| 466 |
|
| 467 |
.wdk-wrap .align-top { |
| 468 |
vertical-align: top !important; |
| 469 |
} |
| 470 |
|
| 471 |
.wdk-wrap .text-capitalize { |
| 472 |
text-transform: capitalize !important; |
| 473 |
} |
| 474 |
|
| 475 |
.wdk-wrap .alert p { |
| 476 |
margin: 0; |
| 477 |
} |
| 478 |
|
| 479 |
.wdk-wrap .color-primary { |
| 480 |
color: #004c8c; |
| 481 |
} |
| 482 |
|
| 483 |
.wdk-wrap .wdk-infinity-load { |
| 484 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 485 |
animation: wdk-spin 2s infinite linear; |
| 486 |
} |
| 487 |
|
| 488 |
.wdk-wrap .postbox .inside { |
| 489 |
padding: 0 12px 0; |
| 490 |
} |
| 491 |
|
| 492 |
.wdk-wrap table.wp-list-table tr.no-items { |
| 493 |
background-color: #f0f0f1; |
| 494 |
} |
| 495 |
|
| 496 |
@keyframes wdk-spin { |
| 497 |
0% { |
| 498 |
-webkit-transform: rotate(0deg); |
| 499 |
transform: rotate(0deg); |
| 500 |
} |
| 501 |
100% { |
| 502 |
-webkit-transform: rotate(360deg); |
| 503 |
transform: rotate(360deg); |
| 504 |
} |
| 505 |
} |
| 506 |
|
| 507 |
.wdk-wrap .wdk-field-edit.SECTION .title { |
| 508 |
width: 100%; |
| 509 |
position: relative; |
| 510 |
border: 1px solid #c3c4c7; |
| 511 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 512 |
color: #fff; |
| 513 |
background: #2c3338; |
| 514 |
padding: 10px 15px; |
| 515 |
margin-bottom: 0; |
| 516 |
margin-top: 0; |
| 517 |
} |
| 518 |
|
| 519 |
.wdk-wrap .meta-box-sortables .wdk_field.SECTION .postbox { |
| 520 |
color: #fff; |
| 521 |
background: #2c3338; |
| 522 |
} |
| 523 |
|
| 524 |
.wdk-wrap .meta-box-sortables .wdk_field.SECTION.ui-sortable-handle a { |
| 525 |
color: #fff; |
| 526 |
} |
| 527 |
|
| 528 |
.wdk-wrap .meta-box-sortables .wdk_field.SECTION.ui-sortable-handle a:hover { |
| 529 |
color: #72aee6; |
| 530 |
} |
| 531 |
|
| 532 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container input, |
| 533 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container select { |
| 534 |
max-width: initial; |
| 535 |
flex: 1 2; |
| 536 |
} |
| 537 |
|
| 538 |
.wdk-wrap div.wdk-field-edit div.wdk-field-container { |
| 539 |
display: flex; |
| 540 |
align-items: flex-start; |
| 541 |
flex-wrap: wrap; |
| 542 |
} |
| 543 |
|
| 544 |
.wdk-wrap div.wdk-field-edit div.wdk-field-container .suffix:not(:empty) { |
| 545 |
padding: 5px 0px 5px 5px; |
| 546 |
} |
| 547 |
|
| 548 |
.wdk-wrap div.wdk-field-edit div.wdk-field-container .wp-editor-wrap { |
| 549 |
width: 100%; |
| 550 |
} |
| 551 |
|
| 552 |
.wdk-wrap div.wdk-field-edit p.wdk-hint { |
| 553 |
flex: 0 0 100%; |
| 554 |
} |
| 555 |
|
| 556 |
.wdk-wrap .wdk-row { |
| 557 |
display: -ms-flexbox; |
| 558 |
display: flex; |
| 559 |
-ms-flex-wrap: wrap; |
| 560 |
flex-wrap: wrap; |
| 561 |
margin-right: -15px; |
| 562 |
margin-left: -15px; |
| 563 |
} |
| 564 |
|
| 565 |
.wdk-wrap .wdk-row > [class*='wdk-col'] { |
| 566 |
position: relative; |
| 567 |
width: 100%; |
| 568 |
padding-right: 15px; |
| 569 |
padding-left: 15px; |
| 570 |
box-sizing: border-box; |
| 571 |
} |
| 572 |
|
| 573 |
.wdk-wrap .wdk-row .wdk-col-auto { |
| 574 |
-ms-flex: 0 0 auto; |
| 575 |
flex: 0 0 auto; |
| 576 |
width: auto; |
| 577 |
max-width: 100%; |
| 578 |
} |
| 579 |
|
| 580 |
.wdk-wrap .wdk-row .wdk-col-1 { |
| 581 |
-webkit-flex: 0 0 calc(100% / 12 * 1); |
| 582 |
flex: 0 0 calc(100% / 12 * 1); |
| 583 |
max-width: calc(100% / 12 * 1); |
| 584 |
} |
| 585 |
|
| 586 |
.wdk-wrap .wdk-row .wdk-col-2 { |
| 587 |
-webkit-flex: 0 0 calc(100% / 12 * 2); |
| 588 |
flex: 0 0 calc(100% / 12 * 2); |
| 589 |
max-width: calc(100% / 12 * 2); |
| 590 |
} |
| 591 |
|
| 592 |
.wdk-wrap .wdk-row .wdk-col-3 { |
| 593 |
-webkit-flex: 0 0 calc(100% / 12 * 3); |
| 594 |
flex: 0 0 calc(100% / 12 * 3); |
| 595 |
max-width: calc(100% / 12 * 3); |
| 596 |
} |
| 597 |
|
| 598 |
.wdk-wrap .wdk-row .wdk-col-4 { |
| 599 |
-webkit-flex: 0 0 calc(100% / 12 * 4); |
| 600 |
flex: 0 0 calc(100% / 12 * 4); |
| 601 |
max-width: calc(100% / 12 * 4); |
| 602 |
} |
| 603 |
|
| 604 |
.wdk-wrap .wdk-row .wdk-col-5 { |
| 605 |
-webkit-flex: 0 0 calc(100% / 12 * 5); |
| 606 |
flex: 0 0 calc(100% / 12 * 5); |
| 607 |
max-width: calc(100% / 12 * 5); |
| 608 |
} |
| 609 |
|
| 610 |
.wdk-wrap .wdk-row .wdk-col-6 { |
| 611 |
-webkit-flex: 0 0 calc(100% / 12 * 6); |
| 612 |
flex: 0 0 calc(100% / 12 * 6); |
| 613 |
max-width: calc(100% / 12 * 6); |
| 614 |
} |
| 615 |
|
| 616 |
.wdk-wrap .wdk-row .wdk-col-7 { |
| 617 |
-webkit-flex: 0 0 calc(100% / 12 * 7); |
| 618 |
flex: 0 0 calc(100% / 12 * 7); |
| 619 |
max-width: calc(100% / 12 * 7); |
| 620 |
} |
| 621 |
|
| 622 |
.wdk-wrap .wdk-row .wdk-col-8 { |
| 623 |
-webkit-flex: 0 0 calc(100% / 12 * 8); |
| 624 |
flex: 0 0 calc(100% / 12 * 8); |
| 625 |
max-width: calc(100% / 12 * 8); |
| 626 |
} |
| 627 |
|
| 628 |
.wdk-wrap .wdk-row .wdk-col-9 { |
| 629 |
-webkit-flex: 0 0 calc(100% / 12 * 9); |
| 630 |
flex: 0 0 calc(100% / 12 * 9); |
| 631 |
max-width: calc(100% / 12 * 9); |
| 632 |
} |
| 633 |
|
| 634 |
.wdk-wrap .wdk-row .wdk-col-10 { |
| 635 |
-webkit-flex: 0 0 calc(100% / 12 * 10); |
| 636 |
flex: 0 0 calc(100% / 12 * 10); |
| 637 |
max-width: calc(100% / 12 * 10); |
| 638 |
} |
| 639 |
|
| 640 |
.wdk-wrap .wdk-row .wdk-col-11 { |
| 641 |
-webkit-flex: 0 0 calc(100% / 12 * 11); |
| 642 |
flex: 0 0 calc(100% / 12 * 11); |
| 643 |
max-width: calc(100% / 12 * 11); |
| 644 |
} |
| 645 |
|
| 646 |
.wdk-wrap .wdk-row .wdk-col-12 { |
| 647 |
-webkit-flex: 0 0 calc(100% / 12 * 12); |
| 648 |
flex: 0 0 calc(100% / 12 * 12); |
| 649 |
max-width: calc(100% / 12 * 12); |
| 650 |
} |
| 651 |
|
| 652 |
@media (min-width: 992px) { |
| 653 |
.wdk-wrap .wdk-row .wdk-col-md-1 { |
| 654 |
-webkit-flex: 0 0 calc(100% / 12 * 1); |
| 655 |
flex: 0 0 calc(100% / 12 * 1); |
| 656 |
max-width: calc(100% / 12 * 1); |
| 657 |
} |
| 658 |
.wdk-wrap .wdk-row .wdk-col-md-2 { |
| 659 |
-webkit-flex: 0 0 calc(100% / 12 * 2); |
| 660 |
flex: 0 0 calc(100% / 12 * 2); |
| 661 |
max-width: calc(100% / 12 * 2); |
| 662 |
} |
| 663 |
.wdk-wrap .wdk-row .wdk-col-md-3 { |
| 664 |
-webkit-flex: 0 0 calc(100% / 12 * 3); |
| 665 |
flex: 0 0 calc(100% / 12 * 3); |
| 666 |
max-width: calc(100% / 12 * 3); |
| 667 |
} |
| 668 |
.wdk-wrap .wdk-row .wdk-col-md-4 { |
| 669 |
-webkit-flex: 0 0 calc(100% / 12 * 4); |
| 670 |
flex: 0 0 calc(100% / 12 * 4); |
| 671 |
max-width: calc(100% / 12 * 4); |
| 672 |
} |
| 673 |
.wdk-wrap .wdk-row .wdk-col-md-5 { |
| 674 |
-webkit-flex: 0 0 calc(100% / 12 * 5); |
| 675 |
flex: 0 0 calc(100% / 12 * 5); |
| 676 |
max-width: calc(100% / 12 * 5); |
| 677 |
} |
| 678 |
.wdk-wrap .wdk-row .wdk-col-md-6 { |
| 679 |
-webkit-flex: 0 0 calc(100% / 12 * 6); |
| 680 |
flex: 0 0 calc(100% / 12 * 6); |
| 681 |
max-width: calc(100% / 12 * 6); |
| 682 |
} |
| 683 |
.wdk-wrap .wdk-row .wdk-col-md-7 { |
| 684 |
-webkit-flex: 0 0 calc(100% / 12 * 7); |
| 685 |
flex: 0 0 calc(100% / 12 * 7); |
| 686 |
max-width: calc(100% / 12 * 7); |
| 687 |
} |
| 688 |
.wdk-wrap .wdk-row .wdk-col-md-8 { |
| 689 |
-webkit-flex: 0 0 calc(100% / 12 * 8); |
| 690 |
flex: 0 0 calc(100% / 12 * 8); |
| 691 |
max-width: calc(100% / 12 * 8); |
| 692 |
} |
| 693 |
.wdk-wrap .wdk-row .wdk-col-md-9 { |
| 694 |
-webkit-flex: 0 0 calc(100% / 12 * 9); |
| 695 |
flex: 0 0 calc(100% / 12 * 9); |
| 696 |
max-width: calc(100% / 12 * 9); |
| 697 |
} |
| 698 |
.wdk-wrap .wdk-row .wdk-col-md-10 { |
| 699 |
-webkit-flex: 0 0 calc(100% / 12 * 10); |
| 700 |
flex: 0 0 calc(100% / 12 * 10); |
| 701 |
max-width: calc(100% / 12 * 10); |
| 702 |
} |
| 703 |
.wdk-wrap .wdk-row .wdk-col-md-11 { |
| 704 |
-webkit-flex: 0 0 calc(100% / 12 * 11); |
| 705 |
flex: 0 0 calc(100% / 12 * 11); |
| 706 |
max-width: calc(100% / 12 * 11); |
| 707 |
} |
| 708 |
.wdk-wrap .wdk-row .wdk-col-md-12 { |
| 709 |
-webkit-flex: 0 0 calc(100% / 12 * 12); |
| 710 |
flex: 0 0 calc(100% / 12 * 12); |
| 711 |
max-width: calc(100% / 12 * 12); |
| 712 |
} |
| 713 |
} |
| 714 |
|
| 715 |
.wdk-wrap .text-center { |
| 716 |
text-align: center; |
| 717 |
} |
| 718 |
|
| 719 |
.wdk-wrap .text-left { |
| 720 |
text-align: left; |
| 721 |
} |
| 722 |
|
| 723 |
.wdk-wrap .text-right { |
| 724 |
text-align: right; |
| 725 |
} |
| 726 |
|
| 727 |
.wdk-wrap .button.btn-danger { |
| 728 |
color: #ffffff; |
| 729 |
background-color: #c1002b; |
| 730 |
border-color: #c1002b; |
| 731 |
} |
| 732 |
|
| 733 |
.wdk-wrap .button.btn-danger:hover, .wdk-wrap .button.btn-danger:hover { |
| 734 |
-webkit-box-shadow: 0 1px 5px rgba(193, 0, 43, 0.4) !important; |
| 735 |
box-shadow: 0 1px 5px rgba(193, 0, 43, 0.4) !important; |
| 736 |
} |
| 737 |
|
| 738 |
.wdk-wrap .button.btn-info { |
| 739 |
color: #ffffff; |
| 740 |
background-color: #00c9b7; |
| 741 |
border-color: #00c9b7; |
| 742 |
} |
| 743 |
|
| 744 |
.wdk-wrap .button.btn-info:hover, .wdk-wrap .button.btn-info:hover { |
| 745 |
-webkit-box-shadow: 0 1px 5px #00c9b875 !important; |
| 746 |
box-shadow: 0 1px 5px #00c9b875 !important; |
| 747 |
} |
| 748 |
|
| 749 |
.wdk-wrap .button.xl { |
| 750 |
padding: 10px 30px; |
| 751 |
} |
| 752 |
|
| 753 |
.wdk-wrap .wp-editor-wrap .wp-editor-container { |
| 754 |
width: 100%; |
| 755 |
margin: 0; |
| 756 |
box-shadow: none; |
| 757 |
border-radius: 4px; |
| 758 |
border: 1px solid #8c8f94; |
| 759 |
background-color: #fff; |
| 760 |
color: #2c3338; |
| 761 |
overflow: hidden; |
| 762 |
} |
| 763 |
|
| 764 |
.wdk-wrap .wdk-pricing { |
| 765 |
margin: 10px 0; |
| 766 |
} |
| 767 |
|
| 768 |
.wdk-wrap .wdk-pricing .wdk-sec-header { |
| 769 |
margin-bottom: 20px; |
| 770 |
} |
| 771 |
|
| 772 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title { |
| 773 |
font-size: 24px; |
| 774 |
font-weight: 300; |
| 775 |
line-height: 1.5; |
| 776 |
margin-top: 5px; |
| 777 |
} |
| 778 |
|
| 779 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title .mark { |
| 780 |
font-weight: 700; |
| 781 |
} |
| 782 |
|
| 783 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title .mark.color { |
| 784 |
color: #c1002b; |
| 785 |
} |
| 786 |
|
| 787 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title .mark.up { |
| 788 |
text-transform: uppercase; |
| 789 |
} |
| 790 |
|
| 791 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-subtitle { |
| 792 |
font-size: 20px; |
| 793 |
font-weight: 400; |
| 794 |
} |
| 795 |
|
| 796 |
.wdk-wrap .wdk-pricing .wdk-pac { |
| 797 |
text-align: center; |
| 798 |
background-color: #fff; |
| 799 |
border: 1px solid #dcdcde; |
| 800 |
box-sizing: border-box; |
| 801 |
margin-bottom: 15px; |
| 802 |
} |
| 803 |
|
| 804 |
.wdk-wrap .wdk-pricing .wdk-pac.featured .header { |
| 805 |
background: -webkit-gradient(linear, left top, left bottom, from(#5837ff), to(#5533ff)); |
| 806 |
background: linear-gradient(#1d2327, #121518); |
| 807 |
} |
| 808 |
|
| 809 |
.wdk-wrap .wdk-pricing .wdk-pac.featured p, |
| 810 |
.wdk-wrap .wdk-pricing .wdk-pac.featured .header { |
| 811 |
color: #fff; |
| 812 |
} |
| 813 |
|
| 814 |
.wdk-wrap .wdk-pricing .wdk-wrap .wdk-pricing .wdk-pac.yearly h4 { |
| 815 |
margin-top: 0px; |
| 816 |
} |
| 817 |
|
| 818 |
.wdk-wrap .wdk-pricing .header { |
| 819 |
background: -webkit-gradient(linear, left top, left bottom, from(#fcfdfe), to(#f9fbfd)); |
| 820 |
background: linear-gradient(#fcfdfe, #f9fbfd); |
| 821 |
background-color: rgba(22, 28, 45, 0.03); |
| 822 |
padding: 0.75rem 1.25rem; |
| 823 |
margin-bottom: 0; |
| 824 |
border-bottom: 1px solid rgba(22, 28, 45, 0.125); |
| 825 |
color: #6d768b; |
| 826 |
} |
| 827 |
|
| 828 |
.wdk-wrap .wdk-pricing .header h4 { |
| 829 |
font-size: 24px; |
| 830 |
font-weight: 400; |
| 831 |
margin-bottom: 15px; |
| 832 |
} |
| 833 |
|
| 834 |
.wdk-wrap .wdk-pricing .header p { |
| 835 |
font-size: 16px; |
| 836 |
} |
| 837 |
|
| 838 |
.wdk-wrap .wdk-pricing .list-items { |
| 839 |
padding: 0; |
| 840 |
margin: 0; |
| 841 |
list-style: none; |
| 842 |
} |
| 843 |
|
| 844 |
.wdk-wrap .wdk-pricing .list-items .item { |
| 845 |
display: block; |
| 846 |
padding: 12px 20px; |
| 847 |
font-size: 16px; |
| 848 |
color: #6d768b; |
| 849 |
} |
| 850 |
|
| 851 |
.wdk-wrap .wdk-pricing .list-items .item:not(:first-child) { |
| 852 |
border-top: 1px solid rgba(22, 28, 45, 0.125); |
| 853 |
} |
| 854 |
|
| 855 |
.wdk-wrap .wdk-pricing .wdk-pac-footer { |
| 856 |
border-top: 1px solid rgba(22, 28, 45, 0.125); |
| 857 |
padding: 20px 20px; |
| 858 |
} |
| 859 |
|
| 860 |
.wdk-wrap .wdk-pricing .wdk-pac-footer .btn { |
| 861 |
-webkit-transition: all 0.3s ease; |
| 862 |
transition: all 0.3s ease; |
| 863 |
text-decoration: none; |
| 864 |
font-family: "Poppins", sans-serif; |
| 865 |
font-weight: 400; |
| 866 |
white-space: normal; |
| 867 |
line-height: 1.5; |
| 868 |
border: 1px solid #506690; |
| 869 |
padding: 8px 20px; |
| 870 |
border-radius: 3px; |
| 871 |
} |
| 872 |
|
| 873 |
.wdk-wrap .wdk-pricing .wdk-pac-footer .btn:hover { |
| 874 |
color: #ffffff; |
| 875 |
background-color: #506690; |
| 876 |
border-color: #506690; |
| 877 |
} |
| 878 |
|
| 879 |
.wdk-wrap .wdk-pricing .pricing-value { |
| 880 |
font-family: "Poppins", sans-serif; |
| 881 |
font-size: 52px; |
| 882 |
} |
| 883 |
|
| 884 |
.wdk-wrap .wdk-pricing .pricing-value .price { |
| 885 |
position: relative; |
| 886 |
font-weight: 500; |
| 887 |
line-height: 1; |
| 888 |
} |
| 889 |
|
| 890 |
.wdk-wrap .wdk-pricing .pricing-value .price .before, |
| 891 |
.wdk-wrap .wdk-pricing .pricing-value .price .after { |
| 892 |
font-size: 18px; |
| 893 |
font-weight: 300; |
| 894 |
font-style: italic; |
| 895 |
} |
| 896 |
|
| 897 |
.wdk-wrap .wdk-pricing .pricing-value .price .before { |
| 898 |
position: absolute; |
| 899 |
top: 10px; |
| 900 |
left: -15px; |
| 901 |
} |
| 902 |
|
| 903 |
.wdk-wrap .wdk-pricing .pricing-value .price .after { |
| 904 |
position: relative; |
| 905 |
} |
| 906 |
|
| 907 |
.wdk-wrap .winter_mvc-media .winter_mvc-media-card { |
| 908 |
min-width: 200px; |
| 909 |
} |
| 910 |
|
| 911 |
.wp-core-ui .quicktags-toolbar input.button.button-small { |
| 912 |
display: inline-block !important; |
| 913 |
width: auto !important; |
| 914 |
} |
| 915 |
|
| 916 |
.wdk-unwrapp-field .wdk_dropdown_tree > .btn-group { |
| 917 |
width: 100%; |
| 918 |
display: flex; |
| 919 |
height: auto; |
| 920 |
} |
| 921 |
|
| 922 |
.wdk-unwrapp-field .wdk_dropdown_tree button { |
| 923 |
padding: 0 8px; |
| 924 |
height: auto; |
| 925 |
box-shadow: 0 0 0 transparent; |
| 926 |
border: 1px solid #8c8f94; |
| 927 |
background-color: #fff; |
| 928 |
color: #2c3338; |
| 929 |
min-height: 30px; |
| 930 |
} |
| 931 |
|
| 932 |
.wdk-unwrapp-field .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle, |
| 933 |
.wdk-unwrapp-field .wdk_dropdown_tree button { |
| 934 |
border-radius: 4px; |
| 935 |
} |
| 936 |
|
| 937 |
.wdk-unwrapp-field .wdk_dropdown_tree button:first-child { |
| 938 |
border-top-right-radius: 0; |
| 939 |
border-bottom-right-radius: 0; |
| 940 |
border-top-left-radius: 4px; |
| 941 |
border-bottom-left-radius: 4px; |
| 942 |
} |
| 943 |
|
| 944 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group { |
| 945 |
border: 1px solid #8c8f94; |
| 946 |
} |
| 947 |
|
| 948 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_scroll { |
| 949 |
border-left: 1px solid #8c8f94; |
| 950 |
left: 0; |
| 951 |
} |
| 952 |
|
| 953 |
.wdk-unwrapp-field .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child { |
| 954 |
border-top-left-radius: 0; |
| 955 |
border-bottom-left-radius: 0; |
| 956 |
background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat right 5px top 55%; |
| 957 |
background-size: auto; |
| 958 |
background-size: 16px 16px; |
| 959 |
cursor: pointer; |
| 960 |
vertical-align: middle; |
| 961 |
} |
| 962 |
|
| 963 |
.wdk-unwrapp-field .wdk_dropdown_tree { |
| 964 |
min-width: initial; |
| 965 |
position: relative; |
| 966 |
} |
| 967 |
|
| 968 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container input.form-control.search_term { |
| 969 |
height: initial; |
| 970 |
padding: 0 8px; |
| 971 |
} |
| 972 |
|
| 973 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon { |
| 974 |
position: relative; |
| 975 |
padding: 6px 14px; |
| 976 |
} |
| 977 |
|
| 978 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon i { |
| 979 |
position: absolute; |
| 980 |
left: 0; |
| 981 |
margin-left: 5px; |
| 982 |
top: 50%; |
| 983 |
margin-top: -9px; |
| 984 |
} |
| 985 |
|
| 986 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon i.fa-spin { |
| 987 |
margin-left: 7px; |
| 988 |
margin-top: -7px; |
| 989 |
} |
| 990 |
|
| 991 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .fa:after { |
| 992 |
font-family: dashicons; |
| 993 |
line-height: 1; |
| 994 |
font-weight: 400; |
| 995 |
font-style: normal; |
| 996 |
text-transform: none; |
| 997 |
text-rendering: auto; |
| 998 |
font-size: 20px; |
| 999 |
text-align: center; |
| 1000 |
} |
| 1001 |
|
| 1002 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after, |
| 1003 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:before { |
| 1004 |
display: none !important; |
| 1005 |
} |
| 1006 |
|
| 1007 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:after { |
| 1008 |
content: "\f179"; |
| 1009 |
} |
| 1010 |
|
| 1011 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after { |
| 1012 |
content: "\f113"; |
| 1013 |
} |
| 1014 |
|
| 1015 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner { |
| 1016 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 1017 |
animation: wdk-spin 2s infinite linear; |
| 1018 |
} |
| 1019 |
|
| 1020 |
@keyframes wdk-spin { |
| 1021 |
0% { |
| 1022 |
-webkit-transform: rotate(0deg); |
| 1023 |
transform: rotate(0deg); |
| 1024 |
} |
| 1025 |
100% { |
| 1026 |
-webkit-transform: rotate(360deg); |
| 1027 |
transform: rotate(360deg); |
| 1028 |
} |
| 1029 |
} |
| 1030 |
|
| 1031 |
.tablenav .wdk-unwrapp-field { |
| 1032 |
float: left; |
| 1033 |
margin-right: 4px; |
| 1034 |
max-width: 12.5rem; |
| 1035 |
margin-left: 3px; |
| 1036 |
} |
| 1037 |
|
| 1038 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons"], |
| 1039 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk-addons"], |
| 1040 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_currencies"], |
| 1041 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_membership"], |
| 1042 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_bookings"], |
| 1043 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons"], |
| 1044 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk-addons"], |
| 1045 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_currencies"], |
| 1046 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_membership"], |
| 1047 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_bookings"] { |
| 1048 |
color: greenyellow; |
| 1049 |
} |
| 1050 |
|