| 1 |
/** |
| 2 |
* |
| 3 |
* --------------------------------------------------------- |
| 4 |
* CODESTAR FRAMEWORK RTL CSS MAP |
| 5 |
* --------------------------------------------------------- |
| 6 |
* |
| 7 |
* 01. Base |
| 8 |
* 01. 01. Header |
| 9 |
* 01. 02. Header Buttons |
| 10 |
* 01. 03. Navigation |
| 11 |
* 01. 04. Content |
| 12 |
* 01. 05. Section |
| 13 |
* 01. 06. Show All Settings |
| 14 |
* 01. 07. Search Input |
| 15 |
* 01. 08. Copyright |
| 16 |
* 01. 09. Metabox |
| 17 |
* 02. Fields |
| 18 |
* 02. 01. Field: typography |
| 19 |
* 02. 02. Field: checkbox, radio |
| 20 |
* 02. 03. Field: switcher |
| 21 |
* 02. 04. Field: upload |
| 22 |
* 02. 05. Field: group |
| 23 |
* 02. 06. Field: repeater |
| 24 |
* 02. 07. Field: help |
| 25 |
* 02. 08. Field: icon |
| 26 |
* 02. 09. Field: gallery |
| 27 |
* 02. 10. Field: sorter |
| 28 |
* 02. 11. Field: tabbed |
| 29 |
* 02. 12. Field: media |
| 30 |
* 02. 13. Field: notice |
| 31 |
* 02. 14. Field: border, spacing, dimensions |
| 32 |
* 02. 15. Field: background |
| 33 |
* 02. 16. Field: spinner |
| 34 |
* 02. 17. Field: slider |
| 35 |
* 02. 18. Field: button_set |
| 36 |
* 02. 19. Field: link_color |
| 37 |
* 02. 20. Field: color_group |
| 38 |
* 02. 21. Field: palette |
| 39 |
* 02. 22. Field: accordion |
| 40 |
* 02. 23. Field: date |
| 41 |
* 02. 24. Field: map |
| 42 |
* 02. 25. Field: sortable |
| 43 |
* 02. 26. Field: number |
| 44 |
* 03. Taxonomy |
| 45 |
* 04. Profile |
| 46 |
* 05. Nav Menu |
| 47 |
* 06. Modal |
| 48 |
* 07. Customizer |
| 49 |
* 08. Responsive |
| 50 |
* 09. Others |
| 51 |
* |
| 52 |
* --------------------------------------------------------- |
| 53 |
* |
| 54 |
*/ |
| 55 |
/** |
| 56 |
* 01. Base |
| 57 |
*/ |
| 58 |
.csf-options { |
| 59 |
margin-left: 20px; |
| 60 |
margin-right: 0; |
| 61 |
} |
| 62 |
|
| 63 |
/** |
| 64 |
* 01. 01. Header |
| 65 |
*/ |
| 66 |
.csf-header h1 { |
| 67 |
float: right; |
| 68 |
} |
| 69 |
.csf-header fieldset { |
| 70 |
float: left; |
| 71 |
} |
| 72 |
|
| 73 |
/** |
| 74 |
* 01. 02. Header Buttons |
| 75 |
*/ |
| 76 |
.csf-buttons { |
| 77 |
float: left; |
| 78 |
direction: ltr; |
| 79 |
} |
| 80 |
|
| 81 |
.csf-header-left { |
| 82 |
float: right; |
| 83 |
} |
| 84 |
|
| 85 |
.csf-header-right { |
| 86 |
float: left; |
| 87 |
} |
| 88 |
|
| 89 |
/** |
| 90 |
* 01. 03. Navigation |
| 91 |
*/ |
| 92 |
.csf-nav { |
| 93 |
float: right; |
| 94 |
} |
| 95 |
.csf-nav ul { |
| 96 |
clear: right; |
| 97 |
} |
| 98 |
.csf-nav ul li .csf-active:after { |
| 99 |
right: auto; |
| 100 |
left: 0; |
| 101 |
border-left-color: #fff; |
| 102 |
border-right-color: transparent; |
| 103 |
} |
| 104 |
.csf-nav ul li .csf-arrow:after { |
| 105 |
content: "\f053"; |
| 106 |
right: auto; |
| 107 |
left: 10px; |
| 108 |
} |
| 109 |
.csf-nav ul li.csf-tab-expanded .csf-arrow:after { |
| 110 |
transform: rotate(-90deg); |
| 111 |
} |
| 112 |
.csf-nav ul ul li a { |
| 113 |
padding-right: 25px; |
| 114 |
padding-left: 15px; |
| 115 |
} |
| 116 |
.csf-nav ul ul:before { |
| 117 |
left: auto; |
| 118 |
right: 15px; |
| 119 |
} |
| 120 |
.csf-nav .csf-tab-icon { |
| 121 |
margin-left: 5px; |
| 122 |
margin-right: 0; |
| 123 |
} |
| 124 |
|
| 125 |
.csf-nav-background { |
| 126 |
left: auto; |
| 127 |
right: 0; |
| 128 |
} |
| 129 |
|
| 130 |
/** |
| 131 |
* 01. 04. Content |
| 132 |
*/ |
| 133 |
.csf-content { |
| 134 |
margin-left: 0; |
| 135 |
margin-right: 225px; |
| 136 |
} |
| 137 |
|
| 138 |
/** |
| 139 |
* 01. 05. Section |
| 140 |
*/ |
| 141 |
.csf-sections { |
| 142 |
float: right; |
| 143 |
} |
| 144 |
|
| 145 |
/** |
| 146 |
* 01. 06. Show all options |
| 147 |
*/ |
| 148 |
.csf-show-all .csf-content { |
| 149 |
margin-right: 0; |
| 150 |
overflow: hidden; |
| 151 |
} |
| 152 |
|
| 153 |
.csf-expand-all { |
| 154 |
float: right; |
| 155 |
right: auto; |
| 156 |
left: 40px; |
| 157 |
margin-right: 0; |
| 158 |
margin-left: 4px; |
| 159 |
} |
| 160 |
|
| 161 |
/** |
| 162 |
* 01. 07. Search Input |
| 163 |
*/ |
| 164 |
.csf-search { |
| 165 |
float: right; |
| 166 |
} |
| 167 |
.csf-search input { |
| 168 |
margin: 0 0 0 5px; |
| 169 |
} |
| 170 |
|
| 171 |
/** |
| 172 |
* 01. 08. Copyright |
| 173 |
*/ |
| 174 |
.csf-copyright { |
| 175 |
float: right; |
| 176 |
} |
| 177 |
|
| 178 |
/** |
| 179 |
* 01. 09. Metabox |
| 180 |
*/ |
| 181 |
.csf-metabox { |
| 182 |
margin: -6px -12px -12px -12px; |
| 183 |
} |
| 184 |
.csf-metabox .csf-section-title { |
| 185 |
padding: 20px; |
| 186 |
} |
| 187 |
|
| 188 |
.csf-section-title .csf-section-icon { |
| 189 |
margin-left: 5px; |
| 190 |
margin-right: 0; |
| 191 |
} |
| 192 |
|
| 193 |
/** |
| 194 |
* 02. Fields |
| 195 |
*/ |
| 196 |
.csf-field .csf-title { |
| 197 |
float: right; |
| 198 |
} |
| 199 |
.csf-field .csf-fieldset { |
| 200 |
float: left; |
| 201 |
} |
| 202 |
|
| 203 |
.csf-pseudo-field { |
| 204 |
padding: 0 0 0 5px !important; |
| 205 |
} |
| 206 |
|
| 207 |
/** |
| 208 |
* 02. 01. Field: typography |
| 209 |
*/ |
| 210 |
.csf-field-typography select { |
| 211 |
margin: 0; |
| 212 |
width: 100%; |
| 213 |
} |
| 214 |
.csf-field-typography .csf--blocks-inputs .csf--blocks { |
| 215 |
flex-direction: row-reverse; |
| 216 |
} |
| 217 |
.csf-field-typography .csf--unit { |
| 218 |
left: 4px; |
| 219 |
right: auto; |
| 220 |
} |
| 221 |
|
| 222 |
/** |
| 223 |
* 02. 02. Field: checkbox, radio |
| 224 |
*/ |
| 225 |
.csf-field-checkbox ul ul li, |
| 226 |
.csf-field-radio ul ul li { |
| 227 |
margin-left: 0; |
| 228 |
margin-right: 8px; |
| 229 |
} |
| 230 |
.csf-field-checkbox ul ul li:first-child, |
| 231 |
.csf-field-radio ul ul li:first-child { |
| 232 |
margin-right: 0; |
| 233 |
} |
| 234 |
.csf-field-checkbox .csf--inline-list li, |
| 235 |
.csf-field-radio .csf--inline-list li { |
| 236 |
margin-right: 0; |
| 237 |
margin-left: 15px; |
| 238 |
} |
| 239 |
.csf-field-checkbox .csf--text, |
| 240 |
.csf-field-radio .csf--text { |
| 241 |
margin-left: 0; |
| 242 |
margin-right: 5px; |
| 243 |
} |
| 244 |
|
| 245 |
/** |
| 246 |
* 02. 03. Field: switcher |
| 247 |
*/ |
| 248 |
.csf-field-switcher .csf--switcher { |
| 249 |
float: right; |
| 250 |
} |
| 251 |
.csf-field-switcher .csf--label { |
| 252 |
float: right; |
| 253 |
margin-left: 0; |
| 254 |
margin-right: 5px; |
| 255 |
} |
| 256 |
|
| 257 |
/** |
| 258 |
* 02. 04. Field: upload |
| 259 |
*/ |
| 260 |
.csf-field-upload .csf--remove, |
| 261 |
.csf-field-upload .csf--button { |
| 262 |
margin-left: 0; |
| 263 |
margin-right: 5px; |
| 264 |
} |
| 265 |
|
| 266 |
/** |
| 267 |
* 02. 05. Field: group |
| 268 |
*/ |
| 269 |
.csf-field-group .csf-cloneable-title { |
| 270 |
padding: 15px 10px 15px 65px; |
| 271 |
} |
| 272 |
.csf-field-group .csf-cloneable-helper { |
| 273 |
right: auto; |
| 274 |
left: 10px; |
| 275 |
} |
| 276 |
|
| 277 |
/** |
| 278 |
* 02. 06. Field: repeater |
| 279 |
*/ |
| 280 |
.csf-field-repeater .csf-repeater-helper { |
| 281 |
border-left: 0; |
| 282 |
border-right: 1px solid #eee; |
| 283 |
} |
| 284 |
|
| 285 |
/** |
| 286 |
* 02. 07. Field: help |
| 287 |
*/ |
| 288 |
.csf-help { |
| 289 |
right: auto; |
| 290 |
left: 5px; |
| 291 |
} |
| 292 |
|
| 293 |
/** |
| 294 |
* 02. 08. Field: icon |
| 295 |
*/ |
| 296 |
.csf-field-icon .button { |
| 297 |
margin-right: 0; |
| 298 |
margin-left: 5px; |
| 299 |
} |
| 300 |
.csf-field-icon .csf-icon-preview i { |
| 301 |
margin-right: 0; |
| 302 |
margin-left: 5px; |
| 303 |
} |
| 304 |
|
| 305 |
/** |
| 306 |
* 02. 09. Field: gallery |
| 307 |
*/ |
| 308 |
.csf-field-gallery ul li { |
| 309 |
margin-right: 0; |
| 310 |
margin-left: 5px; |
| 311 |
} |
| 312 |
.csf-field-gallery .button { |
| 313 |
margin-right: 0; |
| 314 |
margin-left: 5px; |
| 315 |
} |
| 316 |
|
| 317 |
/** |
| 318 |
* 02. 11. Field: tabbed |
| 319 |
*/ |
| 320 |
.csf-field-tabbed .csf-tabbed-nav .csf--icon { |
| 321 |
padding-right: 0; |
| 322 |
padding-left: 5px; |
| 323 |
} |
| 324 |
.csf-field-tabbed .csf-tabbed-nav a { |
| 325 |
margin-right: 0; |
| 326 |
margin-left: 5px; |
| 327 |
} |
| 328 |
|
| 329 |
/** |
| 330 |
* 02. 12. Field: media |
| 331 |
*/ |
| 332 |
.csf-field-media .button { |
| 333 |
margin-left: 0; |
| 334 |
margin-right: 7px; |
| 335 |
} |
| 336 |
.csf-field-media .hidden + .button { |
| 337 |
margin-right: 0; |
| 338 |
} |
| 339 |
|
| 340 |
/** |
| 341 |
* 02. 13. Field: notice |
| 342 |
*/ |
| 343 |
.csf-notice { |
| 344 |
border-left: none; |
| 345 |
border-right-style: solid; |
| 346 |
border-right-width: 4px; |
| 347 |
} |
| 348 |
|
| 349 |
/** |
| 350 |
* 02. 14. Field: border, spacing, dimensions |
| 351 |
*/ |
| 352 |
.csf-field-dimensions .csf--input, |
| 353 |
.csf-field-dimensions .csf-fieldset, |
| 354 |
.csf-field-spacing .csf--input, |
| 355 |
.csf-field-spacing .csf-fieldset, |
| 356 |
.csf-field-border .csf--input, |
| 357 |
.csf-field-border .csf-fieldset { |
| 358 |
direction: ltr; |
| 359 |
} |
| 360 |
.csf-field-dimensions .csf--inputs, |
| 361 |
.csf-field-dimensions .csf--color, |
| 362 |
.csf-field-spacing .csf--inputs, |
| 363 |
.csf-field-spacing .csf--color, |
| 364 |
.csf-field-border .csf--inputs, |
| 365 |
.csf-field-border .csf--color { |
| 366 |
float: right; |
| 367 |
} |
| 368 |
.csf-field-dimensions .csf--color, |
| 369 |
.csf-field-spacing .csf--color, |
| 370 |
.csf-field-border .csf--color { |
| 371 |
margin-right: 4px; |
| 372 |
direction: rtl; |
| 373 |
} |
| 374 |
|
| 375 |
/** |
| 376 |
* 02. 15. Field: background |
| 377 |
*/ |
| 378 |
.csf-field-background .csf--block { |
| 379 |
float: right; |
| 380 |
} |
| 381 |
.csf-field-background .csf--select, |
| 382 |
.csf-field-background .csf--media { |
| 383 |
padding-right: 0; |
| 384 |
} |
| 385 |
.csf-field-background .csf--title { |
| 386 |
margin-right: 0; |
| 387 |
margin-left: 5px; |
| 388 |
} |
| 389 |
|
| 390 |
/** |
| 391 |
* 02. 16. Field: spinner |
| 392 |
*/ |
| 393 |
.csf-field-spinner .csf--spin { |
| 394 |
float: right; |
| 395 |
direction: ltr; |
| 396 |
} |
| 397 |
|
| 398 |
/** |
| 399 |
* 02. 17. Field: slider |
| 400 |
*/ |
| 401 |
.csf-field-slider .csf-slider-ui { |
| 402 |
direction: ltr; |
| 403 |
margin-right: 0; |
| 404 |
margin-left: 15px; |
| 405 |
} |
| 406 |
.csf-field-slider .csf--input { |
| 407 |
direction: ltr; |
| 408 |
} |
| 409 |
|
| 410 |
/** |
| 411 |
* 02. 18. Field: button_set |
| 412 |
*/ |
| 413 |
.csf-field-button_set .csf--button-group { |
| 414 |
float: right; |
| 415 |
} |
| 416 |
|
| 417 |
/** |
| 418 |
* 02. 19. Field: link_color |
| 419 |
*/ |
| 420 |
.csf-field-link_color .csf--left { |
| 421 |
float: right; |
| 422 |
margin-right: 0; |
| 423 |
margin-left: 10px; |
| 424 |
} |
| 425 |
|
| 426 |
/** |
| 427 |
* 02. 20. Field: color_group |
| 428 |
*/ |
| 429 |
.csf-field-color_group .csf--left { |
| 430 |
float: right; |
| 431 |
margin-right: 0; |
| 432 |
margin-left: 10px; |
| 433 |
} |
| 434 |
|
| 435 |
/** |
| 436 |
* 02. 21. Field: palette |
| 437 |
*/ |
| 438 |
.csf-field-palette .csf--palette { |
| 439 |
margin-right: 0; |
| 440 |
margin-left: 10px; |
| 441 |
} |
| 442 |
|
| 443 |
/** |
| 444 |
* 02. 22. Field: accordion |
| 445 |
*/ |
| 446 |
.csf-field-accordion .csf--icon { |
| 447 |
margin-right: 0; |
| 448 |
margin-left: 2px; |
| 449 |
} |
| 450 |
|
| 451 |
/** |
| 452 |
* 02. 23. Field: date |
| 453 |
*/ |
| 454 |
.csf-field-date .csf--to { |
| 455 |
margin-left: 0; |
| 456 |
margin-right: 7px; |
| 457 |
} |
| 458 |
|
| 459 |
/** |
| 460 |
* 02. 24. Field: map |
| 461 |
*/ |
| 462 |
.csf-field-map .csf--map-input:last-child { |
| 463 |
padding-left: 0; |
| 464 |
padding-right: 10px; |
| 465 |
} |
| 466 |
|
| 467 |
/** |
| 468 |
* 02. 25. Field: sortable |
| 469 |
*/ |
| 470 |
.csf-field-sortable .csf-sortable-helper { |
| 471 |
border-left: none; |
| 472 |
border-right: 1px solid #eee; |
| 473 |
} |
| 474 |
|
| 475 |
/** |
| 476 |
* 02. 26. Field: number |
| 477 |
*/ |
| 478 |
.csf-field-number .csf--wrap { |
| 479 |
float: right; |
| 480 |
} |
| 481 |
.csf-field-number .csf--unit { |
| 482 |
left: 4px; |
| 483 |
right: auto; |
| 484 |
} |
| 485 |
|
| 486 |
/** |
| 487 |
* 03. Taxonomy |
| 488 |
*/ |
| 489 |
.csf-taxonomy-add-fields { |
| 490 |
margin-right: 0; |
| 491 |
margin-left: 30px; |
| 492 |
} |
| 493 |
.csf-taxonomy-add-fields .csf-field > .csf-fieldset > .csf-help { |
| 494 |
left: -5px; |
| 495 |
right: auto; |
| 496 |
} |
| 497 |
|
| 498 |
.csf-taxonomy-edit-fields { |
| 499 |
margin-right: 0; |
| 500 |
margin-left: 35px; |
| 501 |
} |
| 502 |
.csf-taxonomy-edit-fields .csf-field > .csf-fieldset > .csf-help { |
| 503 |
right: auto; |
| 504 |
left: -5px; |
| 505 |
} |
| 506 |
|
| 507 |
/** |
| 508 |
* 04. Profile |
| 509 |
*/ |
| 510 |
.csf-profile-options > h2 > .fa { |
| 511 |
padding-right: 0; |
| 512 |
padding-left: 7px; |
| 513 |
} |
| 514 |
.csf-profile-options > .csf-field > .csf-fieldset > .csf-help { |
| 515 |
left: -5px; |
| 516 |
right: auto; |
| 517 |
} |
| 518 |
|
| 519 |
/** |
| 520 |
* 05. Nav Menu |
| 521 |
*/ |
| 522 |
.csf-nav-menu-options > .csf-fields { |
| 523 |
margin-left: 0; |
| 524 |
margin-right: -10px; |
| 525 |
} |
| 526 |
|
| 527 |
.csf-nav-menu-title { |
| 528 |
padding-left: 14px; |
| 529 |
padding-right: 12px; |
| 530 |
} |
| 531 |
|
| 532 |
.csf-nav-menu-icon { |
| 533 |
margin-right: 0; |
| 534 |
margin-left: 5px; |
| 535 |
} |
| 536 |
|
| 537 |
/** |
| 538 |
* 06. Modal |
| 539 |
*/ |
| 540 |
.csf-modal-content .csf-field { |
| 541 |
padding: 15px 15px 15px 30px; |
| 542 |
} |
| 543 |
|
| 544 |
.csf-modal-title { |
| 545 |
padding: 0 16px 0 36px; |
| 546 |
} |
| 547 |
|
| 548 |
.csf-modal-close { |
| 549 |
right: auto; |
| 550 |
left: 0; |
| 551 |
} |
| 552 |
|
| 553 |
/** |
| 554 |
* 07. Customizer |
| 555 |
*/ |
| 556 |
.control-section .csf-field .csf-fieldset { |
| 557 |
margin-right: 0; |
| 558 |
} |
| 559 |
|
| 560 |
/** |
| 561 |
* 08. Responsive |
| 562 |
*/ |
| 563 |
@media only screen and (max-width: 1200px) { |
| 564 |
.csf-metabox .csf-field .csf-fieldset { |
| 565 |
margin-left: 0; |
| 566 |
} |
| 567 |
} |
| 568 |
@media only screen and (max-width: 782px) { |
| 569 |
.csf .csf-fieldset, |
| 570 |
.csf .csf-content { |
| 571 |
margin-right: 0; |
| 572 |
} |
| 573 |
} |
| 574 |
/** |
| 575 |
* 09. Others |
| 576 |
*/ |
| 577 |
.csf-field .csf--transparent-slider { |
| 578 |
margin-left: 0; |
| 579 |
margin-right: 2px; |
| 580 |
} |
| 581 |
.csf-field .csf--transparent-slider .ui-slider-handle { |
| 582 |
margin: 0 -11px; |
| 583 |
} |
| 584 |
.csf-field .csf--transparent-offset { |
| 585 |
background-position: center right; |
| 586 |
} |
| 587 |
.csf-field .csf--transparent-text { |
| 588 |
right: auto; |
| 589 |
left: 10px; |
| 590 |
} |
| 591 |
|