Changeset 3273527
- Timestamp:
- 04/15/2025 12:17:27 PM (12 months ago)
- Location:
- tcd-classic-editor/trunk
- Files:
-
- 4 edited
-
assets/css/editor.css (modified) (4 diffs)
-
assets/css/utility.css (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
tcd-classic-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tcd-classic-editor/trunk/assets/css/editor.css
r3264421 r3273527 2305 2305 grid-template-columns: 1fr; 2306 2306 gap: 20px 30px; 2307 margin-bottom: var(--tcdce-base-margin-bottom-pc);2308 2307 } 2309 2308 … … 2433 2432 @media (any-hover: hover) { 2434 2433 .p-toc a:hover { 2435 text-decoration: none ;2436 color: rgba(0, 0, 0, 0.5) ;2434 text-decoration: none !important; 2435 color: rgba(0, 0, 0, 0.5) !important; 2437 2436 } 2438 2437 } … … 2455 2454 /* sidebar */ 2456 2455 .p-toc--sidebar { 2457 position: sticky;2458 top: 40px;2459 2456 padding: 30px 20px; 2460 2457 background: #f6f6f6; 2461 max-height: calc(100svh - 80px);2458 max-height: calc(100svh - 40px - var(--tcdce-toc-sticky-top, 40px)); 2462 2459 overflow: hidden auto; 2463 2460 } … … 2474 2471 top: var(--tcdce-toc-sticky-top, 40px); 2475 2472 z-index: 1; 2473 height: fit-content; 2476 2474 } 2477 2475 -
tcd-classic-editor/trunk/assets/css/utility.css
r3272441 r3273527 493 493 } 494 494 495 .p85 { 496 padding: 85px !important; 497 } 498 499 .pt85 { 500 padding-top: 85px !important; 501 } 502 503 .pr85 { 504 padding-right: 85px !important; 505 } 506 507 .pb85 { 508 padding-bottom: 85px !important; 509 } 510 511 .pl85 { 512 padding-left: 85px !important; 513 } 514 515 .p90 { 516 padding: 90px !important; 517 } 518 519 .pt90 { 520 padding-top: 90px !important; 521 } 522 523 .pr90 { 524 padding-right: 90px !important; 525 } 526 527 .pb90 { 528 padding-bottom: 90px !important; 529 } 530 531 .pl90 { 532 padding-left: 90px !important; 533 } 534 535 .p95 { 536 padding: 95px !important; 537 } 538 539 .pt95 { 540 padding-top: 95px !important; 541 } 542 543 .pr95 { 544 padding-right: 95px !important; 545 } 546 547 .pb95 { 548 padding-bottom: 95px !important; 549 } 550 551 .pl95 { 552 padding-left: 95px !important; 553 } 554 555 .p100 { 556 padding: 100px !important; 557 } 558 559 .pt100 { 560 padding-top: 100px !important; 561 } 562 563 .pr100 { 564 padding-right: 100px !important; 565 } 566 567 .pb100 { 568 padding-bottom: 100px !important; 569 } 570 571 .pl100 { 572 padding-left: 100px !important; 573 } 574 495 575 /* padding sp */ 496 576 @media (max-width: 767px) { … … 1255 1335 .ml80 { 1256 1336 margin-left: 80px !important; 1337 } 1338 1339 .m85 { 1340 margin: 85px !important; 1341 } 1342 1343 .mt85 { 1344 margin-top: 85px !important; 1345 } 1346 1347 .mr85 { 1348 margin-right: 85px !important; 1349 } 1350 1351 .mb85 { 1352 margin-bottom: 85px !important; 1353 } 1354 1355 .ml85 { 1356 margin-left: 85px !important; 1357 } 1358 1359 .m90 { 1360 margin: 90px !important; 1361 } 1362 1363 .mt90 { 1364 margin-top: 90px !important; 1365 } 1366 1367 .mr90 { 1368 margin-right: 90px !important; 1369 } 1370 1371 .mb90 { 1372 margin-bottom: 90px !important; 1373 } 1374 1375 .ml90 { 1376 margin-left: 90px !important; 1377 } 1378 1379 .m95 { 1380 margin: 95px !important; 1381 } 1382 1383 .mt95 { 1384 margin-top: 95px !important; 1385 } 1386 1387 .mr95 { 1388 margin-right: 95px !important; 1389 } 1390 1391 .mb95 { 1392 margin-bottom: 95px !important; 1393 } 1394 1395 .ml95 { 1396 margin-left: 95px !important; 1397 } 1398 1399 .m100 { 1400 margin: 100px !important; 1401 } 1402 1403 .mt100 { 1404 margin-top: 100px !important; 1405 } 1406 1407 .mr100 { 1408 margin-right: 100px !important; 1409 } 1410 1411 .mb100 { 1412 margin-bottom: 100px !important; 1413 } 1414 1415 .ml100 { 1416 margin-left: 100px !important; 1257 1417 } 1258 1418 -
tcd-classic-editor/trunk/readme.txt
r3272441 r3273527 4 4 Requires at least: 6.7 5 5 Tested up to: 6.7 6 Stable tag: 1.2. 66 Stable tag: 1.2.7 7 7 Requires PHP: 8.0 8 8 License: GPLv2 or later … … 47 47 48 48 == Changelog == 49 = 1.2.7 = 50 * Updated: Minor CSS adjustments for improved design. 51 49 52 = 1.2.6 = 50 53 * Updated: Minor CSS adjustments for improved design. -
tcd-classic-editor/trunk/tcd-classic-editor.php
r3272441 r3273527 4 4 * Plugin URI: 5 5 * Description: This is a classic editor extension plug-in for TCD users. 6 * Version: 1.2. 66 * Version: 1.2.7 7 7 * Author: TCD 8 8 * Author URI: https://tcd-theme.com/
Note: See TracChangeset
for help on using the changeset viewer.