| 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 { |
| 17 |
max-width: 100%; |
| 18 |
min-width: 100%; |
| 19 |
} |
| 20 |
|
| 21 |
.wdk-wrap .postbox-header h3 { |
| 22 |
padding-left: 15px; |
| 23 |
} |
| 24 |
|
| 25 |
.wdk-wrap .postbox-header h3.wide { |
| 26 |
flex: 1 2 auto; |
| 27 |
} |
| 28 |
|
| 29 |
.wdk-wrap .pull_right { |
| 30 |
float: right; |
| 31 |
} |
| 32 |
|
| 33 |
.wdk-wrap .wdk-depend-hidden, |
| 34 |
.wdk-wrap .hidden { |
| 35 |
display: none; |
| 36 |
} |
| 37 |
|
| 38 |
.wdk-wrap .img-link { |
| 39 |
display: block; |
| 40 |
} |
| 41 |
|
| 42 |
.actions_column a:hover span { |
| 43 |
color: black; |
| 44 |
} |
| 45 |
|
| 46 |
.wp-list-table a.title { |
| 47 |
font-weight: bold; |
| 48 |
} |
| 49 |
|
| 50 |
/* Sortable */ |
| 51 |
.wdk-wrap .ui-sortable-handle a { |
| 52 |
text-decoration: none; |
| 53 |
border: 0px; |
| 54 |
color: black; |
| 55 |
} |
| 56 |
|
| 57 |
.wdk-wrap .ui-sortable-handle a:hover { |
| 58 |
color: #135e96; |
| 59 |
} |
| 60 |
|
| 61 |
.wdk-wrap .ui-sortable-handle h3 a { |
| 62 |
font-size: 16px; |
| 63 |
} |
| 64 |
|
| 65 |
.wdk-wrap .ui-sortable-handle h3 span { |
| 66 |
padding-right: 15px; |
| 67 |
} |
| 68 |
|
| 69 |
.wdk-wrap .hndle { |
| 70 |
display: block; |
| 71 |
} |
| 72 |
|
| 73 |
.wdk-wrap .listing_edit_map { |
| 74 |
height: 350px; |
| 75 |
width: 100%; |
| 76 |
} |
| 77 |
|
| 78 |
/* Alerts */ |
| 79 |
.wdk-wrap .alert { |
| 80 |
border-radius: 0; |
| 81 |
} |
| 82 |
|
| 83 |
.wdk-wrap .alert.alert-success { |
| 84 |
background: #E6F4E7; |
| 85 |
color: #376637; |
| 86 |
border-left: 3px solid #88BF88; |
| 87 |
margin: 0px 0px 5px 0px; |
| 88 |
padding: 15px; |
| 89 |
font-weight: bold; |
| 90 |
} |
| 91 |
|
| 92 |
.wdk-wrap .alert.alert-danger { |
| 93 |
background: #FFE6DF; |
| 94 |
color: #AB3C1B; |
| 95 |
border-left: 3px solid #E98B6F; |
| 96 |
margin: 0px 0px 5px 0px; |
| 97 |
padding: 15px; |
| 98 |
font-weight: bold; |
| 99 |
} |
| 100 |
|
| 101 |
.wdk-wrap .alert.alert-info { |
| 102 |
background: #cce5ff; |
| 103 |
color: #3d648e; |
| 104 |
border-left: 3px solid #3d648e; |
| 105 |
margin: 0px 0px 5px 0px; |
| 106 |
padding: 15px; |
| 107 |
font-weight: bold; |
| 108 |
} |
| 109 |
|
| 110 |
/* Labels */ |
| 111 |
.wdk-wrap .label { |
| 112 |
display: inline-block; |
| 113 |
margin: 0px 5px 5px 0px; |
| 114 |
padding: 6px 6px; |
| 115 |
font-size: 10px; |
| 116 |
font-weight: 700; |
| 117 |
line-height: 1; |
| 118 |
color: #fff; |
| 119 |
border-radius: 2px; |
| 120 |
} |
| 121 |
|
| 122 |
.wdk-wrap .label.label-success { |
| 123 |
background: linear-gradient(to right, #5cb85c, #90cf90); |
| 124 |
} |
| 125 |
|
| 126 |
.wdk-wrap .label.label-danger { |
| 127 |
background: linear-gradient(to right, #fe9365, #ffb08e); |
| 128 |
} |
| 129 |
|
| 130 |
.wdk-wrap .label.label-info { |
| 131 |
background: linear-gradient(to right, #5bc0de, #5bc0ded9); |
| 132 |
} |
| 133 |
|
| 134 |
.wdk-wrap .label.label-warning { |
| 135 |
background: linear-gradient(to right, #d9534f, #d9534fa1); |
| 136 |
} |
| 137 |
|
| 138 |
/* Custom fields layout */ |
| 139 |
div.wdk-field-edit { |
| 140 |
margin: 15px 0px; |
| 141 |
display: flex; |
| 142 |
justify-content: flex-start; |
| 143 |
} |
| 144 |
|
| 145 |
div.wdk-field-edit label { |
| 146 |
width: auto; |
| 147 |
display: inline-block; |
| 148 |
vertical-align: top; |
| 149 |
max-width: 80px; |
| 150 |
flex: 0 0 100px; |
| 151 |
padding-right: 10px; |
| 152 |
font-weight: 600; |
| 153 |
} |
| 154 |
|
| 155 |
div.wdk-field-edit.edittable { |
| 156 |
padding: 0px; |
| 157 |
margin: 0; |
| 158 |
} |
| 159 |
|
| 160 |
div.wdk-field-edit.edittable div.wdk-field-container { |
| 161 |
padding: 0px; |
| 162 |
} |
| 163 |
|
| 164 |
div.wdk-field-edit.edittable div.wdk-field-container .wdk_dropdown_tree { |
| 165 |
max-width: 351px; |
| 166 |
} |
| 167 |
|
| 168 |
div.wdk-field-edit.DATETIME_TO .wdk-field-container .wdk-datetime-group, |
| 169 |
div.wdk-field-edit.DATETIME_FROM .wdk-field-container .wdk-datetime-group, |
| 170 |
div.wdk-field-edit.DATETIME .wdk-field-container .wdk-datetime-group { |
| 171 |
display: flex; |
| 172 |
flex-wrap: wrap; |
| 173 |
max-width: 230px; |
| 174 |
} |
| 175 |
|
| 176 |
div.wdk-field-edit.DATETIME_TO .wdk-field-container .wdk-datetime-group select, |
| 177 |
div.wdk-field-edit.DATETIME_FROM .wdk-field-container .wdk-datetime-group select, |
| 178 |
div.wdk-field-edit.DATETIME .wdk-field-container .wdk-datetime-group select { |
| 179 |
width: 60px; |
| 180 |
} |
| 181 |
|
| 182 |
div.wdk-field-edit.DATETIME_TO .wdk-field-container .wdk-datetime-group .regular-text, |
| 183 |
div.wdk-field-edit.DATETIME_FROM .wdk-field-container .wdk-datetime-group .regular-text, |
| 184 |
div.wdk-field-edit.DATETIME .wdk-field-container .wdk-datetime-group .regular-text { |
| 185 |
min-width: 90px; |
| 186 |
flex: 1 2; |
| 187 |
} |
| 188 |
|
| 189 |
div.wdk-field-edit.DATETIME_TO .wdk-field-container input, |
| 190 |
div.wdk-field-edit.DATETIME_TO .wdk-field-container select, |
| 191 |
div.wdk-field-edit.DATETIME_FROM .wdk-field-container input, |
| 192 |
div.wdk-field-edit.DATETIME_FROM .wdk-field-container select, |
| 193 |
div.wdk-field-edit.DATETIME .wdk-field-container input, |
| 194 |
div.wdk-field-edit.DATETIME .wdk-field-container select { |
| 195 |
margin-bottom: 5px; |
| 196 |
} |
| 197 |
|
| 198 |
div.wdk-field-edit div.wdk-field-container { |
| 199 |
display: inline-block; |
| 200 |
padding: 0px 15px; |
| 201 |
padding-right: 0; |
| 202 |
flex: 1 2 auto; |
| 203 |
} |
| 204 |
|
| 205 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree, |
| 206 |
div.wdk-field-edit div.wdk-field-container input:not([type="checkbox"]):not([type="radio"]), |
| 207 |
div.wdk-field-edit div.wdk-field-container select { |
| 208 |
width: 100%; |
| 209 |
max-width: 230px; |
| 210 |
} |
| 211 |
|
| 212 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree > .btn-group { |
| 213 |
width: 100%; |
| 214 |
display: flex; |
| 215 |
height: auto; |
| 216 |
} |
| 217 |
|
| 218 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button { |
| 219 |
padding: 0 8px; |
| 220 |
height: auto; |
| 221 |
box-shadow: 0 0 0 transparent; |
| 222 |
border: 1px solid #8c8f94; |
| 223 |
background-color: #fff; |
| 224 |
color: #2c3338; |
| 225 |
min-height: 30px; |
| 226 |
} |
| 227 |
|
| 228 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle, |
| 229 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button { |
| 230 |
border-radius: 4px; |
| 231 |
} |
| 232 |
|
| 233 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button:first-child { |
| 234 |
border-top-right-radius: 0; |
| 235 |
border-bottom-right-radius: 0; |
| 236 |
} |
| 237 |
|
| 238 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group { |
| 239 |
border: 1px solid #8c8f94; |
| 240 |
} |
| 241 |
|
| 242 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_scroll { |
| 243 |
border-left: 1px solid #8c8f94; |
| 244 |
left: 0; |
| 245 |
} |
| 246 |
|
| 247 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child { |
| 248 |
border-top-left-radius: 0; |
| 249 |
border-bottom-left-radius: 0; |
| 250 |
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%; |
| 251 |
background-size: auto; |
| 252 |
background-size: 16px 16px; |
| 253 |
cursor: pointer; |
| 254 |
vertical-align: middle; |
| 255 |
} |
| 256 |
|
| 257 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree { |
| 258 |
min-width: initial; |
| 259 |
position: relative; |
| 260 |
} |
| 261 |
|
| 262 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container input.form-control.search_term { |
| 263 |
height: initial; |
| 264 |
padding: 0 8px; |
| 265 |
} |
| 266 |
|
| 267 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon { |
| 268 |
position: relative; |
| 269 |
} |
| 270 |
|
| 271 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon i { |
| 272 |
position: absolute; |
| 273 |
left: 0; |
| 274 |
margin-left: 5px; |
| 275 |
top: 50%; |
| 276 |
margin-top: -9px; |
| 277 |
} |
| 278 |
|
| 279 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon i.fa-spin { |
| 280 |
margin-left: 7px; |
| 281 |
margin-top: -7px; |
| 282 |
} |
| 283 |
|
| 284 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .fa:after { |
| 285 |
font-family: dashicons; |
| 286 |
line-height: 1; |
| 287 |
font-weight: 400; |
| 288 |
font-style: normal; |
| 289 |
text-transform: none; |
| 290 |
text-rendering: auto; |
| 291 |
font-size: 20px; |
| 292 |
text-align: center; |
| 293 |
} |
| 294 |
|
| 295 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:before, |
| 296 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:before { |
| 297 |
display: none !important; |
| 298 |
} |
| 299 |
|
| 300 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:after { |
| 301 |
content: "\f179"; |
| 302 |
} |
| 303 |
|
| 304 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after { |
| 305 |
content: "\f113"; |
| 306 |
} |
| 307 |
|
| 308 |
div.wdk-field-edit div.wdk-field-container .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner { |
| 309 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 310 |
animation: wdk-spin 2s infinite linear; |
| 311 |
font-family: dashicons; |
| 312 |
font-size: 18px; |
| 313 |
margin-left: 6px; |
| 314 |
margin-top: -9px; |
| 315 |
} |
| 316 |
|
| 317 |
@keyframes wdk-spin { |
| 318 |
0% { |
| 319 |
-webkit-transform: rotate(0deg); |
| 320 |
transform: rotate(0deg); |
| 321 |
} |
| 322 |
100% { |
| 323 |
-webkit-transform: rotate(360deg); |
| 324 |
transform: rotate(360deg); |
| 325 |
} |
| 326 |
} |
| 327 |
|
| 328 |
.form-table p.wdk-hint, |
| 329 |
div.wdk-field-edit p.wdk-hint { |
| 330 |
font-style: italic; |
| 331 |
} |
| 332 |
|
| 333 |
div.wdk-field-edit.inline { |
| 334 |
align-items: center; |
| 335 |
} |
| 336 |
|
| 337 |
div.wdk-field-edit.inline label { |
| 338 |
font-weight: 600; |
| 339 |
width: auto; |
| 340 |
flex: 0 0; |
| 341 |
max-width: initial; |
| 342 |
} |
| 343 |
|
| 344 |
div.wdk-field-edit.inline .wdk-field-container { |
| 345 |
margin: -5px -5px; |
| 346 |
} |
| 347 |
|
| 348 |
div.wdk-field-edit.inline .regular-text { |
| 349 |
margin: 5px 5px; |
| 350 |
flex: 1 2; |
| 351 |
} |
| 352 |
|
| 353 |
/* Tables */ |
| 354 |
.wdk-wrap .widefat .actions_column { |
| 355 |
text-align: right; |
| 356 |
} |
| 357 |
|
| 358 |
.wdk-wrap .form-table td { |
| 359 |
vertical-align: top; |
| 360 |
} |
| 361 |
|
| 362 |
.wdk-wrap .wdk-side-content { |
| 363 |
display: flex; |
| 364 |
flex-wrap: wrap; |
| 365 |
} |
| 366 |
|
| 367 |
.wdk-wrap .wdk-side-content .wdk-col { |
| 368 |
flex: 1 2 auto; |
| 369 |
} |
| 370 |
|
| 371 |
.wdk-wrap .wdk-side-content .wdk-col.main { |
| 372 |
flex: 1 2 50%; |
| 373 |
padding-right: 35px; |
| 374 |
} |
| 375 |
|
| 376 |
.wdk-wrap .wdk-side-content .wdk-col.sidebar { |
| 377 |
flex: 1 2 30%; |
| 378 |
min-width: 400px; |
| 379 |
padding: 22px 0; |
| 380 |
} |
| 381 |
|
| 382 |
.wdk-wrap .wdk-side-content + .form-table td { |
| 383 |
padding-right: 0; |
| 384 |
} |
| 385 |
|
| 386 |
.wdk-wrap .wdk-side-content + .form-table th, |
| 387 |
.wdk-wrap .wdk-side-content .form-table th { |
| 388 |
max-width: 85px; |
| 389 |
padding-right: 10px; |
| 390 |
} |
| 391 |
|
| 392 |
/* Filtering above/below tables */ |
| 393 |
.wdk-wrap .tablenav.top .left { |
| 394 |
float: left; |
| 395 |
} |
| 396 |
|
| 397 |
.wdk-wrap .inputbox_map { |
| 398 |
height: 250px; |
| 399 |
width: 100%; |
| 400 |
max-width: 450px; |
| 401 |
} |
| 402 |
|
| 403 |
/* Visual Builder Search Forms */ |
| 404 |
.wdk-builder-container .widget-title h3, |
| 405 |
.widget-title h4 { |
| 406 |
white-space: initial; |
| 407 |
} |
| 408 |
|
| 409 |
.wdk-builder-container .wdk-builder-elements-column { |
| 410 |
margin-bottom: 15px; |
| 411 |
display: block; |
| 412 |
width: 40%; |
| 413 |
float: left; |
| 414 |
padding-top: 6px; |
| 415 |
} |
| 416 |
|
| 417 |
.wdk-builder-elements-box h3.sec-title { |
| 418 |
position: relative; |
| 419 |
border: 1px solid #c3c4c7; |
| 420 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 421 |
color: #fff; |
| 422 |
background: #2c3338; |
| 423 |
padding: 10px 15px; |
| 424 |
margin-bottom: 0; |
| 425 |
margin-top: 0; |
| 426 |
margin-right: 15px; |
| 427 |
} |
| 428 |
|
| 429 |
.wdk-builder-elements { |
| 430 |
width: 100%; |
| 431 |
min-height: auto; |
| 432 |
box-sizing: border-box; |
| 433 |
padding: 15px 15px 15px 0px; |
| 434 |
display: grid; |
| 435 |
grid-template-columns: repeat(2, 1fr); |
| 436 |
grid-column-gap: 10px; |
| 437 |
grid-row-gap: 0; |
| 438 |
} |
| 439 |
|
| 440 |
.wdk-builder-elements .widget { |
| 441 |
width: 100%; |
| 442 |
} |
| 443 |
|
| 444 |
.wdk-builder-selected { |
| 445 |
margin-top: 6px; |
| 446 |
width: 80%; |
| 447 |
border: 1px solid #c3c4c7; |
| 448 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 449 |
min-height: 400px; |
| 450 |
float: left; |
| 451 |
box-sizing: border-box; |
| 452 |
padding: 15px; |
| 453 |
} |
| 454 |
|
| 455 |
#wdk-drop .widget.ui-draggable.ui-sortable-handle, |
| 456 |
#wdk-drop .ui-sortable-placeholder.widget-placeholder, |
| 457 |
.wdk-wrap .drop-container .widget.ui-draggable.ui-sortable-handle, |
| 458 |
.wdk-wrap .drop-container .ui-sortable-placeholder.widget-placeholder { |
| 459 |
width: 300px; |
| 460 |
margin: 0px 15px 15px 0px; |
| 461 |
float: left; |
| 462 |
} |
| 463 |
|
| 464 |
#wdk-drag .widget-action-remove, |
| 465 |
#wdk-drag .widget-action, |
| 466 |
#wdk-drag .widget-inside { |
| 467 |
display: none !important; |
| 468 |
} |
| 469 |
|
| 470 |
.wdk-builder-container button[aria-expanded="true"] .toggle-indicator::before { |
| 471 |
content: "\f142"; |
| 472 |
} |
| 473 |
|
| 474 |
#wdk-drop .widget-inside, |
| 475 |
.wdk-wrap .drop-container .widget-inside { |
| 476 |
padding: 5px; |
| 477 |
} |
| 478 |
|
| 479 |
.wdk-wrap .widget-top .widget-action { |
| 480 |
padding: 10px 0px; |
| 481 |
} |
| 482 |
|
| 483 |
.wdk-wrap .widget-action-remove { |
| 484 |
border: 0; |
| 485 |
margin: 0; |
| 486 |
padding: 11px 0px; |
| 487 |
margin-right: 10px; |
| 488 |
background: none; |
| 489 |
cursor: pointer; |
| 490 |
vertical-align: top; |
| 491 |
color: #50575e; |
| 492 |
transition: all .15s; |
| 493 |
} |
| 494 |
|
| 495 |
.wdk-wrap .widget-action-remove:hover { |
| 496 |
color: #000; |
| 497 |
} |
| 498 |
|
| 499 |
/* Visual Builder result item */ |
| 500 |
.wdk-wrap .drop-container { |
| 501 |
width: 60%; |
| 502 |
float: left; |
| 503 |
} |
| 504 |
|
| 505 |
.wdk-wrap .drop-container .wdk-builder-selected { |
| 506 |
width: 100%; |
| 507 |
min-height: 100px; |
| 508 |
} |
| 509 |
|
| 510 |
.wdk-wrap .drop-container > h3 { |
| 511 |
padding-bottom: 0px; |
| 512 |
margin-bottom: 0px; |
| 513 |
} |
| 514 |
|
| 515 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container .wp-editor-wrap input, |
| 516 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container .wp-editor-wrap select { |
| 517 |
width: auto; |
| 518 |
max-width: auto; |
| 519 |
} |
| 520 |
|
| 521 |
.wdk-field-edit.SECTION .title { |
| 522 |
border-bottom: 1px solid #c3c4c7; |
| 523 |
width: 100%; |
| 524 |
padding: 10px 0; |
| 525 |
} |
| 526 |
|
| 527 |
.wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child i { |
| 528 |
display: none; |
| 529 |
} |
| 530 |
|
| 531 |
/* columns */ |
| 532 |
.wdk-wrap { |
| 533 |
/* addon subscription */ |
| 534 |
} |
| 535 |
|
| 536 |
.wdk-wrap .actions { |
| 537 |
margin-top: 0; |
| 538 |
} |
| 539 |
|
| 540 |
.wdk-wrap .dl-helper dt { |
| 541 |
font-weight: 700; |
| 542 |
} |
| 543 |
|
| 544 |
.wdk-wrap .dl-helper dd { |
| 545 |
margin-left: 25px; |
| 546 |
} |
| 547 |
|
| 548 |
.wdk-wrap .wdk-mr-5 { |
| 549 |
margin-right: 5px; |
| 550 |
} |
| 551 |
|
| 552 |
.wdk-wrap .wdk-mr-10 { |
| 553 |
margin-right: 10px; |
| 554 |
} |
| 555 |
|
| 556 |
.wdk-wrap .wdk-mr-15 { |
| 557 |
margin-right: 15px; |
| 558 |
} |
| 559 |
|
| 560 |
.wdk-wrap .wdk-mr-20 { |
| 561 |
margin-right: 20px; |
| 562 |
} |
| 563 |
|
| 564 |
.wdk-wrap .wdk-mr-25 { |
| 565 |
margin-right: 25px; |
| 566 |
} |
| 567 |
|
| 568 |
.wdk-wrap .wdk-mr-30 { |
| 569 |
margin-right: 30px; |
| 570 |
} |
| 571 |
|
| 572 |
.wdk-wrap .wdk-mr-35 { |
| 573 |
margin-right: 35px; |
| 574 |
} |
| 575 |
|
| 576 |
.wdk-wrap .wdk-mr-40 { |
| 577 |
margin-right: 40px; |
| 578 |
} |
| 579 |
|
| 580 |
.wdk-wrap .wdk-mr-45 { |
| 581 |
margin-right: 45px; |
| 582 |
} |
| 583 |
|
| 584 |
.wdk-wrap .wdk-mr-50 { |
| 585 |
margin-right: 50px; |
| 586 |
} |
| 587 |
|
| 588 |
.wdk-wrap div.wdk-field-edit.notes a { |
| 589 |
margin-left: 5px; |
| 590 |
display: inline-block; |
| 591 |
font-weight: 600; |
| 592 |
font-size: 14px; |
| 593 |
} |
| 594 |
|
| 595 |
.wdk-wrap .mb0 { |
| 596 |
margin-bottom: 0 !important; |
| 597 |
} |
| 598 |
|
| 599 |
.wdk-wrap .align-top { |
| 600 |
vertical-align: top !important; |
| 601 |
} |
| 602 |
|
| 603 |
.wdk-wrap .text-capitalize { |
| 604 |
text-transform: capitalize !important; |
| 605 |
} |
| 606 |
|
| 607 |
.wdk-wrap .alert p { |
| 608 |
margin: 0; |
| 609 |
} |
| 610 |
|
| 611 |
.wdk-wrap .color-primary { |
| 612 |
color: #004c8c; |
| 613 |
} |
| 614 |
|
| 615 |
.wdk-wrap .wdk-infinity-load { |
| 616 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 617 |
animation: wdk-spin 2s infinite linear; |
| 618 |
} |
| 619 |
|
| 620 |
.wdk-wrap .postbox .inside { |
| 621 |
padding: 0 12px 0; |
| 622 |
} |
| 623 |
|
| 624 |
.wdk-wrap table.wp-list-table tr.no-items { |
| 625 |
background-color: #f0f0f1; |
| 626 |
} |
| 627 |
|
| 628 |
@keyframes wdk-spin { |
| 629 |
0% { |
| 630 |
-webkit-transform: rotate(0deg); |
| 631 |
transform: rotate(0deg); |
| 632 |
} |
| 633 |
100% { |
| 634 |
-webkit-transform: rotate(360deg); |
| 635 |
transform: rotate(360deg); |
| 636 |
} |
| 637 |
} |
| 638 |
|
| 639 |
.wdk-wrap .wdk-field-edit.SECTION .title { |
| 640 |
width: 100%; |
| 641 |
position: relative; |
| 642 |
border: 1px solid #c3c4c7; |
| 643 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 644 |
color: #fff; |
| 645 |
background: #2c3338; |
| 646 |
padding: 10px 15px; |
| 647 |
margin-bottom: 0; |
| 648 |
margin-top: 0; |
| 649 |
} |
| 650 |
|
| 651 |
.wdk-wrap .meta-box-sortables .wdk_field.SECTION .postbox { |
| 652 |
color: #fff; |
| 653 |
background: #2c3338; |
| 654 |
} |
| 655 |
|
| 656 |
.wdk-wrap .meta-box-sortables .wdk_field.SECTION.ui-sortable-handle a { |
| 657 |
color: #fff; |
| 658 |
} |
| 659 |
|
| 660 |
.wdk-wrap .meta-box-sortables .wdk_field.SECTION.ui-sortable-handle a:hover { |
| 661 |
color: #72aee6; |
| 662 |
} |
| 663 |
|
| 664 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container input, |
| 665 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container select { |
| 666 |
max-width: initial; |
| 667 |
flex: 1 2; |
| 668 |
} |
| 669 |
|
| 670 |
.wdk-wrap div.wdk-field-edit div.wdk-field-container { |
| 671 |
display: flex; |
| 672 |
align-items: flex-start; |
| 673 |
flex-wrap: wrap; |
| 674 |
} |
| 675 |
|
| 676 |
.wdk-wrap div.wdk-field-edit.TEXTAREA_CODE div.wdk-field-container { |
| 677 |
width: 400px; |
| 678 |
} |
| 679 |
|
| 680 |
.wdk-wrap div.wdk-field-edit div.wdk-field-container .suffix:not(:empty) { |
| 681 |
padding: 5px 0px 5px 5px; |
| 682 |
} |
| 683 |
|
| 684 |
.wdk-wrap div.wdk-field-edit div.wdk-field-container .wp-editor-wrap { |
| 685 |
width: 100%; |
| 686 |
max-width: 100%; |
| 687 |
} |
| 688 |
|
| 689 |
.wdk-wrap div.wdk-field-edit p.wdk-hint { |
| 690 |
flex: 0 0 100%; |
| 691 |
} |
| 692 |
|
| 693 |
.wdk-wrap .wdk-row { |
| 694 |
display: -ms-flexbox; |
| 695 |
display: flex; |
| 696 |
-ms-flex-wrap: wrap; |
| 697 |
flex-wrap: wrap; |
| 698 |
margin-right: -15px; |
| 699 |
margin-left: -15px; |
| 700 |
} |
| 701 |
|
| 702 |
.wdk-wrap .wdk-row > [class*='wdk-col'] { |
| 703 |
position: relative; |
| 704 |
width: 100%; |
| 705 |
padding-right: 15px; |
| 706 |
padding-left: 15px; |
| 707 |
box-sizing: border-box; |
| 708 |
} |
| 709 |
|
| 710 |
.wdk-wrap .wdk-row .wdk-col-auto { |
| 711 |
-ms-flex: 0 0 auto; |
| 712 |
flex: 0 0 auto; |
| 713 |
width: auto; |
| 714 |
max-width: 100%; |
| 715 |
} |
| 716 |
|
| 717 |
.wdk-wrap .wdk-row .wdk-col-1 { |
| 718 |
-webkit-flex: 0 0 calc(100% / 12 * 1); |
| 719 |
flex: 0 0 calc(100% / 12 * 1); |
| 720 |
max-width: calc(100% / 12 * 1); |
| 721 |
} |
| 722 |
|
| 723 |
.wdk-wrap .wdk-row .wdk-col-2 { |
| 724 |
-webkit-flex: 0 0 calc(100% / 12 * 2); |
| 725 |
flex: 0 0 calc(100% / 12 * 2); |
| 726 |
max-width: calc(100% / 12 * 2); |
| 727 |
} |
| 728 |
|
| 729 |
.wdk-wrap .wdk-row .wdk-col-3 { |
| 730 |
-webkit-flex: 0 0 calc(100% / 12 * 3); |
| 731 |
flex: 0 0 calc(100% / 12 * 3); |
| 732 |
max-width: calc(100% / 12 * 3); |
| 733 |
} |
| 734 |
|
| 735 |
.wdk-wrap .wdk-row .wdk-col-4 { |
| 736 |
-webkit-flex: 0 0 calc(100% / 12 * 4); |
| 737 |
flex: 0 0 calc(100% / 12 * 4); |
| 738 |
max-width: calc(100% / 12 * 4); |
| 739 |
} |
| 740 |
|
| 741 |
.wdk-wrap .wdk-row .wdk-col-5 { |
| 742 |
-webkit-flex: 0 0 calc(100% / 12 * 5); |
| 743 |
flex: 0 0 calc(100% / 12 * 5); |
| 744 |
max-width: calc(100% / 12 * 5); |
| 745 |
} |
| 746 |
|
| 747 |
.wdk-wrap .wdk-row .wdk-col-6 { |
| 748 |
-webkit-flex: 0 0 calc(100% / 12 * 6); |
| 749 |
flex: 0 0 calc(100% / 12 * 6); |
| 750 |
max-width: calc(100% / 12 * 6); |
| 751 |
} |
| 752 |
|
| 753 |
.wdk-wrap .wdk-row .wdk-col-7 { |
| 754 |
-webkit-flex: 0 0 calc(100% / 12 * 7); |
| 755 |
flex: 0 0 calc(100% / 12 * 7); |
| 756 |
max-width: calc(100% / 12 * 7); |
| 757 |
} |
| 758 |
|
| 759 |
.wdk-wrap .wdk-row .wdk-col-8 { |
| 760 |
-webkit-flex: 0 0 calc(100% / 12 * 8); |
| 761 |
flex: 0 0 calc(100% / 12 * 8); |
| 762 |
max-width: calc(100% / 12 * 8); |
| 763 |
} |
| 764 |
|
| 765 |
.wdk-wrap .wdk-row .wdk-col-9 { |
| 766 |
-webkit-flex: 0 0 calc(100% / 12 * 9); |
| 767 |
flex: 0 0 calc(100% / 12 * 9); |
| 768 |
max-width: calc(100% / 12 * 9); |
| 769 |
} |
| 770 |
|
| 771 |
.wdk-wrap .wdk-row .wdk-col-10 { |
| 772 |
-webkit-flex: 0 0 calc(100% / 12 * 10); |
| 773 |
flex: 0 0 calc(100% / 12 * 10); |
| 774 |
max-width: calc(100% / 12 * 10); |
| 775 |
} |
| 776 |
|
| 777 |
.wdk-wrap .wdk-row .wdk-col-11 { |
| 778 |
-webkit-flex: 0 0 calc(100% / 12 * 11); |
| 779 |
flex: 0 0 calc(100% / 12 * 11); |
| 780 |
max-width: calc(100% / 12 * 11); |
| 781 |
} |
| 782 |
|
| 783 |
.wdk-wrap .wdk-row .wdk-col-12 { |
| 784 |
-webkit-flex: 0 0 calc(100% / 12 * 12); |
| 785 |
flex: 0 0 calc(100% / 12 * 12); |
| 786 |
max-width: calc(100% / 12 * 12); |
| 787 |
} |
| 788 |
|
| 789 |
@media (min-width: 992px) { |
| 790 |
.wdk-wrap .wdk-row .wdk-col-md-1 { |
| 791 |
-webkit-flex: 0 0 calc(100% / 12 * 1); |
| 792 |
flex: 0 0 calc(100% / 12 * 1); |
| 793 |
max-width: calc(100% / 12 * 1); |
| 794 |
} |
| 795 |
.wdk-wrap .wdk-row .wdk-col-md-2 { |
| 796 |
-webkit-flex: 0 0 calc(100% / 12 * 2); |
| 797 |
flex: 0 0 calc(100% / 12 * 2); |
| 798 |
max-width: calc(100% / 12 * 2); |
| 799 |
} |
| 800 |
.wdk-wrap .wdk-row .wdk-col-md-3 { |
| 801 |
-webkit-flex: 0 0 calc(100% / 12 * 3); |
| 802 |
flex: 0 0 calc(100% / 12 * 3); |
| 803 |
max-width: calc(100% / 12 * 3); |
| 804 |
} |
| 805 |
.wdk-wrap .wdk-row .wdk-col-md-4 { |
| 806 |
-webkit-flex: 0 0 calc(100% / 12 * 4); |
| 807 |
flex: 0 0 calc(100% / 12 * 4); |
| 808 |
max-width: calc(100% / 12 * 4); |
| 809 |
} |
| 810 |
.wdk-wrap .wdk-row .wdk-col-md-5 { |
| 811 |
-webkit-flex: 0 0 calc(100% / 12 * 5); |
| 812 |
flex: 0 0 calc(100% / 12 * 5); |
| 813 |
max-width: calc(100% / 12 * 5); |
| 814 |
} |
| 815 |
.wdk-wrap .wdk-row .wdk-col-md-6 { |
| 816 |
-webkit-flex: 0 0 calc(100% / 12 * 6); |
| 817 |
flex: 0 0 calc(100% / 12 * 6); |
| 818 |
max-width: calc(100% / 12 * 6); |
| 819 |
} |
| 820 |
.wdk-wrap .wdk-row .wdk-col-md-7 { |
| 821 |
-webkit-flex: 0 0 calc(100% / 12 * 7); |
| 822 |
flex: 0 0 calc(100% / 12 * 7); |
| 823 |
max-width: calc(100% / 12 * 7); |
| 824 |
} |
| 825 |
.wdk-wrap .wdk-row .wdk-col-md-8 { |
| 826 |
-webkit-flex: 0 0 calc(100% / 12 * 8); |
| 827 |
flex: 0 0 calc(100% / 12 * 8); |
| 828 |
max-width: calc(100% / 12 * 8); |
| 829 |
} |
| 830 |
.wdk-wrap .wdk-row .wdk-col-md-9 { |
| 831 |
-webkit-flex: 0 0 calc(100% / 12 * 9); |
| 832 |
flex: 0 0 calc(100% / 12 * 9); |
| 833 |
max-width: calc(100% / 12 * 9); |
| 834 |
} |
| 835 |
.wdk-wrap .wdk-row .wdk-col-md-10 { |
| 836 |
-webkit-flex: 0 0 calc(100% / 12 * 10); |
| 837 |
flex: 0 0 calc(100% / 12 * 10); |
| 838 |
max-width: calc(100% / 12 * 10); |
| 839 |
} |
| 840 |
.wdk-wrap .wdk-row .wdk-col-md-11 { |
| 841 |
-webkit-flex: 0 0 calc(100% / 12 * 11); |
| 842 |
flex: 0 0 calc(100% / 12 * 11); |
| 843 |
max-width: calc(100% / 12 * 11); |
| 844 |
} |
| 845 |
.wdk-wrap .wdk-row .wdk-col-md-12 { |
| 846 |
-webkit-flex: 0 0 calc(100% / 12 * 12); |
| 847 |
flex: 0 0 calc(100% / 12 * 12); |
| 848 |
max-width: calc(100% / 12 * 12); |
| 849 |
} |
| 850 |
} |
| 851 |
|
| 852 |
.wdk-wrap .text-center { |
| 853 |
text-align: center; |
| 854 |
} |
| 855 |
|
| 856 |
.wdk-wrap .text-left { |
| 857 |
text-align: left; |
| 858 |
} |
| 859 |
|
| 860 |
.wdk-wrap .text-right { |
| 861 |
text-align: right; |
| 862 |
} |
| 863 |
|
| 864 |
.wdk-wrap .button.btn-danger { |
| 865 |
color: #ffffff; |
| 866 |
background-color: #c1002b; |
| 867 |
border-color: #c1002b; |
| 868 |
} |
| 869 |
|
| 870 |
.wdk-wrap .button.btn-danger:hover, .wdk-wrap .button.btn-danger:hover { |
| 871 |
-webkit-box-shadow: 0 1px 5px rgba(193, 0, 43, 0.4) !important; |
| 872 |
box-shadow: 0 1px 5px rgba(193, 0, 43, 0.4) !important; |
| 873 |
} |
| 874 |
|
| 875 |
.wdk-wrap .button.btn-info { |
| 876 |
color: #ffffff; |
| 877 |
background-color: #00c9b7; |
| 878 |
border-color: #00c9b7; |
| 879 |
} |
| 880 |
|
| 881 |
.wdk-wrap .button.btn-info:hover, .wdk-wrap .button.btn-info:hover { |
| 882 |
-webkit-box-shadow: 0 1px 5px #00c9b875 !important; |
| 883 |
box-shadow: 0 1px 5px #00c9b875 !important; |
| 884 |
} |
| 885 |
|
| 886 |
.wdk-wrap .button.xl { |
| 887 |
padding: 10px 30px; |
| 888 |
} |
| 889 |
|
| 890 |
.wdk-wrap .wp-editor-wrap .wp-editor-container { |
| 891 |
width: 100%; |
| 892 |
margin: 0; |
| 893 |
box-shadow: none; |
| 894 |
border-radius: 4px; |
| 895 |
border: 1px solid #8c8f94; |
| 896 |
background-color: #fff; |
| 897 |
color: #2c3338; |
| 898 |
overflow: hidden; |
| 899 |
} |
| 900 |
|
| 901 |
.wdk-wrap .wdk-pricing { |
| 902 |
margin: 10px 0; |
| 903 |
} |
| 904 |
|
| 905 |
.wdk-wrap .wdk-pricing .wdk-sec-header { |
| 906 |
margin-bottom: 20px; |
| 907 |
} |
| 908 |
|
| 909 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title { |
| 910 |
font-size: 24px; |
| 911 |
font-weight: 300; |
| 912 |
line-height: 1.5; |
| 913 |
margin-top: 5px; |
| 914 |
} |
| 915 |
|
| 916 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title .mark { |
| 917 |
font-weight: 700; |
| 918 |
} |
| 919 |
|
| 920 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title .mark.color { |
| 921 |
color: #c1002b; |
| 922 |
} |
| 923 |
|
| 924 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-title .mark.up { |
| 925 |
text-transform: uppercase; |
| 926 |
} |
| 927 |
|
| 928 |
.wdk-wrap .wdk-pricing .wdk-sec-header .wdk-sec-subtitle { |
| 929 |
font-size: 20px; |
| 930 |
font-weight: 400; |
| 931 |
} |
| 932 |
|
| 933 |
.wdk-wrap .wdk-pricing .wdk-pac { |
| 934 |
text-align: center; |
| 935 |
background-color: #fff; |
| 936 |
border: 1px solid #dcdcde; |
| 937 |
box-sizing: border-box; |
| 938 |
margin-bottom: 15px; |
| 939 |
} |
| 940 |
|
| 941 |
.wdk-wrap .wdk-pricing .wdk-pac.featured .header { |
| 942 |
background: -webkit-gradient(linear, left top, left bottom, from(#5837ff), to(#5533ff)); |
| 943 |
background: linear-gradient(#1d2327, #121518); |
| 944 |
} |
| 945 |
|
| 946 |
.wdk-wrap .wdk-pricing .wdk-pac.featured p, |
| 947 |
.wdk-wrap .wdk-pricing .wdk-pac.featured .header { |
| 948 |
color: #fff; |
| 949 |
} |
| 950 |
|
| 951 |
.wdk-wrap .wdk-pricing .wdk-wrap .wdk-pricing .wdk-pac.yearly h4 { |
| 952 |
margin-top: 0px; |
| 953 |
} |
| 954 |
|
| 955 |
.wdk-wrap .wdk-pricing .header { |
| 956 |
background: -webkit-gradient(linear, left top, left bottom, from(#fcfdfe), to(#f9fbfd)); |
| 957 |
background: linear-gradient(#fcfdfe, #f9fbfd); |
| 958 |
background-color: rgba(22, 28, 45, 0.03); |
| 959 |
padding: 0.75rem 1.25rem; |
| 960 |
margin-bottom: 0; |
| 961 |
border-bottom: 1px solid rgba(22, 28, 45, 0.125); |
| 962 |
color: #6d768b; |
| 963 |
} |
| 964 |
|
| 965 |
.wdk-wrap .wdk-pricing .header h4 { |
| 966 |
font-size: 24px; |
| 967 |
font-weight: 400; |
| 968 |
margin-bottom: 15px; |
| 969 |
} |
| 970 |
|
| 971 |
.wdk-wrap .wdk-pricing .header p { |
| 972 |
font-size: 16px; |
| 973 |
} |
| 974 |
|
| 975 |
.wdk-wrap .wdk-pricing .list-items { |
| 976 |
padding: 0; |
| 977 |
margin: 0; |
| 978 |
list-style: none; |
| 979 |
} |
| 980 |
|
| 981 |
.wdk-wrap .wdk-pricing .list-items .item { |
| 982 |
display: block; |
| 983 |
padding: 12px 20px; |
| 984 |
font-size: 16px; |
| 985 |
color: #6d768b; |
| 986 |
} |
| 987 |
|
| 988 |
.wdk-wrap .wdk-pricing .list-items .item:not(:first-child) { |
| 989 |
border-top: 1px solid rgba(22, 28, 45, 0.125); |
| 990 |
} |
| 991 |
|
| 992 |
.wdk-wrap .wdk-pricing .wdk-pac-footer { |
| 993 |
border-top: 1px solid rgba(22, 28, 45, 0.125); |
| 994 |
padding: 20px 20px; |
| 995 |
} |
| 996 |
|
| 997 |
.wdk-wrap .wdk-pricing .wdk-pac-footer .btn { |
| 998 |
-webkit-transition: all 0.3s ease; |
| 999 |
transition: all 0.3s ease; |
| 1000 |
text-decoration: none; |
| 1001 |
font-family: "Poppins", sans-serif; |
| 1002 |
font-weight: 400; |
| 1003 |
white-space: normal; |
| 1004 |
line-height: 1.5; |
| 1005 |
border: 1px solid #506690; |
| 1006 |
padding: 8px 20px; |
| 1007 |
border-radius: 3px; |
| 1008 |
} |
| 1009 |
|
| 1010 |
.wdk-wrap .wdk-pricing .wdk-pac-footer .btn:hover { |
| 1011 |
color: #ffffff; |
| 1012 |
background-color: #506690; |
| 1013 |
border-color: #506690; |
| 1014 |
} |
| 1015 |
|
| 1016 |
.wdk-wrap .wdk-pricing .pricing-value { |
| 1017 |
font-family: "Poppins", sans-serif; |
| 1018 |
font-size: 52px; |
| 1019 |
} |
| 1020 |
|
| 1021 |
.wdk-wrap .wdk-pricing .pricing-value .price { |
| 1022 |
position: relative; |
| 1023 |
font-weight: 500; |
| 1024 |
line-height: 1; |
| 1025 |
} |
| 1026 |
|
| 1027 |
.wdk-wrap .wdk-pricing .pricing-value .price .before, |
| 1028 |
.wdk-wrap .wdk-pricing .pricing-value .price .after { |
| 1029 |
font-size: 18px; |
| 1030 |
font-weight: 300; |
| 1031 |
font-style: italic; |
| 1032 |
} |
| 1033 |
|
| 1034 |
.wdk-wrap .wdk-pricing .pricing-value .price .before { |
| 1035 |
position: absolute; |
| 1036 |
top: 10px; |
| 1037 |
left: -15px; |
| 1038 |
} |
| 1039 |
|
| 1040 |
.wdk-wrap .wdk-pricing .pricing-value .price .after { |
| 1041 |
position: relative; |
| 1042 |
} |
| 1043 |
|
| 1044 |
.wdk-wrap .winter_mvc-media .winter_mvc-media-card { |
| 1045 |
min-width: 200px; |
| 1046 |
} |
| 1047 |
|
| 1048 |
.wp-core-ui .quicktags-toolbar input.button.button-small { |
| 1049 |
display: inline-block !important; |
| 1050 |
width: auto !important; |
| 1051 |
} |
| 1052 |
|
| 1053 |
.wdk-unwrapp-field .wdk_dropdown_tree > .btn-group { |
| 1054 |
width: 100%; |
| 1055 |
display: flex; |
| 1056 |
height: auto; |
| 1057 |
} |
| 1058 |
|
| 1059 |
.wdk-unwrapp-field .wdk_dropdown_tree button { |
| 1060 |
padding: 0 8px; |
| 1061 |
height: auto; |
| 1062 |
box-shadow: 0 0 0 transparent; |
| 1063 |
border: 1px solid #8c8f94; |
| 1064 |
background-color: #fff; |
| 1065 |
color: #2c3338; |
| 1066 |
min-height: 30px; |
| 1067 |
} |
| 1068 |
|
| 1069 |
.wdk-unwrapp-field .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle, |
| 1070 |
.wdk-unwrapp-field .wdk_dropdown_tree button { |
| 1071 |
border-radius: 4px; |
| 1072 |
} |
| 1073 |
|
| 1074 |
.wdk-unwrapp-field .wdk_dropdown_tree button:first-child { |
| 1075 |
border-top-right-radius: 0; |
| 1076 |
border-bottom-right-radius: 0; |
| 1077 |
border-top-left-radius: 4px; |
| 1078 |
border-bottom-left-radius: 4px; |
| 1079 |
} |
| 1080 |
|
| 1081 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group { |
| 1082 |
border: 1px solid #8c8f94; |
| 1083 |
} |
| 1084 |
|
| 1085 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_scroll { |
| 1086 |
border-left: 1px solid #8c8f94; |
| 1087 |
left: 0; |
| 1088 |
} |
| 1089 |
|
| 1090 |
.wdk-unwrapp-field .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child { |
| 1091 |
border-top-left-radius: 0; |
| 1092 |
border-bottom-left-radius: 0; |
| 1093 |
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%; |
| 1094 |
background-size: auto; |
| 1095 |
background-size: 16px 16px; |
| 1096 |
cursor: pointer; |
| 1097 |
vertical-align: middle; |
| 1098 |
} |
| 1099 |
|
| 1100 |
.wdk-unwrapp-field .wdk_dropdown_tree { |
| 1101 |
min-width: initial; |
| 1102 |
position: relative; |
| 1103 |
} |
| 1104 |
|
| 1105 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container input.form-control.search_term { |
| 1106 |
height: initial; |
| 1107 |
max-width: 100%; |
| 1108 |
} |
| 1109 |
|
| 1110 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon { |
| 1111 |
position: relative; |
| 1112 |
} |
| 1113 |
|
| 1114 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon i { |
| 1115 |
position: absolute; |
| 1116 |
left: 0; |
| 1117 |
margin-left: 5px; |
| 1118 |
top: 50%; |
| 1119 |
margin-top: -9px; |
| 1120 |
} |
| 1121 |
|
| 1122 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon i.fa-spin { |
| 1123 |
margin-left: 7px; |
| 1124 |
margin-top: -7px; |
| 1125 |
} |
| 1126 |
|
| 1127 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .fa:after { |
| 1128 |
font-family: dashicons; |
| 1129 |
line-height: 1; |
| 1130 |
font-weight: 400; |
| 1131 |
font-style: normal; |
| 1132 |
text-transform: none; |
| 1133 |
text-rendering: auto; |
| 1134 |
font-size: 20px; |
| 1135 |
text-align: center; |
| 1136 |
} |
| 1137 |
|
| 1138 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after, |
| 1139 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:before { |
| 1140 |
display: none !important; |
| 1141 |
} |
| 1142 |
|
| 1143 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .fa.fa-search:after { |
| 1144 |
content: "\f179"; |
| 1145 |
} |
| 1146 |
|
| 1147 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner:after { |
| 1148 |
content: "\f113"; |
| 1149 |
} |
| 1150 |
|
| 1151 |
.wdk-unwrapp-field .wdk_dropdown_tree .list_container .input-group-addon .loader-spiner.fa.fa-spinner { |
| 1152 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 1153 |
animation: wdk-spin 2s infinite linear; |
| 1154 |
} |
| 1155 |
|
| 1156 |
@keyframes wdk-spin { |
| 1157 |
0% { |
| 1158 |
-webkit-transform: rotate(0deg); |
| 1159 |
transform: rotate(0deg); |
| 1160 |
} |
| 1161 |
100% { |
| 1162 |
-webkit-transform: rotate(360deg); |
| 1163 |
transform: rotate(360deg); |
| 1164 |
} |
| 1165 |
} |
| 1166 |
|
| 1167 |
.tablenav .wdk-unwrapp-field { |
| 1168 |
float: left; |
| 1169 |
margin-right: 4px; |
| 1170 |
max-width: 12.5rem; |
| 1171 |
margin-left: 3px; |
| 1172 |
} |
| 1173 |
|
| 1174 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons"], |
| 1175 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk-addons"], |
| 1176 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_currencies"], |
| 1177 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_membership"], |
| 1178 |
#adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_bookings"], |
| 1179 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons"], |
| 1180 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk-addons"], |
| 1181 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_currencies"], |
| 1182 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_membership"], |
| 1183 |
#adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_bookings"] { |
| 1184 |
color: greenyellow; |
| 1185 |
} |
| 1186 |
|
| 1187 |
body .select2-container--default.select2-container--focus .select2-selection--multiple, body .select2-container--default { |
| 1188 |
border: 0; |
| 1189 |
min-width: 150px; |
| 1190 |
} |
| 1191 |
|
| 1192 |
body .select2-container--default .select2-selection--multiple .select2-search__field { |
| 1193 |
border: 0 !important; |
| 1194 |
} |
| 1195 |
|
| 1196 |
body .select2-container--default .select2-selection--multiple .select2-selection__rendered li { |
| 1197 |
list-style: none; |
| 1198 |
margin: 0; |
| 1199 |
} |
| 1200 |
|
| 1201 |
body .select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice { |
| 1202 |
padding: 5px 6px; |
| 1203 |
margin: 3px 3px; |
| 1204 |
} |
| 1205 |
|
| 1206 |
body .select2-container--default .select2-selection--multiple .select2-selection__rendered { |
| 1207 |
padding: 0; |
| 1208 |
display: block; |
| 1209 |
padding: 2px 45px 2px 5px; |
| 1210 |
} |
| 1211 |
|
| 1212 |
body .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default .select2-selection--multiple .select2-selection__rendered { |
| 1213 |
padding: 0px 45px 0px 5px; |
| 1214 |
display: flex; |
| 1215 |
align-items: center; |
| 1216 |
flex-wrap: wrap; |
| 1217 |
} |
| 1218 |
|
| 1219 |
body .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice { |
| 1220 |
padding: 1px 6px; |
| 1221 |
line-height: 19px; |
| 1222 |
} |
| 1223 |
|
| 1224 |
body .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default { |
| 1225 |
width: auto !important; |
| 1226 |
flex: 1 2 auto; |
| 1227 |
} |
| 1228 |
|
| 1229 |
body .listing_custom_fields .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default { |
| 1230 |
width: initial !important; |
| 1231 |
flex: 1 2 auto; |
| 1232 |
min-width: initial; |
| 1233 |
} |
| 1234 |
|
| 1235 |
body .select2-container .select2-search--inline .select2-search__field { |
| 1236 |
margin-top: 0; |
| 1237 |
} |
| 1238 |
|
| 1239 |
body .select2-container--default.select2-container--focus .select2-selection--multiple { |
| 1240 |
border: 1px solid #8c8f94; |
| 1241 |
} |
| 1242 |
|
| 1243 |
.wdk_btn_load_indicator { |
| 1244 |
position: relative; |
| 1245 |
} |
| 1246 |
|
| 1247 |
.wdk_btn_load_indicator::after { |
| 1248 |
content: "\f113"; |
| 1249 |
font-family: dashicons; |
| 1250 |
display: inline-block; |
| 1251 |
line-height: 1; |
| 1252 |
font-weight: 900; |
| 1253 |
font-style: normal; |
| 1254 |
font-size: 20px; |
| 1255 |
speak: never; |
| 1256 |
text-decoration: inherit; |
| 1257 |
text-transform: none; |
| 1258 |
text-rendering: auto; |
| 1259 |
-webkit-animation: wdk-spin 2s infinite linear; |
| 1260 |
animation: wdk-spin 2s infinite linear; |
| 1261 |
margin-left: 5px; |
| 1262 |
margin-top: -10px; |
| 1263 |
display: inline-block; |
| 1264 |
position: relative; |
| 1265 |
top: 50%; |
| 1266 |
} |
| 1267 |
|
| 1268 |
.wdk_btn_load_indicator.out::after { |
| 1269 |
position: absolute; |
| 1270 |
right: -30px; |
| 1271 |
color: #2271b1; |
| 1272 |
} |
| 1273 |
|
| 1274 |
@keyframes wdk-spin { |
| 1275 |
0% { |
| 1276 |
-webkit-transform: rotate(0deg); |
| 1277 |
transform: rotate(0deg); |
| 1278 |
} |
| 1279 |
100% { |
| 1280 |
-webkit-transform: rotate(360deg); |
| 1281 |
transform: rotate(360deg); |
| 1282 |
} |
| 1283 |
} |
| 1284 |
|
| 1285 |
.wdk_btn_load_success { |
| 1286 |
position: relative; |
| 1287 |
} |
| 1288 |
|
| 1289 |
.wdk_btn_load_success::after { |
| 1290 |
content: "\f147"; |
| 1291 |
font-family: dashicons; |
| 1292 |
display: inline-block; |
| 1293 |
line-height: 1; |
| 1294 |
font-weight: 900; |
| 1295 |
font-style: normal; |
| 1296 |
font-size: 20px; |
| 1297 |
speak: never; |
| 1298 |
text-decoration: inherit; |
| 1299 |
text-transform: none; |
| 1300 |
text-rendering: auto; |
| 1301 |
margin-left: 5px; |
| 1302 |
margin-top: -10px; |
| 1303 |
display: inline-block; |
| 1304 |
position: relative; |
| 1305 |
top: 50%; |
| 1306 |
} |
| 1307 |
|
| 1308 |
.wdk_btn_load_success.out::after { |
| 1309 |
position: absolute; |
| 1310 |
right: -30px; |
| 1311 |
color: #2271b1; |
| 1312 |
} |
| 1313 |
|
| 1314 |
.wdk_btn_load_error { |
| 1315 |
position: relative; |
| 1316 |
} |
| 1317 |
|
| 1318 |
.wdk_btn_load_error::after { |
| 1319 |
content: "\f335"; |
| 1320 |
font-family: dashicons; |
| 1321 |
display: inline-block; |
| 1322 |
line-height: 1; |
| 1323 |
font-weight: 900; |
| 1324 |
font-style: normal; |
| 1325 |
font-size: 20px; |
| 1326 |
speak: never; |
| 1327 |
text-decoration: inherit; |
| 1328 |
text-transform: none; |
| 1329 |
text-rendering: auto; |
| 1330 |
margin-left: 5px; |
| 1331 |
margin-top: -10px; |
| 1332 |
display: inline-block; |
| 1333 |
position: relative; |
| 1334 |
top: 50%; |
| 1335 |
} |
| 1336 |
|
| 1337 |
.wdk_btn_load_error.out::after { |
| 1338 |
position: absolute; |
| 1339 |
right: -30px; |
| 1340 |
color: #2271b1; |
| 1341 |
} |
| 1342 |
|
| 1343 |
.wdk-depend-fields .wdk_field { |
| 1344 |
position: relative; |
| 1345 |
min-width: 255px; |
| 1346 |
border: 1px solid #c3c4c7; |
| 1347 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 1348 |
background: #fff; |
| 1349 |
margin-bottom: 20px; |
| 1350 |
display: flex; |
| 1351 |
align-items: center; |
| 1352 |
justify-content: flex-start; |
| 1353 |
padding: 15px 15px; |
| 1354 |
} |
| 1355 |
|
| 1356 |
.wdk-depend-fields .wdk_field input[type="checkbox"], |
| 1357 |
.wdk-depend-fields .wdk_field input[type="radio"] { |
| 1358 |
margin: 0; |
| 1359 |
} |
| 1360 |
|
| 1361 |
.wdk-depend-fields .wdk_field label { |
| 1362 |
margin-right: 10px; |
| 1363 |
display: inline-block; |
| 1364 |
} |
| 1365 |
|
| 1366 |
.wdk-depend-fields .wdk_field.section { |
| 1367 |
border: 1px solid #c3c4c7; |
| 1368 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 1369 |
color: #fff; |
| 1370 |
background: #2c3338; |
| 1371 |
} |
| 1372 |
|
| 1373 |
.wdk-depend-fields .wdk_field.section label { |
| 1374 |
margin-left: auto; |
| 1375 |
} |
| 1376 |
|
| 1377 |
.wdk-depend-fields .wdk_field.wdk_btn_load_indicator.out::after { |
| 1378 |
right: 15px; |
| 1379 |
} |
| 1380 |
|
| 1381 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit .wdk-field-container { |
| 1382 |
width: calc(100% - 130px); |
| 1383 |
} |
| 1384 |
|
| 1385 |
.wdk-wrap .listing_custom_fields div.wdk-field-edit .wdk-field-container .select2.select2-container { |
| 1386 |
max-width: 100%; |
| 1387 |
} |
| 1388 |
|
| 1389 |
.wdk-wrap .wdk-listing-childs-drop { |
| 1390 |
margin-top: 6px; |
| 1391 |
border: 1px solid #c3c4c7; |
| 1392 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 1393 |
border-radius: 4px; |
| 1394 |
border: 1px dashed #8c8f94; |
| 1395 |
background-color: #fff; |
| 1396 |
min-height: 75px; |
| 1397 |
box-sizing: border-box; |
| 1398 |
padding: 15px 15px 0 15px; |
| 1399 |
margin-bottom: 15px; |
| 1400 |
} |
| 1401 |
|
| 1402 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item { |
| 1403 |
width: 100%; |
| 1404 |
max-width: initial; |
| 1405 |
min-width: initial; |
| 1406 |
margin: 0px 15px 15px 0px; |
| 1407 |
cursor: pointer; |
| 1408 |
border-radius: 4px; |
| 1409 |
border: 1px solid #c3c4c7; |
| 1410 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 1411 |
background: #fff; |
| 1412 |
} |
| 1413 |
|
| 1414 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item h3.handle { |
| 1415 |
padding: 10px 15px; |
| 1416 |
margin: 0; |
| 1417 |
display: flex; |
| 1418 |
align-items: center; |
| 1419 |
justify-content: flex-start; |
| 1420 |
} |
| 1421 |
|
| 1422 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item h3.handle .title { |
| 1423 |
flex: 1 2 auto; |
| 1424 |
} |
| 1425 |
|
| 1426 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item h3.handle .btn span { |
| 1427 |
padding-right: 0; |
| 1428 |
padding-left: 10px; |
| 1429 |
} |
| 1430 |
|
| 1431 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item a.title { |
| 1432 |
font-size: 16px; |
| 1433 |
font-weight: 500; |
| 1434 |
} |
| 1435 |
|
| 1436 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item a { |
| 1437 |
text-decoration: none; |
| 1438 |
border: 0px; |
| 1439 |
color: black; |
| 1440 |
} |
| 1441 |
|
| 1442 |
.wdk-wrap .wdk-listing-childs-drop .drop-listing-item a:hover { |
| 1443 |
color: #135e96; |
| 1444 |
} |
| 1445 |
|
| 1446 |
.wdk-wrap .wdk-listing-childs-drop .wdk_dropdown_tree .list_scroll { |
| 1447 |
border-right: 1px solid #eaeaea; |
| 1448 |
} |
| 1449 |
|
| 1450 |
.wdk-wrap .wp-list-table .child th { |
| 1451 |
border-left: 3px solid #000; |
| 1452 |
} |
| 1453 |
|
| 1454 |
.wdk-wrap .wp-list-table a.laoding_sublistings { |
| 1455 |
margin-top: 5px; |
| 1456 |
display: inline-block; |
| 1457 |
} |
| 1458 |
|
| 1459 |
.wdk-wrap .wdk-tabs-navs { |
| 1460 |
font-size: 0; |
| 1461 |
display: inline-block; |
| 1462 |
background: #fff; |
| 1463 |
border: 1px solid #c3c4c7; |
| 1464 |
margin-bottom: 15px; |
| 1465 |
margin-top: 10px; |
| 1466 |
} |
| 1467 |
|
| 1468 |
.wdk-wrap .wdk-tabs-navs label { |
| 1469 |
display: inline-block; |
| 1470 |
font-size: 18px; |
| 1471 |
border: 1px solid #eee; |
| 1472 |
cursor: pointer; |
| 1473 |
transition: all .15s; |
| 1474 |
padding: 10px 15px; |
| 1475 |
} |
| 1476 |
|
| 1477 |
.wdk-wrap .wdk-tabs-navs label.active, .wdk-wrap .wdk-tabs-navs label:hover { |
| 1478 |
background: #eee; |
| 1479 |
} |
| 1480 |
|
| 1481 |
.wdk-wrap .wdk-tabs-navs label:not(:last-child) { |
| 1482 |
margin-right: -1px; |
| 1483 |
} |
| 1484 |
|
| 1485 |
.wdk-wrap .wdk-tabs-panel > .wdk-tab { |
| 1486 |
display: none; |
| 1487 |
} |
| 1488 |
|
| 1489 |
.wdk-wrap .wdk-tabs-panel .wdk-tab-input { |
| 1490 |
display: none; |
| 1491 |
} |
| 1492 |
|
| 1493 |
.wdk-wrap .wdk-tabs-panel input:checked + div.wdk-tab { |
| 1494 |
display: block; |
| 1495 |
} |
| 1496 |
|
| 1497 |
.wdk-wrap .wdk_multi_treefield_dropdown { |
| 1498 |
margin-bottom: 15px; |
| 1499 |
} |
| 1500 |
|
| 1501 |
.wdk-wrap .wdk_multi_treefield_dropdown_container .wdk_multi_treefield_dropdown:last-child { |
| 1502 |
margin-bottom: 0; |
| 1503 |
} |
| 1504 |
|
| 1505 |
.wdk-wrap .wdk_treefield_dropdown .wdk-field-group { |
| 1506 |
display: inline-block; |
| 1507 |
padding-right: 30px; |
| 1508 |
} |
| 1509 |
|
| 1510 |
.wdk-wrap .wdk_editlog table { |
| 1511 |
border: 1px solid #ddd; |
| 1512 |
width: 100%; |
| 1513 |
max-width: 100%; |
| 1514 |
margin-bottom: 20px; |
| 1515 |
background-color: #fff; |
| 1516 |
border-spacing: 0; |
| 1517 |
border-collapse: collapse; |
| 1518 |
} |
| 1519 |
|
| 1520 |
.wdk-wrap .wdk_editlog caption { |
| 1521 |
color: #000; |
| 1522 |
font-weight: 600; |
| 1523 |
font-size: 16px; |
| 1524 |
padding-bottom: 15px; |
| 1525 |
text-align: left; |
| 1526 |
} |
| 1527 |
|
| 1528 |
.wdk-wrap .wdk_editlog td, |
| 1529 |
.wdk-wrap .wdk_editlog th { |
| 1530 |
border: 1px solid #ddd; |
| 1531 |
padding: 8px; |
| 1532 |
line-height: 1.42857143; |
| 1533 |
vertical-align: top; |
| 1534 |
text-align: center; |
| 1535 |
} |
| 1536 |
|
| 1537 |
.wdk-wrap .wdk_editlog thead > tr:first-child > td, |
| 1538 |
.wdk-wrap .wdk_editlog thead > tr:first-child > th, |
| 1539 |
.wdk-wrap .wdk_editlog thead > tr:first-child > td, |
| 1540 |
.wdk-wrap .wdk_editlog thead > tr:first-child > th, |
| 1541 |
.wdk-wrap .wdk_editlog thead:first-child > tr:first-child > td, |
| 1542 |
.wdk-wrap .wdk_editlog thead:first-child > tr:first-child > th { |
| 1543 |
border-top: 0; |
| 1544 |
} |
| 1545 |
|
| 1546 |
.custom_parameter { |
| 1547 |
float: left; |
| 1548 |
margin-right: 6px; |
| 1549 |
box-shadow: 0 0 0 transparent; |
| 1550 |
border-radius: 4px; |
| 1551 |
background-color: #fff; |
| 1552 |
color: #2c3338; |
| 1553 |
display: grid; |
| 1554 |
grid-row: revert; |
| 1555 |
grid-auto-flow: column; |
| 1556 |
grid-gap: 1px 1px; |
| 1557 |
background-color: #8c8f94; |
| 1558 |
border: 1px solid #8c8f94; |
| 1559 |
border-radius: 3px; |
| 1560 |
overflow: hidden; |
| 1561 |
} |
| 1562 |
|
| 1563 |
.custom_parameter * { |
| 1564 |
margin: 0 !important; |
| 1565 |
min-height: auto; |
| 1566 |
height: 100%; |
| 1567 |
border: 0 !important; |
| 1568 |
box-shadow: none !important; |
| 1569 |
border-radius: 0 !important; |
| 1570 |
min-height: 28px !important; |
| 1571 |
max-width: 100px !important; |
| 1572 |
} |
| 1573 |
|
| 1574 |
.btn_parameter { |
| 1575 |
float: left; |
| 1576 |
margin-right: 6px; |
| 1577 |
background: #2271b1; |
| 1578 |
color: #fff; |
| 1579 |
cursor: pointer; |
| 1580 |
border: 0; |
| 1581 |
height: 30px; |
| 1582 |
width: 32px; |
| 1583 |
border-radius: 3px; |
| 1584 |
text-decoration: none; |
| 1585 |
display: flex; |
| 1586 |
align-items: center; |
| 1587 |
justify-content: center; |
| 1588 |
} |
| 1589 |
|
| 1590 |
.btn_parameter:hover { |
| 1591 |
background: #135e96; |
| 1592 |
color: #fff; |
| 1593 |
} |
| 1594 |
|
| 1595 |
.btn_parameter span { |
| 1596 |
height: auto; |
| 1597 |
} |
| 1598 |
|
| 1599 |
.filters-form select, |
| 1600 |
.filters-form input, |
| 1601 |
.filters-form button, |
| 1602 |
.filters-form .custom_parameter { |
| 1603 |
margin-bottom: 5px; |
| 1604 |
} |
| 1605 |
|