Changeset 49907 for trunk/src/wp-includes/functions.php
- Timestamp:
- 12/26/2020 07:52:48 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r49845 r49907 3503 3503 body { 3504 3504 background: #fff; 3505 border: 1px solid #ccd0d4; 3505 3506 color: #444; 3506 3507 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; … … 3508 3509 padding: 1em 2em; 3509 3510 max-width: 700px; 3510 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);3511 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);3511 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .04); 3512 box-shadow: 0 1px 1px rgba(0, 0, 0, .04); 3512 3513 } 3513 3514 h1 { … … 3554 3555 } 3555 3556 .button { 3556 background: #f 7f7f7;3557 border: 1px solid # ccc;3558 color: # 555;3557 background: #f3f5f6; 3558 border: 1px solid #016087; 3559 color: #016087; 3559 3560 display: inline-block; 3560 3561 text-decoration: none; … … 3573 3574 box-sizing: border-box; 3574 3575 3575 -webkit-box-shadow: 0 1px 0 #ccc;3576 box-shadow: 0 1px 0 #ccc;3577 3576 vertical-align: top; 3578 3577 } 3579 3578 3580 3579 .button.button-large { 3581 height: 30px;3582 line-height: 2.15384615;3583 padding: 0 12px 2px;3580 line-height: 2.30769231; 3581 min-height: 32px; 3582 padding: 0 12px; 3584 3583 } 3585 3584 3586 3585 .button:hover, 3587 3586 .button:focus { 3588 background: #fafafa; 3589 border-color: #999; 3590 color: #23282d; 3587 background: #f1f1f1; 3591 3588 } 3592 3589 3593 3590 .button:focus { 3594 border-color: #5b9dd9; 3595 -webkit-box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); 3596 box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); 3597 outline: none; 3591 background: #f3f5f6; 3592 border-color: #007cba; 3593 -webkit-box-shadow: 0 0 0 1px #007cba; 3594 box-shadow: 0 0 0 1px #007cba; 3595 color: #016087; 3596 outline: 2px solid transparent; 3597 outline-offset: 0; 3598 3598 } 3599 3599 3600 3600 .button:active { 3601 background: # eee;3602 border-color: # 999;3603 -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);3604 box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);3601 background: #f3f5f6; 3602 border-color: #7e8993; 3603 -webkit-box-shadow: none; 3604 box-shadow: none; 3605 3605 } 3606 3606
Note: See TracChangeset
for help on using the changeset viewer.