Changeset 13470
- Timestamp:
- 04/08/2024 03:40:30 AM (15 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_buttons.scss
r13272 r13470 54 54 display: inline-block; 55 55 font-size: ms(-2); 56 height: ms(4);56 height: auto; 57 57 line-height: 1; 58 58 margin: 0; … … 61 61 white-space: nowrap; 62 62 -webkit-appearance: none; 63 box-shadow: none; 63 64 } 64 65 … … 130 131 131 132 .button, 132 .button:visited,133 133 .button-secondary { 134 134 background: #f7f7f7; 135 135 border-color: #ccc; 136 box-shadow: 0 1px 0 #ccc;136 box-shadow: none; 137 137 color: #555; 138 vertical-align: top;138 vertical-align: middle; 139 139 } 140 140 … … 159 159 .button-link:focus { 160 160 border-color: #5b9dd9; 161 box-shadow: 0 0 3px rgba( 0, 115, 170, 0.8 );161 box-shadow: none; 162 162 } 163 163 … … 168 168 background: var(--wp--preset--color--light-grey-1); 169 169 border-color: #999; 170 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );170 box-shadow: none; 171 171 transform: translateY(1px); 172 172 } … … 174 174 .button.active:focus { 175 175 border-color: #5b9dd9; 176 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ), 0 0 3px rgba( 0, 115, 170, 0.8 );176 box-shadow: none; 177 177 } 178 178 … … 219 219 input[type="submit"], 220 220 button[type="submit"] { 221 background: var(--wp--custom--button--color--background); 222 border: var(--wp--custom--button--border--width) var(--wp--custom--button--border--style) var(--wp--custom--button--border--color); 221 --wp--custom--button--spacing--padding--top: var(--wp--custom--button--small--spacing--padding--top); 222 --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--small--spacing--padding--bottom); 223 --wp--custom--button--spacing--padding--left: var(--wp--custom--button--small--spacing--padding--left); 224 --wp--custom--button--spacing--padding--right: var(--wp--custom--button--small--spacing--padding--right); 225 226 --wp--custom--button--typography--font-size: var(--wp--custom--button--small--typography--font-size); 227 228 // Standard button does not have a border, so the padding needs to include 229 // border size. 230 // This ensures the outline and filled button are the same height. 231 border-width: 0; 232 padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width)); 233 padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width)); 234 padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width)); 235 padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width)); 223 236 border-radius: var(--wp--custom--button--border--radius); 224 237 box-shadow: none; 238 opacity: 1; 225 239 color: var(--wp--custom--button--color--text); 226 text-decoration: none;227 text-shadow: none;228 font- size: var(--wp--custom--button--small--typography--font-size);229 line-height: 1.3;230 padding-right: var(--wp--custom--button--small--spacing--padding--right);231 padding-left: var(--wp--custom--button--small--spacing--padding--left);240 background-color: var(--wp--custom--button--color--background); 241 font-weight: var(--wp--custom--button--typography--font-weight); 242 font-family: inherit; 243 font-size: var(--wp--custom--button--typography--font-size); 244 line-height: var(--wp--custom--button--typography--line-height); 245 text-decoration: none; // Needed because link styles inside .entry-content add a text decoration 232 246 233 247 &:visited { 234 background: var(--wp--custom--button--color--background);235 border-color: var(--wp--custom--button--border--color);236 248 box-shadow: none; 237 color: var(--wp--custom--button--color--text);238 249 } 239 250 … … 243 254 &:focus { 244 255 background: var(--wp--custom--button--hover--color--background); 245 border-color: var(--wp--custom--button--hover--color--background);246 256 box-shadow: none; 247 257 color: var(--wp--custom--button--hover--color--text); … … 250 260 &.focus, 251 261 &:focus { 252 box-shadow: none; 253 border-color: var(--wp--custom--button--focus--border--color); 262 background-color: var(--wp--custom--button--color--background); 263 box-shadow: inset 0 0 0 3px var(--wp--preset--color--white); 264 outline: 1.5px solid var(--wp--custom--button--focus--border--color); 265 outline-offset: -1.5px; 254 266 } 255 267 … … 258 270 &.active:focus, 259 271 &:active { 260 background: var(--wp--custom--button--active--color--background); 261 border-color: var(--wp--custom--button--active--border--color); 272 padding-top: var(--wp--custom--button--spacing--padding--top); 273 padding-bottom: var(--wp--custom--button--spacing--padding--bottom); 274 padding-left: var(--wp--custom--button--spacing--padding--left); 275 padding-right: var(--wp--custom--button--spacing--padding--right); 276 border: var(--wp--custom--button--border--width) solid currentColor; 262 277 color: var(--wp--custom--button--active--color--text); 263 box-shadow: none; 264 vertical-align: top; 278 background-color: var(--wp--custom--button--active--color--background); 265 279 } 266 280 … … 269 283 &.disabled { 270 284 background: var(--wp--custom--button--disabled--background-color) !important; 271 border-color: var(--wp--custom--button--disabled--border-color) !important;272 285 box-shadow: none !important; 273 286 color: var(--wp--custom--button--disabled--color) !important; … … 276 289 277 290 &.button.button-hero { 278 box-shadow: 0 2px 0 #006799;291 box-shadow: none; 279 292 280 293 &.active, … … 282 295 &.active:focus, 283 296 &:active { 284 box-shadow: inset 0 3px 0 #006799;297 box-shadow: none; 285 298 } 286 299 } … … 335 348 z-index: 1; 336 349 } 337 338 /* ----------------------------------------------------------------------------339 5.0 - Responsive Button Styles340 ---------------------------------------------------------------------------- */341 342 @media screen and ( max-width: $ms-breakpoint ) {343 344 .button,345 .button.button-large,346 .button.button-small {347 font-size: 14px;348 height: auto;349 line-height: normal;350 margin-bottom: 4px;351 padding: 6px 14px;352 vertical-align: middle;353 }354 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss
r13272 r13470 3 3 /* Include margin and padding in the width calculation of input and textarea. */ 4 4 input, 5 textarea { 5 textarea, 6 select { 6 7 box-sizing: border-box; 7 } 8 9 input[type="text"], 10 input[type="password"], 11 input[type="checkbox"], 12 input[type="color"], 13 input[type="date"], 14 input[type="datetime"], 15 input[type="datetime-local"], 16 input[type="email"], 17 input[type="month"], 18 input[type="number"], 19 input[type="password"], 8 line-height: var(--wp--custom--form--line-height); 9 } 10 20 11 input[type="radio"], 21 input[type="tel"], 22 input[type="text"], 23 input[type="time"], 24 input[type="url"], 25 input[type="week"], 26 select, 27 textarea { 12 input[type="checkbox"] { 28 13 background-color: #fff; 29 14 border: 1px solid var(--wp--preset--color--light-grey-1); … … 38 23 } 39 24 40 input[type="text"]:focus,41 input[type="password"]:focus,42 input[type="color"]:focus,43 input[type="date"]:focus,44 input[type="datetime"]:focus,45 input[type="datetime-local"]:focus,46 input[type="email"]:focus,47 input[type="month"]:focus,48 input[type="number"]:focus,49 input[type="password"]:focus,50 input[type="search"]:focus,51 input[type="tel"]:focus,52 input[type="text"]:focus,53 input[type="time"]:focus,54 input[type="url"]:focus,55 input[type="week"]:focus,56 25 input[type="checkbox"]:focus, 57 input[type="radio"]:focus, 58 select:focus, 59 textarea:focus { 26 input[type="radio"]:focus { 60 27 border-color: #5b9dd9; 61 28 box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); 62 }63 64 /* rtl:ignore */65 input[type="email"],66 input[type="url"] {67 direction: ltr;68 }69 70 input[type="text"],71 input[type="email"],72 input[type="password"],73 input[type="number"] {74 padding: 6px 10px;75 }76 77 /* Vertically align the number selector with the input. */78 input[type="number"] {79 height: 40px;80 line-height: inherit;81 29 } 82 30 … … 152 100 } 153 101 102 select { 103 background: var(--wp--custom--form--color--background); 104 border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color); 105 border-radius: var(--wp--custom--form--border--radius); 106 box-shadow: var(--wp--custom--form--color--box-shadow); 107 font-family: inherit; 108 height: 40px; 109 110 &:focus { 111 border-color: var(--custom--form--color--border); 112 } 113 } 114 154 115 /* Search */ 155 116 input[type="search"]::-webkit-search-decoration { 156 117 display: none; 157 }158 159 .ie8 input[type="password"] {160 font-family: sans-serif;161 }162 163 textarea,164 input,165 select,166 button {167 font-family: inherit;168 font-size: inherit;169 font-weight: inherit;170 }171 172 textarea,173 input,174 select {175 border-radius: 0;176 font-size: 16px;177 padding: 3px 5px; /* Reset mobile webkit's default element styling */178 }179 180 textarea {181 line-height: 1.4;182 overflow: auto;183 padding: 2px 6px;184 resize: vertical;185 186 .comment-form-comment & {187 width: 100%;188 }189 118 } 190 119 … … 250 179 @media screen and ( min-width: 48em ) { 251 180 252 /* Input Elements */253 input[type="text"],254 input[type="email"],255 input[type="password"],256 input[type="number"] {257 padding: 0;258 }259 260 input[type="number"] {261 height: 28px;262 }263 264 181 input[type="checkbox"] { 265 182 padding: 0; … … 282 199 margin: 4px; 283 200 } 284 285 textarea, 286 input, 287 select { 288 font-size: 14px; 289 } 290 } 201 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss
r13461 r13470 678 678 } 679 679 680 .wporg-bbp-term-subscription > a,681 680 .reviews-submit-link > .btn, 682 681 .subscription-toggle, … … 761 760 } 762 761 762 #bbp-user-body { 763 764 div.bbp-search-form { 765 766 form > div { 767 margin-bottom: var(--wp--style--block-gap); 768 display: flex; 769 770 input[type="text"] { 771 flex: 1; 772 margin-right: calc(var(--wp--preset--spacing--10) / 2); 773 } 774 } 775 776 button, 777 input { 778 779 @media only screen and (max-width: 480px) { 780 font-size: var(--wp--preset--font-size--small); 781 padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline); 782 } 783 } 784 } 785 } 786 763 787 @media (max-width: 767px) { 788 789 #bbp-user-body { 790 791 div.bbp-search-form { 792 float: none; 793 } 794 795 h2.entry-title { 796 clear: right; 797 } 798 } 764 799 765 800 input[type="text"] { … … 800 835 .topic-resolved { 801 836 802 label { 803 vertical-align: none; 837 form { 838 width: 100%; 839 display: flex; 840 flex-wrap: wrap; 841 align-items: center; 842 gap: calc(var(--wp--preset--spacing--10) / 2); 804 843 } 805 844 806 845 select { 807 width: 120px; 808 line-height: 1; 846 width: 150px; 809 847 } 810 848 } … … 1126 1164 textarea { 1127 1165 width: 100%; 1128 padding: 0.2rem 0.5rem 0.1rem;1129 1166 margin: 4px 0 8px; 1130 1167 } … … 1181 1218 1182 1219 input[type="text"] { 1183 padding: 3px 5px;1184 1220 1185 1221 @media (max-width: 767px) { … … 1194 1230 .bbpress #bbpress-forums #bbp-user-wrapper { 1195 1231 font-size: var(--wp--preset--font-size--small); 1232 1233 .bbp-user-section { 1234 margin-top: var(--wp--style--block-gap); 1235 } 1196 1236 } 1197 1237 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style-rtl.css
r13461 r13470 1353 1353 1.0 - Button Layouts 1354 1354 ---------------------------------------------------------------------------- */ 1355 .button, #bbpress-forums .wporg-bbp-term-subscription > a, 1356 #bbpress-forums .reviews-submit-link > .btn, 1355 .button, #bbpress-forums .reviews-submit-link > .btn, 1357 1356 #bbpress-forums .subscription-toggle, 1358 1357 #bbpress-forums .favorite-toggle, 1359 1358 .button-primary, 1360 1359 #bbpress-forums fieldset.bbp-form .button.submit, 1361 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,1362 1360 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn, 1363 1361 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle, … … 1370 1368 display: inline-block; 1371 1369 font-size: 0.8rem; 1372 height: 1.5625rem;1370 height: auto; 1373 1371 line-height: 1; 1374 1372 margin: 0; … … 1377 1375 white-space: nowrap; 1378 1376 -webkit-appearance: none; 1377 box-shadow: none; 1379 1378 } 1380 1379 … … 1388 1387 } 1389 1388 1390 .button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large, 1391 #bbpress-forums .reviews-submit-link > .button-large.btn, 1389 .button.button-large, #bbpress-forums .reviews-submit-link > .button-large.btn, 1392 1390 #bbpress-forums .button-large.subscription-toggle, 1393 1391 #bbpress-forums .button-large.favorite-toggle, 1394 1392 .button-group.button-large .button, 1395 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,1396 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,1397 1393 .button-group.button-large #bbpress-forums .reviews-submit-link > .btn, 1398 1394 #bbpress-forums .button-group.button-large .reviews-submit-link > .btn, … … 1406 1402 } 1407 1403 1408 .button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small, 1409 #bbpress-forums .reviews-submit-link > .button-small.btn, 1404 .button.button-small, #bbpress-forums .reviews-submit-link > .button-small.btn, 1410 1405 #bbpress-forums .button-small.subscription-toggle, 1411 1406 #bbpress-forums .button-small.favorite-toggle, 1412 1407 .button-group.button-small .button, 1413 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,1414 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,1415 1408 .button-group.button-small #bbpress-forums .reviews-submit-link > .btn, 1416 1409 #bbpress-forums .button-group.button-small .reviews-submit-link > .btn, … … 1425 1418 } 1426 1419 1427 a.button, #bbpress-forums .wporg-bbp-term-subscription > a, 1428 #bbpress-forums .reviews-submit-link > a.btn, 1420 a.button, #bbpress-forums .reviews-submit-link > a.btn, 1429 1421 #bbpress-forums a.subscription-toggle, 1430 1422 #bbpress-forums a.favorite-toggle, 1431 1423 a.button-primary, 1432 1424 #bbpress-forums fieldset.bbp-form a.button.submit, 1433 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,1434 1425 #bbpress-forums fieldset.bbp-form .reviews-submit-link > a.submit.btn, 1435 1426 #bbpress-forums fieldset.bbp-form a.submit.subscription-toggle, … … 1439 1430 } 1440 1431 1441 a.button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large, 1442 #bbpress-forums .reviews-submit-link > a.button-large.btn, 1432 a.button.button-large, #bbpress-forums .reviews-submit-link > a.button-large.btn, 1443 1433 #bbpress-forums a.button-large.subscription-toggle, 1444 1434 #bbpress-forums a.button-large.favorite-toggle, 1445 1435 .button-group.button-large a.button, 1446 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,1447 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,1448 1436 .button-group.button-large #bbpress-forums .reviews-submit-link > a.btn, 1449 1437 #bbpress-forums .button-group.button-large .reviews-submit-link > a.btn, … … 1455 1443 } 1456 1444 1457 a.button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small, 1458 #bbpress-forums .reviews-submit-link > a.button-small.btn, 1445 a.button.button-small, #bbpress-forums .reviews-submit-link > a.button-small.btn, 1459 1446 #bbpress-forums a.button-small.subscription-toggle, 1460 1447 #bbpress-forums a.button-small.favorite-toggle, 1461 1448 .button-group.button-small a.button, 1462 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,1463 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,1464 1449 .button-group.button-small #bbpress-forums .reviews-submit-link > a.btn, 1465 1450 #bbpress-forums .button-group.button-small .reviews-submit-link > a.btn, … … 1471 1456 } 1472 1457 1473 .button:active, #bbpress-forums .wporg-bbp-term-subscription > a:active, 1474 #bbpress-forums .reviews-submit-link > .btn:active, 1458 .button:active, #bbpress-forums .reviews-submit-link > .btn:active, 1475 1459 #bbpress-forums .subscription-toggle:active, 1476 1460 #bbpress-forums .favorite-toggle:active, 1477 1461 .button:focus, 1478 #bbpress-forums .wporg-bbp-term-subscription > a:focus,1479 1462 #bbpress-forums .reviews-submit-link > .btn:focus, 1480 1463 #bbpress-forums .subscription-toggle:focus, … … 1483 1466 } 1484 1467 1485 .button.hidden, #bbpress-forums .wporg-bbp-term-subscription > a.hidden, 1486 #bbpress-forums .reviews-submit-link > .hidden.btn, 1468 .button.hidden, #bbpress-forums .reviews-submit-link > .hidden.btn, 1487 1469 #bbpress-forums .hidden.subscription-toggle, 1488 1470 #bbpress-forums .hidden.favorite-toggle { … … 1505 1487 2.0 - Default Button Style 1506 1488 ---------------------------------------------------------------------------- */ 1507 .button, #bbpress-forums .wporg-bbp-term-subscription > a, 1508 #bbpress-forums .reviews-submit-link > .btn, 1489 .button, #bbpress-forums .reviews-submit-link > .btn, 1509 1490 #bbpress-forums .subscription-toggle, 1510 1491 #bbpress-forums .favorite-toggle, 1511 .button:visited,1512 #bbpress-forums .wporg-bbp-term-subscription > a:visited,1513 #bbpress-forums .reviews-submit-link > .btn:visited,1514 #bbpress-forums .subscription-toggle:visited,1515 #bbpress-forums .favorite-toggle:visited,1516 1492 .button-secondary { 1517 1493 background: #f7f7f7; 1518 1494 border-color: #ccc; 1519 box-shadow: 0 1px 0 #ccc;1495 box-shadow: none; 1520 1496 color: #555; 1521 vertical-align: top; 1522 } 1523 1524 p .button, p #bbpress-forums .wporg-bbp-term-subscription > a, #bbpress-forums p .wporg-bbp-term-subscription > a, 1525 p #bbpress-forums .reviews-submit-link > .btn, 1526 #bbpress-forums p .reviews-submit-link > .btn, 1497 vertical-align: middle; 1498 } 1499 1500 p .button, p #bbpress-forums .reviews-submit-link > .btn, #bbpress-forums p .reviews-submit-link > .btn, 1527 1501 p #bbpress-forums .subscription-toggle, 1528 1502 #bbpress-forums p .subscription-toggle, … … 1532 1506 } 1533 1507 1534 .button.hover, #bbpress-forums .wporg-bbp-term-subscription > a.hover, 1535 #bbpress-forums .reviews-submit-link > .hover.btn, 1508 .button.hover, #bbpress-forums .reviews-submit-link > .hover.btn, 1536 1509 #bbpress-forums .hover.subscription-toggle, 1537 1510 #bbpress-forums .hover.favorite-toggle, 1538 1511 .button:hover, 1539 #bbpress-forums .wporg-bbp-term-subscription > a:hover,1540 1512 #bbpress-forums .reviews-submit-link > .btn:hover, 1541 1513 #bbpress-forums .subscription-toggle:hover, … … 1543 1515 .button-secondary:hover, 1544 1516 .button.focus, 1545 #bbpress-forums .wporg-bbp-term-subscription > a.focus,1546 1517 #bbpress-forums .reviews-submit-link > .focus.btn, 1547 1518 #bbpress-forums .focus.subscription-toggle, 1548 1519 #bbpress-forums .focus.favorite-toggle, 1549 1520 .button:focus, 1550 #bbpress-forums .wporg-bbp-term-subscription > a:focus,1551 1521 #bbpress-forums .reviews-submit-link > .btn:focus, 1552 1522 #bbpress-forums .subscription-toggle:focus, … … 1558 1528 } 1559 1529 1560 .button.focus, #bbpress-forums .wporg-bbp-term-subscription > a.focus, 1561 #bbpress-forums .reviews-submit-link > .focus.btn, 1530 .button.focus, #bbpress-forums .reviews-submit-link > .focus.btn, 1562 1531 #bbpress-forums .focus.subscription-toggle, 1563 1532 #bbpress-forums .focus.favorite-toggle, 1564 1533 .button:focus, 1565 #bbpress-forums .wporg-bbp-term-subscription > a:focus,1566 1534 #bbpress-forums .reviews-submit-link > .btn:focus, 1567 1535 #bbpress-forums .subscription-toggle:focus, … … 1570 1538 .button-link:focus { 1571 1539 border-color: #5b9dd9; 1572 box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); 1573 } 1574 1575 .button.active, #bbpress-forums .wporg-bbp-term-subscription > a.active, 1576 #bbpress-forums .reviews-submit-link > .active.btn, 1540 box-shadow: none; 1541 } 1542 1543 .button.active, #bbpress-forums .reviews-submit-link > .active.btn, 1577 1544 #bbpress-forums .active.subscription-toggle, 1578 1545 #bbpress-forums .active.favorite-toggle, 1579 1546 .button.active:hover, 1580 #bbpress-forums .wporg-bbp-term-subscription > a.active:hover,1581 1547 #bbpress-forums .reviews-submit-link > .active.btn:hover, 1582 1548 #bbpress-forums .active.subscription-toggle:hover, 1583 1549 #bbpress-forums .active.favorite-toggle:hover, 1584 1550 .button:active, 1585 #bbpress-forums .wporg-bbp-term-subscription > a:active,1586 1551 #bbpress-forums .reviews-submit-link > .btn:active, 1587 1552 #bbpress-forums .subscription-toggle:active, … … 1590 1555 background: var(--wp--preset--color--light-grey-1); 1591 1556 border-color: #999; 1592 box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);1557 box-shadow: none; 1593 1558 transform: translateY(1px); 1594 1559 } 1595 1560 1596 .button.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.active:focus, 1597 #bbpress-forums .reviews-submit-link > .active.btn:focus, 1561 .button.active:focus, #bbpress-forums .reviews-submit-link > .active.btn:focus, 1598 1562 #bbpress-forums .active.subscription-toggle:focus, 1599 1563 #bbpress-forums .active.favorite-toggle:focus { 1600 1564 border-color: #5b9dd9; 1601 box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8); 1602 } 1603 1604 .button[disabled], #bbpress-forums .wporg-bbp-term-subscription > a[disabled], 1605 #bbpress-forums .reviews-submit-link > [disabled].btn, 1565 box-shadow: none; 1566 } 1567 1568 .button[disabled], #bbpress-forums .reviews-submit-link > [disabled].btn, 1606 1569 #bbpress-forums [disabled].subscription-toggle, 1607 1570 #bbpress-forums [disabled].favorite-toggle, 1608 1571 .button:disabled, 1609 #bbpress-forums .wporg-bbp-term-subscription > a:disabled,1610 1572 #bbpress-forums .reviews-submit-link > .btn:disabled, 1611 1573 #bbpress-forums .subscription-toggle:disabled, 1612 1574 #bbpress-forums .favorite-toggle:disabled, 1613 1575 .button.disabled, 1614 #bbpress-forums .wporg-bbp-term-subscription > a.disabled,1615 1576 #bbpress-forums .reviews-submit-link > .disabled.btn, 1616 1577 #bbpress-forums .disabled.subscription-toggle, … … 1649 1610 3.0 - Primary Button Style 1650 1611 ---------------------------------------------------------------------------- */ 1651 .button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit, 1652 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn, 1612 .button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn, 1653 1613 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle, 1654 1614 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle, … … 1657 1617 input[type=submit], 1658 1618 button[type=submit] { 1659 background: var(--wp--custom--button--color--background); 1660 border: var(--wp--custom--button--border--width) var(--wp--custom--button--border--style) var(--wp--custom--button--border--color); 1619 --wp--custom--button--spacing--padding--top: var(--wp--custom--button--small--spacing--padding--top); 1620 --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--small--spacing--padding--bottom); 1621 --wp--custom--button--spacing--padding--left: var(--wp--custom--button--small--spacing--padding--left); 1622 --wp--custom--button--spacing--padding--right: var(--wp--custom--button--small--spacing--padding--right); 1623 --wp--custom--button--typography--font-size: var(--wp--custom--button--small--typography--font-size); 1624 border-width: 0; 1625 padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width)); 1626 padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width)); 1627 padding-right: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width)); 1628 padding-left: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width)); 1661 1629 border-radius: var(--wp--custom--button--border--radius); 1662 1630 box-shadow: none; 1631 opacity: 1; 1663 1632 color: var(--wp--custom--button--color--text); 1633 background-color: var(--wp--custom--button--color--background); 1634 font-weight: var(--wp--custom--button--typography--font-weight); 1635 font-family: inherit; 1636 font-size: var(--wp--custom--button--typography--font-size); 1637 line-height: var(--wp--custom--button--typography--line-height); 1664 1638 text-decoration: none; 1665 text-shadow: none; 1666 font-size: var(--wp--custom--button--small--typography--font-size); 1667 line-height: 1.3; 1668 padding-left: var(--wp--custom--button--small--spacing--padding--right); 1669 padding-right: var(--wp--custom--button--small--spacing--padding--left); 1670 } 1671 .button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:visited, 1672 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited, 1639 } 1640 .button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited, 1673 1641 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:visited, 1674 1642 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:visited, … … 1677 1645 input[type=submit]:visited, 1678 1646 button[type=submit]:visited { 1679 background: var(--wp--custom--button--color--background);1680 border-color: var(--wp--custom--button--border--color);1681 1647 box-shadow: none; 1682 color: var(--wp--custom--button--color--text); 1683 } 1684 .button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.hover.submit, 1685 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn, 1648 } 1649 .button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn, 1686 1650 #bbpress-forums fieldset.bbp-form .hover.submit.subscription-toggle, 1687 #bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:hover, 1688 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover, 1651 #bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover, 1689 1652 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:hover, 1690 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit, 1691 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1653 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1692 1654 #bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle, 1693 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus, 1694 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1655 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1695 1656 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus, 1696 1657 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus, … … 1712 1673 button[type=submit]:focus { 1713 1674 background: var(--wp--custom--button--hover--color--background); 1714 border-color: var(--wp--custom--button--hover--color--background);1715 1675 box-shadow: none; 1716 1676 color: var(--wp--custom--button--hover--color--text); 1717 1677 } 1718 .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit, 1719 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1678 .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1720 1679 #bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle, 1721 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus, 1722 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1680 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1723 1681 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus, 1724 1682 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus, … … 1731 1689 button[type=submit].focus, 1732 1690 button[type=submit]:focus { 1733 box-shadow: none; 1734 border-color: var(--wp--custom--button--focus--border--color); 1735 } 1736 .button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.active.submit, 1737 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn, 1691 background-color: var(--wp--custom--button--color--background); 1692 box-shadow: inset 0 0 0 3px var(--wp--preset--color--white); 1693 outline: 1.5px solid var(--wp--custom--button--focus--border--color); 1694 outline-offset: -1.5px; 1695 } 1696 .button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn, 1738 1697 #bbpress-forums fieldset.bbp-form .active.submit.subscription-toggle, 1739 #bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:active, 1740 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active, 1698 #bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active, 1741 1699 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:active, 1742 1700 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:active, … … 1757 1715 button[type=submit].active:focus, 1758 1716 button[type=submit]:active { 1759 background: var(--wp--custom--button--active--color--background); 1760 border-color: var(--wp--custom--button--active--border--color); 1717 padding-top: var(--wp--custom--button--spacing--padding--top); 1718 padding-bottom: var(--wp--custom--button--spacing--padding--bottom); 1719 padding-right: var(--wp--custom--button--spacing--padding--left); 1720 padding-left: var(--wp--custom--button--spacing--padding--right); 1721 border: var(--wp--custom--button--border--width) solid currentColor; 1761 1722 color: var(--wp--custom--button--active--color--text); 1762 box-shadow: none; 1763 vertical-align: top; 1764 } 1765 .button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a[disabled].submit, 1766 #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn, 1723 background-color: var(--wp--custom--button--active--color--background); 1724 } 1725 .button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn, 1767 1726 #bbpress-forums fieldset.bbp-form [disabled].submit.subscription-toggle, 1768 #bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:disabled, 1769 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled, 1727 #bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled, 1770 1728 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:disabled, 1771 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.disabled.submit, 1772 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn, 1729 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn, 1773 1730 #bbpress-forums fieldset.bbp-form .disabled.submit.subscription-toggle, 1774 1731 #bbpress-forums fieldset.bbp-form .disabled.submit.favorite-toggle, … … 1786 1743 button[type=submit].disabled { 1787 1744 background: var(--wp--custom--button--disabled--background-color) !important; 1788 border-color: var(--wp--custom--button--disabled--border-color) !important;1789 1745 box-shadow: none !important; 1790 1746 color: var(--wp--custom--button--disabled--color) !important; 1791 1747 cursor: default; 1792 1748 } 1793 .button-primary.button.button-hero, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero, 1794 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn, 1749 .button-primary.button.button-hero, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn, 1795 1750 #bbpress-forums .button-primary.button-hero.subscription-toggle, 1796 #bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit, 1797 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn, 1751 #bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn, 1798 1752 #bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle, 1799 1753 #bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle, 1800 1754 .download-button.button.button-hero, 1801 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero,1802 1755 #bbpress-forums .reviews-submit-link > .download-button.button-hero.btn, 1803 1756 #bbpress-forums .download-button.button-hero.subscription-toggle, 1804 1757 #bbpress-forums .download-button.button-hero.favorite-toggle, 1805 1758 .is-primary.button.button-hero, 1806 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero,1807 1759 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn, 1808 1760 #bbpress-forums .is-primary.button-hero.subscription-toggle, … … 1816 1768 #bbpress-forums button[type=submit].button-hero.subscription-toggle, 1817 1769 #bbpress-forums button[type=submit].button-hero.favorite-toggle { 1818 box-shadow: 0 2px 0 #006799; 1819 } 1820 .button-primary.button.button-hero.active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active, 1821 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn, 1770 box-shadow: none; 1771 } 1772 .button-primary.button.button-hero.active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn, 1822 1773 #bbpress-forums .button-primary.button-hero.active.subscription-toggle, 1823 #bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.active.submit, 1824 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn, 1774 #bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn, 1825 1775 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.subscription-toggle, 1826 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:hover, 1827 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:hover, 1828 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:hover, 1829 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:hover, .button-primary.button.button-hero.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:focus, 1830 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:focus, 1831 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:focus, 1832 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:focus, .button-primary.button.button-hero:active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero:active, 1833 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active, 1776 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, .button-primary.button.button-hero.active:focus, .button-primary.button.button-hero:active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active, 1834 1777 #bbpress-forums .button-primary.button-hero.subscription-toggle:active, 1835 #bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit:active, 1836 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active, 1778 #bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active, 1837 1779 #bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle:active, 1838 1780 #bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle:active, 1839 1781 .download-button.button.button-hero.active, 1840 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active,1841 1782 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn, 1842 1783 #bbpress-forums .download-button.button-hero.active.subscription-toggle, 1843 1784 #bbpress-forums .download-button.button-hero.active.favorite-toggle, 1844 1785 .download-button.button.button-hero.active:hover, 1845 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:hover,1846 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:hover,1847 #bbpress-forums .download-button.button-hero.active.subscription-toggle:hover,1848 #bbpress-forums .download-button.button-hero.active.favorite-toggle:hover,1849 1786 .download-button.button.button-hero.active:focus, 1850 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:focus,1851 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:focus,1852 #bbpress-forums .download-button.button-hero.active.subscription-toggle:focus,1853 #bbpress-forums .download-button.button-hero.active.favorite-toggle:focus,1854 1787 .download-button.button.button-hero:active, 1855 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero:active,1856 1788 #bbpress-forums .reviews-submit-link > .download-button.button-hero.btn:active, 1857 1789 #bbpress-forums .download-button.button-hero.subscription-toggle:active, 1858 1790 #bbpress-forums .download-button.button-hero.favorite-toggle:active, 1859 1791 .is-primary.button.button-hero.active, 1860 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active,1861 1792 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn, 1862 1793 #bbpress-forums .is-primary.button-hero.active.subscription-toggle, 1863 1794 #bbpress-forums .is-primary.button-hero.active.favorite-toggle, 1864 1795 .is-primary.button.button-hero.active:hover, 1865 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:hover,1866 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:hover,1867 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:hover,1868 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:hover,1869 1796 .is-primary.button.button-hero.active:focus, 1870 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:focus,1871 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:focus,1872 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:focus,1873 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:focus,1874 1797 .is-primary.button.button-hero:active, 1875 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero:active,1876 1798 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn:active, 1877 1799 #bbpress-forums .is-primary.button-hero.subscription-toggle:active, … … 1882 1804 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle, 1883 1805 input[type=submit].button.button-hero.active:hover, 1884 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:hover,1885 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:hover,1886 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:hover,1887 1806 input[type=submit].button.button-hero.active:focus, 1888 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:focus,1889 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:focus,1890 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:focus,1891 1807 input[type=submit].button.button-hero:active, 1892 1808 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.btn:active, … … 1898 1814 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle, 1899 1815 button[type=submit].button.button-hero.active:hover, 1900 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:hover,1901 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:hover,1902 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:hover,1903 1816 button[type=submit].button.button-hero.active:focus, 1904 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:focus,1905 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:focus,1906 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:focus,1907 1817 button[type=submit].button.button-hero:active, 1908 1818 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.btn:active, 1909 1819 #bbpress-forums button[type=submit].button-hero.subscription-toggle:active, 1910 1820 #bbpress-forums button[type=submit].button-hero.favorite-toggle:active { 1911 box-shadow: inset 0 3px 0 #006799;1821 box-shadow: none; 1912 1822 } 1913 1823 … … 1931 1841 } 1932 1842 1933 .button-group > .button, #bbpress-forums .wporg-bbp-term-subscription.button-group > a, 1934 #bbpress-forums .reviews-submit-link.button-group > .btn, 1843 .button-group > .button, #bbpress-forums .reviews-submit-link.button-group > .btn, 1935 1844 #bbpress-forums .button-group > .subscription-toggle, 1936 1845 #bbpress-forums .button-group > .favorite-toggle { … … 1941 1850 } 1942 1851 1943 .button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription.button-group > a.submit, 1944 #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn, 1852 .button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn, 1945 1853 #bbpress-forums fieldset.bbp-form .button-group > .submit.subscription-toggle, 1946 1854 #bbpress-forums fieldset.bbp-form .button-group > .submit.favorite-toggle { … … 1948 1856 } 1949 1857 1950 .button-group > .button:hover, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:hover, 1951 #bbpress-forums .reviews-submit-link.button-group > .btn:hover, 1858 .button-group > .button:hover, #bbpress-forums .reviews-submit-link.button-group > .btn:hover, 1952 1859 #bbpress-forums .button-group > .subscription-toggle:hover, 1953 1860 #bbpress-forums .button-group > .favorite-toggle:hover { … … 1955 1862 } 1956 1863 1957 .button-group > .button:first-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:first-child, 1958 #bbpress-forums .reviews-submit-link.button-group > .btn:first-child, 1864 .button-group > .button:first-child, #bbpress-forums .reviews-submit-link.button-group > .btn:first-child, 1959 1865 #bbpress-forums .button-group > .subscription-toggle:first-child, 1960 1866 #bbpress-forums .button-group > .favorite-toggle:first-child { … … 1962 1868 } 1963 1869 1964 .button-group > .button:last-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:last-child, 1965 #bbpress-forums .reviews-submit-link.button-group > .btn:last-child, 1870 .button-group > .button:last-child, #bbpress-forums .reviews-submit-link.button-group > .btn:last-child, 1966 1871 #bbpress-forums .button-group > .subscription-toggle:last-child, 1967 1872 #bbpress-forums .button-group > .favorite-toggle:last-child { … … 1969 1874 } 1970 1875 1971 .button-group > .button:focus, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:focus, 1972 #bbpress-forums .reviews-submit-link.button-group > .btn:focus, 1876 .button-group > .button:focus, #bbpress-forums .reviews-submit-link.button-group > .btn:focus, 1973 1877 #bbpress-forums .button-group > .subscription-toggle:focus, 1974 1878 #bbpress-forums .button-group > .favorite-toggle:focus { … … 1977 1881 } 1978 1882 1979 /* ----------------------------------------------------------------------------1980 5.0 - Responsive Button Styles1981 ---------------------------------------------------------------------------- */1982 @media screen and (max-width: 48em) {1983 .button, #bbpress-forums .wporg-bbp-term-subscription > a,1984 #bbpress-forums .reviews-submit-link > .btn,1985 #bbpress-forums .subscription-toggle,1986 #bbpress-forums .favorite-toggle,1987 .button.button-large,1988 #bbpress-forums .wporg-bbp-term-subscription > a.button-large,1989 #bbpress-forums .reviews-submit-link > .button-large.btn,1990 #bbpress-forums .button-large.subscription-toggle,1991 #bbpress-forums .button-large.favorite-toggle,1992 .button.button-small,1993 #bbpress-forums .wporg-bbp-term-subscription > a.button-small,1994 #bbpress-forums .reviews-submit-link > .button-small.btn,1995 #bbpress-forums .button-small.subscription-toggle,1996 #bbpress-forums .button-small.favorite-toggle {1997 font-size: 14px;1998 height: auto;1999 line-height: normal;2000 margin-bottom: 4px;2001 padding: 6px 14px;2002 vertical-align: middle;2003 }2004 }2005 1883 :root { 2006 1884 --wp-admin-theme-color: var(--wp--preset--color--blueberry-1); … … 2009 1887 /* Include margin and padding in the width calculation of input and textarea. */ 2010 1888 input, 2011 textarea { 1889 textarea, 1890 select { 2012 1891 box-sizing: border-box; 2013 } 2014 2015 input[type=text], 2016 input[type=password], 2017 input[type=checkbox], 2018 input[type=color], 2019 input[type=date], 2020 input[type=datetime], 2021 input[type=datetime-local], 2022 input[type=email], 2023 input[type=month], 2024 input[type=number], 2025 input[type=password], 1892 line-height: var(--wp--custom--form--line-height); 1893 } 1894 2026 1895 input[type=radio], 2027 input[type=tel], 2028 input[type=text], 2029 input[type=time], 2030 input[type=url], 2031 input[type=week], 2032 select, 2033 textarea { 1896 input[type=checkbox] { 2034 1897 background-color: #fff; 2035 1898 border: 1px solid var(--wp--preset--color--light-grey-1); … … 2039 1902 -webkit-appearance: none; 2040 1903 } 2041 input[type=text]:focus, 2042 input[type=password]:focus, 1904 input[type=radio]:focus, 1905 input[type=checkbox]:focus { 1906 color: var(--wp--custom--form--color--text); 1907 } 1908 2043 1909 input[type=checkbox]:focus, 2044 input[type=color]:focus, 2045 input[type=date]:focus, 2046 input[type=datetime]:focus, 2047 input[type=datetime-local]:focus, 2048 input[type=email]:focus, 2049 input[type=month]:focus, 2050 input[type=number]:focus, 2051 input[type=password]:focus, 2052 input[type=radio]:focus, 2053 input[type=tel]:focus, 2054 input[type=text]:focus, 2055 input[type=time]:focus, 2056 input[type=url]:focus, 2057 input[type=week]:focus, 2058 select:focus, 2059 textarea:focus { 2060 color: var(--wp--custom--form--color--text); 2061 } 2062 2063 input[type=text]:focus, 2064 input[type=password]:focus, 2065 input[type=color]:focus, 2066 input[type=date]:focus, 2067 input[type=datetime]:focus, 2068 input[type=datetime-local]:focus, 2069 input[type=email]:focus, 2070 input[type=month]:focus, 2071 input[type=number]:focus, 2072 input[type=password]:focus, 2073 input[type=search]:focus, 2074 input[type=tel]:focus, 2075 input[type=text]:focus, 2076 input[type=time]:focus, 2077 input[type=url]:focus, 2078 input[type=week]:focus, 2079 input[type=checkbox]:focus, 2080 input[type=radio]:focus, 2081 select:focus, 2082 textarea:focus { 1910 input[type=radio]:focus { 2083 1911 border-color: #5b9dd9; 2084 1912 box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); 2085 }2086 input[type=email],2087 input[type=url] {2088 direction: ltr;2089 }2090 2091 input[type=text],2092 input[type=email],2093 input[type=password],2094 input[type=number] {2095 padding: 6px 10px;2096 }2097 2098 /* Vertically align the number selector with the input. */2099 input[type=number] {2100 height: 40px;2101 line-height: inherit;2102 1913 } 2103 1914 … … 2171 1982 } 2172 1983 } 1984 select { 1985 background: var(--wp--custom--form--color--background); 1986 border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color); 1987 border-radius: var(--wp--custom--form--border--radius); 1988 box-shadow: var(--wp--custom--form--color--box-shadow); 1989 font-family: inherit; 1990 height: 40px; 1991 } 1992 select:focus { 1993 border-color: var(--custom--form--color--border); 1994 } 1995 2173 1996 /* Search */ 2174 1997 input[type=search]::-webkit-search-decoration { 2175 1998 display: none; 2176 }2177 2178 .ie8 input[type=password] {2179 font-family: sans-serif;2180 }2181 2182 textarea,2183 input,2184 select,2185 button {2186 font-family: inherit;2187 font-size: inherit;2188 font-weight: inherit;2189 }2190 2191 textarea,2192 input,2193 select {2194 border-radius: 0;2195 font-size: 16px;2196 padding: 3px 5px; /* Reset mobile webkit's default element styling */2197 }2198 2199 textarea {2200 line-height: 1.4;2201 overflow: auto;2202 padding: 2px 6px;2203 resize: vertical;2204 }2205 .comment-form-comment textarea {2206 width: 100%;2207 1999 } 2208 2000 … … 2265 2057 -------------------------------------------------------------- */ 2266 2058 @media screen and (min-width: 48em) { 2267 /* Input Elements */2268 input[type=text],2269 input[type=email],2270 input[type=password],2271 input[type=number] {2272 padding: 0;2273 }2274 input[type=number] {2275 height: 28px;2276 }2277 2059 input[type=checkbox] { 2278 2060 padding: 0; … … 2291 2073 height: 6px; 2292 2074 margin: 4px; 2293 }2294 textarea,2295 input,2296 select {2297 font-size: 14px;2298 2075 } 2299 2076 } … … 3575 3352 font-size: 0.8rem; 3576 3353 } 3354 #bbpress-forums #bbp-user-body div.bbp-search-form form > div { 3355 margin-bottom: var(--wp--style--block-gap); 3356 display: flex; 3357 } 3358 #bbpress-forums #bbp-user-body div.bbp-search-form form > div input[type=text] { 3359 flex: 1; 3360 margin-left: calc(var(--wp--preset--spacing--10) / 2); 3361 } 3362 @media only screen and (max-width: 480px) { 3363 #bbpress-forums #bbp-user-body div.bbp-search-form button, 3364 #bbpress-forums #bbp-user-body div.bbp-search-form input { 3365 font-size: var(--wp--preset--font-size--small); 3366 padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline); 3367 } 3368 } 3577 3369 @media (max-width: 767px) { 3370 #bbpress-forums #bbp-user-body div.bbp-search-form { 3371 float: none; 3372 } 3373 #bbpress-forums #bbp-user-body h2.entry-title { 3374 clear: left; 3375 } 3578 3376 #bbpress-forums input[type=text] { 3579 3377 width: 100%; … … 3610 3408 } 3611 3409 3612 .topic-resolved label { 3613 vertical-align: none; 3410 .topic-resolved form { 3411 width: 100%; 3412 display: flex; 3413 flex-wrap: wrap; 3414 align-items: center; 3415 gap: calc(var(--wp--preset--spacing--10) / 2); 3614 3416 } 3615 3417 .topic-resolved select { 3616 width: 120px; 3617 line-height: 1; 3418 width: 150px; 3618 3419 } 3619 3420 … … 3868 3669 .sidebar .topic-info li.topic-report textarea { 3869 3670 width: 100%; 3870 padding: 0.2rem 0.5rem 0.1rem;3871 3671 margin: 4px 0 8px; 3872 3672 } … … 3905 3705 # User Profile 3906 3706 --------------------------------------------------------------*/ 3907 .bbp-single-user input[type=text] {3908 padding: 3px 5px;3909 }3910 3707 @media (max-width: 767px) { 3911 3708 .bbp-single-user input[type=text]#ts { … … 3916 3713 .bbpress #bbpress-forums #bbp-user-wrapper { 3917 3714 font-size: var(--wp--preset--font-size--small); 3715 } 3716 .bbpress #bbpress-forums #bbp-user-wrapper .bbp-user-section { 3717 margin-top: var(--wp--style--block-gap); 3918 3718 } 3919 3719 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style.css
r13461 r13470 1353 1353 1.0 - Button Layouts 1354 1354 ---------------------------------------------------------------------------- */ 1355 .button, #bbpress-forums .wporg-bbp-term-subscription > a, 1356 #bbpress-forums .reviews-submit-link > .btn, 1355 .button, #bbpress-forums .reviews-submit-link > .btn, 1357 1356 #bbpress-forums .subscription-toggle, 1358 1357 #bbpress-forums .favorite-toggle, 1359 1358 .button-primary, 1360 1359 #bbpress-forums fieldset.bbp-form .button.submit, 1361 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,1362 1360 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn, 1363 1361 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle, … … 1370 1368 display: inline-block; 1371 1369 font-size: 0.8rem; 1372 height: 1.5625rem;1370 height: auto; 1373 1371 line-height: 1; 1374 1372 margin: 0; … … 1377 1375 white-space: nowrap; 1378 1376 -webkit-appearance: none; 1377 box-shadow: none; 1379 1378 } 1380 1379 … … 1388 1387 } 1389 1388 1390 .button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large, 1391 #bbpress-forums .reviews-submit-link > .button-large.btn, 1389 .button.button-large, #bbpress-forums .reviews-submit-link > .button-large.btn, 1392 1390 #bbpress-forums .button-large.subscription-toggle, 1393 1391 #bbpress-forums .button-large.favorite-toggle, 1394 1392 .button-group.button-large .button, 1395 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,1396 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,1397 1393 .button-group.button-large #bbpress-forums .reviews-submit-link > .btn, 1398 1394 #bbpress-forums .button-group.button-large .reviews-submit-link > .btn, … … 1406 1402 } 1407 1403 1408 .button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small, 1409 #bbpress-forums .reviews-submit-link > .button-small.btn, 1404 .button.button-small, #bbpress-forums .reviews-submit-link > .button-small.btn, 1410 1405 #bbpress-forums .button-small.subscription-toggle, 1411 1406 #bbpress-forums .button-small.favorite-toggle, 1412 1407 .button-group.button-small .button, 1413 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,1414 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,1415 1408 .button-group.button-small #bbpress-forums .reviews-submit-link > .btn, 1416 1409 #bbpress-forums .button-group.button-small .reviews-submit-link > .btn, … … 1425 1418 } 1426 1419 1427 a.button, #bbpress-forums .wporg-bbp-term-subscription > a, 1428 #bbpress-forums .reviews-submit-link > a.btn, 1420 a.button, #bbpress-forums .reviews-submit-link > a.btn, 1429 1421 #bbpress-forums a.subscription-toggle, 1430 1422 #bbpress-forums a.favorite-toggle, 1431 1423 a.button-primary, 1432 1424 #bbpress-forums fieldset.bbp-form a.button.submit, 1433 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,1434 1425 #bbpress-forums fieldset.bbp-form .reviews-submit-link > a.submit.btn, 1435 1426 #bbpress-forums fieldset.bbp-form a.submit.subscription-toggle, … … 1439 1430 } 1440 1431 1441 a.button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large, 1442 #bbpress-forums .reviews-submit-link > a.button-large.btn, 1432 a.button.button-large, #bbpress-forums .reviews-submit-link > a.button-large.btn, 1443 1433 #bbpress-forums a.button-large.subscription-toggle, 1444 1434 #bbpress-forums a.button-large.favorite-toggle, 1445 1435 .button-group.button-large a.button, 1446 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,1447 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,1448 1436 .button-group.button-large #bbpress-forums .reviews-submit-link > a.btn, 1449 1437 #bbpress-forums .button-group.button-large .reviews-submit-link > a.btn, … … 1455 1443 } 1456 1444 1457 a.button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small, 1458 #bbpress-forums .reviews-submit-link > a.button-small.btn, 1445 a.button.button-small, #bbpress-forums .reviews-submit-link > a.button-small.btn, 1459 1446 #bbpress-forums a.button-small.subscription-toggle, 1460 1447 #bbpress-forums a.button-small.favorite-toggle, 1461 1448 .button-group.button-small a.button, 1462 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,1463 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,1464 1449 .button-group.button-small #bbpress-forums .reviews-submit-link > a.btn, 1465 1450 #bbpress-forums .button-group.button-small .reviews-submit-link > a.btn, … … 1471 1456 } 1472 1457 1473 .button:active, #bbpress-forums .wporg-bbp-term-subscription > a:active, 1474 #bbpress-forums .reviews-submit-link > .btn:active, 1458 .button:active, #bbpress-forums .reviews-submit-link > .btn:active, 1475 1459 #bbpress-forums .subscription-toggle:active, 1476 1460 #bbpress-forums .favorite-toggle:active, 1477 1461 .button:focus, 1478 #bbpress-forums .wporg-bbp-term-subscription > a:focus,1479 1462 #bbpress-forums .reviews-submit-link > .btn:focus, 1480 1463 #bbpress-forums .subscription-toggle:focus, … … 1483 1466 } 1484 1467 1485 .button.hidden, #bbpress-forums .wporg-bbp-term-subscription > a.hidden, 1486 #bbpress-forums .reviews-submit-link > .hidden.btn, 1468 .button.hidden, #bbpress-forums .reviews-submit-link > .hidden.btn, 1487 1469 #bbpress-forums .hidden.subscription-toggle, 1488 1470 #bbpress-forums .hidden.favorite-toggle { … … 1505 1487 2.0 - Default Button Style 1506 1488 ---------------------------------------------------------------------------- */ 1507 .button, #bbpress-forums .wporg-bbp-term-subscription > a, 1508 #bbpress-forums .reviews-submit-link > .btn, 1489 .button, #bbpress-forums .reviews-submit-link > .btn, 1509 1490 #bbpress-forums .subscription-toggle, 1510 1491 #bbpress-forums .favorite-toggle, 1511 .button:visited,1512 #bbpress-forums .wporg-bbp-term-subscription > a:visited,1513 #bbpress-forums .reviews-submit-link > .btn:visited,1514 #bbpress-forums .subscription-toggle:visited,1515 #bbpress-forums .favorite-toggle:visited,1516 1492 .button-secondary { 1517 1493 background: #f7f7f7; 1518 1494 border-color: #ccc; 1519 box-shadow: 0 1px 0 #ccc;1495 box-shadow: none; 1520 1496 color: #555; 1521 vertical-align: top; 1522 } 1523 1524 p .button, p #bbpress-forums .wporg-bbp-term-subscription > a, #bbpress-forums p .wporg-bbp-term-subscription > a, 1525 p #bbpress-forums .reviews-submit-link > .btn, 1526 #bbpress-forums p .reviews-submit-link > .btn, 1497 vertical-align: middle; 1498 } 1499 1500 p .button, p #bbpress-forums .reviews-submit-link > .btn, #bbpress-forums p .reviews-submit-link > .btn, 1527 1501 p #bbpress-forums .subscription-toggle, 1528 1502 #bbpress-forums p .subscription-toggle, … … 1532 1506 } 1533 1507 1534 .button.hover, #bbpress-forums .wporg-bbp-term-subscription > a.hover, 1535 #bbpress-forums .reviews-submit-link > .hover.btn, 1508 .button.hover, #bbpress-forums .reviews-submit-link > .hover.btn, 1536 1509 #bbpress-forums .hover.subscription-toggle, 1537 1510 #bbpress-forums .hover.favorite-toggle, 1538 1511 .button:hover, 1539 #bbpress-forums .wporg-bbp-term-subscription > a:hover,1540 1512 #bbpress-forums .reviews-submit-link > .btn:hover, 1541 1513 #bbpress-forums .subscription-toggle:hover, … … 1543 1515 .button-secondary:hover, 1544 1516 .button.focus, 1545 #bbpress-forums .wporg-bbp-term-subscription > a.focus,1546 1517 #bbpress-forums .reviews-submit-link > .focus.btn, 1547 1518 #bbpress-forums .focus.subscription-toggle, 1548 1519 #bbpress-forums .focus.favorite-toggle, 1549 1520 .button:focus, 1550 #bbpress-forums .wporg-bbp-term-subscription > a:focus,1551 1521 #bbpress-forums .reviews-submit-link > .btn:focus, 1552 1522 #bbpress-forums .subscription-toggle:focus, … … 1558 1528 } 1559 1529 1560 .button.focus, #bbpress-forums .wporg-bbp-term-subscription > a.focus, 1561 #bbpress-forums .reviews-submit-link > .focus.btn, 1530 .button.focus, #bbpress-forums .reviews-submit-link > .focus.btn, 1562 1531 #bbpress-forums .focus.subscription-toggle, 1563 1532 #bbpress-forums .focus.favorite-toggle, 1564 1533 .button:focus, 1565 #bbpress-forums .wporg-bbp-term-subscription > a:focus,1566 1534 #bbpress-forums .reviews-submit-link > .btn:focus, 1567 1535 #bbpress-forums .subscription-toggle:focus, … … 1570 1538 .button-link:focus { 1571 1539 border-color: #5b9dd9; 1572 box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); 1573 } 1574 1575 .button.active, #bbpress-forums .wporg-bbp-term-subscription > a.active, 1576 #bbpress-forums .reviews-submit-link > .active.btn, 1540 box-shadow: none; 1541 } 1542 1543 .button.active, #bbpress-forums .reviews-submit-link > .active.btn, 1577 1544 #bbpress-forums .active.subscription-toggle, 1578 1545 #bbpress-forums .active.favorite-toggle, 1579 1546 .button.active:hover, 1580 #bbpress-forums .wporg-bbp-term-subscription > a.active:hover,1581 1547 #bbpress-forums .reviews-submit-link > .active.btn:hover, 1582 1548 #bbpress-forums .active.subscription-toggle:hover, 1583 1549 #bbpress-forums .active.favorite-toggle:hover, 1584 1550 .button:active, 1585 #bbpress-forums .wporg-bbp-term-subscription > a:active,1586 1551 #bbpress-forums .reviews-submit-link > .btn:active, 1587 1552 #bbpress-forums .subscription-toggle:active, … … 1590 1555 background: var(--wp--preset--color--light-grey-1); 1591 1556 border-color: #999; 1592 box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);1557 box-shadow: none; 1593 1558 transform: translateY(1px); 1594 1559 } 1595 1560 1596 .button.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.active:focus, 1597 #bbpress-forums .reviews-submit-link > .active.btn:focus, 1561 .button.active:focus, #bbpress-forums .reviews-submit-link > .active.btn:focus, 1598 1562 #bbpress-forums .active.subscription-toggle:focus, 1599 1563 #bbpress-forums .active.favorite-toggle:focus { 1600 1564 border-color: #5b9dd9; 1601 box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8); 1602 } 1603 1604 .button[disabled], #bbpress-forums .wporg-bbp-term-subscription > a[disabled], 1605 #bbpress-forums .reviews-submit-link > [disabled].btn, 1565 box-shadow: none; 1566 } 1567 1568 .button[disabled], #bbpress-forums .reviews-submit-link > [disabled].btn, 1606 1569 #bbpress-forums [disabled].subscription-toggle, 1607 1570 #bbpress-forums [disabled].favorite-toggle, 1608 1571 .button:disabled, 1609 #bbpress-forums .wporg-bbp-term-subscription > a:disabled,1610 1572 #bbpress-forums .reviews-submit-link > .btn:disabled, 1611 1573 #bbpress-forums .subscription-toggle:disabled, 1612 1574 #bbpress-forums .favorite-toggle:disabled, 1613 1575 .button.disabled, 1614 #bbpress-forums .wporg-bbp-term-subscription > a.disabled,1615 1576 #bbpress-forums .reviews-submit-link > .disabled.btn, 1616 1577 #bbpress-forums .disabled.subscription-toggle, … … 1649 1610 3.0 - Primary Button Style 1650 1611 ---------------------------------------------------------------------------- */ 1651 .button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit, 1652 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn, 1612 .button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn, 1653 1613 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle, 1654 1614 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle, … … 1657 1617 input[type=submit], 1658 1618 button[type=submit] { 1659 background: var(--wp--custom--button--color--background); 1660 border: var(--wp--custom--button--border--width) var(--wp--custom--button--border--style) var(--wp--custom--button--border--color); 1619 --wp--custom--button--spacing--padding--top: var(--wp--custom--button--small--spacing--padding--top); 1620 --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--small--spacing--padding--bottom); 1621 --wp--custom--button--spacing--padding--left: var(--wp--custom--button--small--spacing--padding--left); 1622 --wp--custom--button--spacing--padding--right: var(--wp--custom--button--small--spacing--padding--right); 1623 --wp--custom--button--typography--font-size: var(--wp--custom--button--small--typography--font-size); 1624 border-width: 0; 1625 padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width)); 1626 padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width)); 1627 padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width)); 1628 padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width)); 1661 1629 border-radius: var(--wp--custom--button--border--radius); 1662 1630 box-shadow: none; 1631 opacity: 1; 1663 1632 color: var(--wp--custom--button--color--text); 1633 background-color: var(--wp--custom--button--color--background); 1634 font-weight: var(--wp--custom--button--typography--font-weight); 1635 font-family: inherit; 1636 font-size: var(--wp--custom--button--typography--font-size); 1637 line-height: var(--wp--custom--button--typography--line-height); 1664 1638 text-decoration: none; 1665 text-shadow: none; 1666 font-size: var(--wp--custom--button--small--typography--font-size); 1667 line-height: 1.3; 1668 padding-right: var(--wp--custom--button--small--spacing--padding--right); 1669 padding-left: var(--wp--custom--button--small--spacing--padding--left); 1670 } 1671 .button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:visited, 1672 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited, 1639 } 1640 .button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited, 1673 1641 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:visited, 1674 1642 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:visited, … … 1677 1645 input[type=submit]:visited, 1678 1646 button[type=submit]:visited { 1679 background: var(--wp--custom--button--color--background);1680 border-color: var(--wp--custom--button--border--color);1681 1647 box-shadow: none; 1682 color: var(--wp--custom--button--color--text); 1683 } 1684 .button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.hover.submit, 1685 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn, 1648 } 1649 .button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn, 1686 1650 #bbpress-forums fieldset.bbp-form .hover.submit.subscription-toggle, 1687 #bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:hover, 1688 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover, 1651 #bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover, 1689 1652 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:hover, 1690 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit, 1691 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1653 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1692 1654 #bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle, 1693 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus, 1694 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1655 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1695 1656 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus, 1696 1657 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus, … … 1712 1673 button[type=submit]:focus { 1713 1674 background: var(--wp--custom--button--hover--color--background); 1714 border-color: var(--wp--custom--button--hover--color--background);1715 1675 box-shadow: none; 1716 1676 color: var(--wp--custom--button--hover--color--text); 1717 1677 } 1718 .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit, 1719 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1678 .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn, 1720 1679 #bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle, 1721 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus, 1722 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1680 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus, 1723 1681 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus, 1724 1682 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus, … … 1731 1689 button[type=submit].focus, 1732 1690 button[type=submit]:focus { 1733 box-shadow: none; 1734 border-color: var(--wp--custom--button--focus--border--color); 1735 } 1736 .button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.active.submit, 1737 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn, 1691 background-color: var(--wp--custom--button--color--background); 1692 box-shadow: inset 0 0 0 3px var(--wp--preset--color--white); 1693 outline: 1.5px solid var(--wp--custom--button--focus--border--color); 1694 outline-offset: -1.5px; 1695 } 1696 .button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn, 1738 1697 #bbpress-forums fieldset.bbp-form .active.submit.subscription-toggle, 1739 #bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:active, 1740 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active, 1698 #bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active, 1741 1699 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:active, 1742 1700 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:active, … … 1757 1715 button[type=submit].active:focus, 1758 1716 button[type=submit]:active { 1759 background: var(--wp--custom--button--active--color--background); 1760 border-color: var(--wp--custom--button--active--border--color); 1717 padding-top: var(--wp--custom--button--spacing--padding--top); 1718 padding-bottom: var(--wp--custom--button--spacing--padding--bottom); 1719 padding-left: var(--wp--custom--button--spacing--padding--left); 1720 padding-right: var(--wp--custom--button--spacing--padding--right); 1721 border: var(--wp--custom--button--border--width) solid currentColor; 1761 1722 color: var(--wp--custom--button--active--color--text); 1762 box-shadow: none; 1763 vertical-align: top; 1764 } 1765 .button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a[disabled].submit, 1766 #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn, 1723 background-color: var(--wp--custom--button--active--color--background); 1724 } 1725 .button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn, 1767 1726 #bbpress-forums fieldset.bbp-form [disabled].submit.subscription-toggle, 1768 #bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:disabled, 1769 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled, 1727 #bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled, 1770 1728 #bbpress-forums fieldset.bbp-form .submit.subscription-toggle:disabled, 1771 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.disabled.submit, 1772 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn, 1729 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn, 1773 1730 #bbpress-forums fieldset.bbp-form .disabled.submit.subscription-toggle, 1774 1731 #bbpress-forums fieldset.bbp-form .disabled.submit.favorite-toggle, … … 1786 1743 button[type=submit].disabled { 1787 1744 background: var(--wp--custom--button--disabled--background-color) !important; 1788 border-color: var(--wp--custom--button--disabled--border-color) !important;1789 1745 box-shadow: none !important; 1790 1746 color: var(--wp--custom--button--disabled--color) !important; 1791 1747 cursor: default; 1792 1748 } 1793 .button-primary.button.button-hero, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero, 1794 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn, 1749 .button-primary.button.button-hero, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn, 1795 1750 #bbpress-forums .button-primary.button-hero.subscription-toggle, 1796 #bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit, 1797 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn, 1751 #bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn, 1798 1752 #bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle, 1799 1753 #bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle, 1800 1754 .download-button.button.button-hero, 1801 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero,1802 1755 #bbpress-forums .reviews-submit-link > .download-button.button-hero.btn, 1803 1756 #bbpress-forums .download-button.button-hero.subscription-toggle, 1804 1757 #bbpress-forums .download-button.button-hero.favorite-toggle, 1805 1758 .is-primary.button.button-hero, 1806 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero,1807 1759 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn, 1808 1760 #bbpress-forums .is-primary.button-hero.subscription-toggle, … … 1816 1768 #bbpress-forums button[type=submit].button-hero.subscription-toggle, 1817 1769 #bbpress-forums button[type=submit].button-hero.favorite-toggle { 1818 box-shadow: 0 2px 0 #006799; 1819 } 1820 .button-primary.button.button-hero.active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active, 1821 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn, 1770 box-shadow: none; 1771 } 1772 .button-primary.button.button-hero.active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn, 1822 1773 #bbpress-forums .button-primary.button-hero.active.subscription-toggle, 1823 #bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.active.submit, 1824 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn, 1774 #bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn, 1825 1775 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.subscription-toggle, 1826 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:hover, 1827 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:hover, 1828 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:hover, 1829 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:hover, .button-primary.button.button-hero.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:focus, 1830 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:focus, 1831 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:focus, 1832 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:focus, .button-primary.button.button-hero:active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero:active, 1833 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active, 1776 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, .button-primary.button.button-hero.active:focus, .button-primary.button.button-hero:active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active, 1834 1777 #bbpress-forums .button-primary.button-hero.subscription-toggle:active, 1835 #bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit:active, 1836 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active, 1778 #bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active, 1837 1779 #bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle:active, 1838 1780 #bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle:active, 1839 1781 .download-button.button.button-hero.active, 1840 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active,1841 1782 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn, 1842 1783 #bbpress-forums .download-button.button-hero.active.subscription-toggle, 1843 1784 #bbpress-forums .download-button.button-hero.active.favorite-toggle, 1844 1785 .download-button.button.button-hero.active:hover, 1845 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:hover,1846 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:hover,1847 #bbpress-forums .download-button.button-hero.active.subscription-toggle:hover,1848 #bbpress-forums .download-button.button-hero.active.favorite-toggle:hover,1849 1786 .download-button.button.button-hero.active:focus, 1850 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:focus,1851 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:focus,1852 #bbpress-forums .download-button.button-hero.active.subscription-toggle:focus,1853 #bbpress-forums .download-button.button-hero.active.favorite-toggle:focus,1854 1787 .download-button.button.button-hero:active, 1855 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero:active,1856 1788 #bbpress-forums .reviews-submit-link > .download-button.button-hero.btn:active, 1857 1789 #bbpress-forums .download-button.button-hero.subscription-toggle:active, 1858 1790 #bbpress-forums .download-button.button-hero.favorite-toggle:active, 1859 1791 .is-primary.button.button-hero.active, 1860 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active,1861 1792 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn, 1862 1793 #bbpress-forums .is-primary.button-hero.active.subscription-toggle, 1863 1794 #bbpress-forums .is-primary.button-hero.active.favorite-toggle, 1864 1795 .is-primary.button.button-hero.active:hover, 1865 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:hover,1866 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:hover,1867 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:hover,1868 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:hover,1869 1796 .is-primary.button.button-hero.active:focus, 1870 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:focus,1871 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:focus,1872 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:focus,1873 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:focus,1874 1797 .is-primary.button.button-hero:active, 1875 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero:active,1876 1798 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn:active, 1877 1799 #bbpress-forums .is-primary.button-hero.subscription-toggle:active, … … 1882 1804 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle, 1883 1805 input[type=submit].button.button-hero.active:hover, 1884 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:hover,1885 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:hover,1886 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:hover,1887 1806 input[type=submit].button.button-hero.active:focus, 1888 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:focus,1889 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:focus,1890 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:focus,1891 1807 input[type=submit].button.button-hero:active, 1892 1808 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.btn:active, … … 1898 1814 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle, 1899 1815 button[type=submit].button.button-hero.active:hover, 1900 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:hover,1901 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:hover,1902 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:hover,1903 1816 button[type=submit].button.button-hero.active:focus, 1904 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:focus,1905 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:focus,1906 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:focus,1907 1817 button[type=submit].button.button-hero:active, 1908 1818 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.btn:active, 1909 1819 #bbpress-forums button[type=submit].button-hero.subscription-toggle:active, 1910 1820 #bbpress-forums button[type=submit].button-hero.favorite-toggle:active { 1911 box-shadow: inset 0 3px 0 #006799;1821 box-shadow: none; 1912 1822 } 1913 1823 … … 1931 1841 } 1932 1842 1933 .button-group > .button, #bbpress-forums .wporg-bbp-term-subscription.button-group > a, 1934 #bbpress-forums .reviews-submit-link.button-group > .btn, 1843 .button-group > .button, #bbpress-forums .reviews-submit-link.button-group > .btn, 1935 1844 #bbpress-forums .button-group > .subscription-toggle, 1936 1845 #bbpress-forums .button-group > .favorite-toggle { … … 1941 1850 } 1942 1851 1943 .button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription.button-group > a.submit, 1944 #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn, 1852 .button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn, 1945 1853 #bbpress-forums fieldset.bbp-form .button-group > .submit.subscription-toggle, 1946 1854 #bbpress-forums fieldset.bbp-form .button-group > .submit.favorite-toggle { … … 1948 1856 } 1949 1857 1950 .button-group > .button:hover, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:hover, 1951 #bbpress-forums .reviews-submit-link.button-group > .btn:hover, 1858 .button-group > .button:hover, #bbpress-forums .reviews-submit-link.button-group > .btn:hover, 1952 1859 #bbpress-forums .button-group > .subscription-toggle:hover, 1953 1860 #bbpress-forums .button-group > .favorite-toggle:hover { … … 1955 1862 } 1956 1863 1957 .button-group > .button:first-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:first-child, 1958 #bbpress-forums .reviews-submit-link.button-group > .btn:first-child, 1864 .button-group > .button:first-child, #bbpress-forums .reviews-submit-link.button-group > .btn:first-child, 1959 1865 #bbpress-forums .button-group > .subscription-toggle:first-child, 1960 1866 #bbpress-forums .button-group > .favorite-toggle:first-child { … … 1962 1868 } 1963 1869 1964 .button-group > .button:last-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:last-child, 1965 #bbpress-forums .reviews-submit-link.button-group > .btn:last-child, 1870 .button-group > .button:last-child, #bbpress-forums .reviews-submit-link.button-group > .btn:last-child, 1966 1871 #bbpress-forums .button-group > .subscription-toggle:last-child, 1967 1872 #bbpress-forums .button-group > .favorite-toggle:last-child { … … 1969 1874 } 1970 1875 1971 .button-group > .button:focus, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:focus, 1972 #bbpress-forums .reviews-submit-link.button-group > .btn:focus, 1876 .button-group > .button:focus, #bbpress-forums .reviews-submit-link.button-group > .btn:focus, 1973 1877 #bbpress-forums .button-group > .subscription-toggle:focus, 1974 1878 #bbpress-forums .button-group > .favorite-toggle:focus { … … 1977 1881 } 1978 1882 1979 /* ----------------------------------------------------------------------------1980 5.0 - Responsive Button Styles1981 ---------------------------------------------------------------------------- */1982 @media screen and (max-width: 48em) {1983 .button, #bbpress-forums .wporg-bbp-term-subscription > a,1984 #bbpress-forums .reviews-submit-link > .btn,1985 #bbpress-forums .subscription-toggle,1986 #bbpress-forums .favorite-toggle,1987 .button.button-large,1988 #bbpress-forums .wporg-bbp-term-subscription > a.button-large,1989 #bbpress-forums .reviews-submit-link > .button-large.btn,1990 #bbpress-forums .button-large.subscription-toggle,1991 #bbpress-forums .button-large.favorite-toggle,1992 .button.button-small,1993 #bbpress-forums .wporg-bbp-term-subscription > a.button-small,1994 #bbpress-forums .reviews-submit-link > .button-small.btn,1995 #bbpress-forums .button-small.subscription-toggle,1996 #bbpress-forums .button-small.favorite-toggle {1997 font-size: 14px;1998 height: auto;1999 line-height: normal;2000 margin-bottom: 4px;2001 padding: 6px 14px;2002 vertical-align: middle;2003 }2004 }2005 1883 :root { 2006 1884 --wp-admin-theme-color: var(--wp--preset--color--blueberry-1); … … 2009 1887 /* Include margin and padding in the width calculation of input and textarea. */ 2010 1888 input, 2011 textarea { 1889 textarea, 1890 select { 2012 1891 box-sizing: border-box; 2013 } 2014 2015 input[type=text], 2016 input[type=password], 2017 input[type=checkbox], 2018 input[type=color], 2019 input[type=date], 2020 input[type=datetime], 2021 input[type=datetime-local], 2022 input[type=email], 2023 input[type=month], 2024 input[type=number], 2025 input[type=password], 1892 line-height: var(--wp--custom--form--line-height); 1893 } 1894 2026 1895 input[type=radio], 2027 input[type=tel], 2028 input[type=text], 2029 input[type=time], 2030 input[type=url], 2031 input[type=week], 2032 select, 2033 textarea { 1896 input[type=checkbox] { 2034 1897 background-color: #fff; 2035 1898 border: 1px solid var(--wp--preset--color--light-grey-1); … … 2039 1902 -webkit-appearance: none; 2040 1903 } 2041 input[type=text]:focus, 2042 input[type=password]:focus, 1904 input[type=radio]:focus, 1905 input[type=checkbox]:focus { 1906 color: var(--wp--custom--form--color--text); 1907 } 1908 2043 1909 input[type=checkbox]:focus, 2044 input[type=color]:focus, 2045 input[type=date]:focus, 2046 input[type=datetime]:focus, 2047 input[type=datetime-local]:focus, 2048 input[type=email]:focus, 2049 input[type=month]:focus, 2050 input[type=number]:focus, 2051 input[type=password]:focus, 2052 input[type=radio]:focus, 2053 input[type=tel]:focus, 2054 input[type=text]:focus, 2055 input[type=time]:focus, 2056 input[type=url]:focus, 2057 input[type=week]:focus, 2058 select:focus, 2059 textarea:focus { 2060 color: var(--wp--custom--form--color--text); 2061 } 2062 2063 input[type=text]:focus, 2064 input[type=password]:focus, 2065 input[type=color]:focus, 2066 input[type=date]:focus, 2067 input[type=datetime]:focus, 2068 input[type=datetime-local]:focus, 2069 input[type=email]:focus, 2070 input[type=month]:focus, 2071 input[type=number]:focus, 2072 input[type=password]:focus, 2073 input[type=search]:focus, 2074 input[type=tel]:focus, 2075 input[type=text]:focus, 2076 input[type=time]:focus, 2077 input[type=url]:focus, 2078 input[type=week]:focus, 2079 input[type=checkbox]:focus, 2080 input[type=radio]:focus, 2081 select:focus, 2082 textarea:focus { 1910 input[type=radio]:focus { 2083 1911 border-color: #5b9dd9; 2084 1912 box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); 2085 }2086 2087 /* rtl:ignore */2088 input[type=email],2089 input[type=url] {2090 direction: ltr;2091 }2092 2093 input[type=text],2094 input[type=email],2095 input[type=password],2096 input[type=number] {2097 padding: 6px 10px;2098 }2099 2100 /* Vertically align the number selector with the input. */2101 input[type=number] {2102 height: 40px;2103 line-height: inherit;2104 1913 } 2105 1914 … … 2173 1982 } 2174 1983 } 1984 select { 1985 background: var(--wp--custom--form--color--background); 1986 border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color); 1987 border-radius: var(--wp--custom--form--border--radius); 1988 box-shadow: var(--wp--custom--form--color--box-shadow); 1989 font-family: inherit; 1990 height: 40px; 1991 } 1992 select:focus { 1993 border-color: var(--custom--form--color--border); 1994 } 1995 2175 1996 /* Search */ 2176 1997 input[type=search]::-webkit-search-decoration { 2177 1998 display: none; 2178 }2179 2180 .ie8 input[type=password] {2181 font-family: sans-serif;2182 }2183 2184 textarea,2185 input,2186 select,2187 button {2188 font-family: inherit;2189 font-size: inherit;2190 font-weight: inherit;2191 }2192 2193 textarea,2194 input,2195 select {2196 border-radius: 0;2197 font-size: 16px;2198 padding: 3px 5px; /* Reset mobile webkit's default element styling */2199 }2200 2201 textarea {2202 line-height: 1.4;2203 overflow: auto;2204 padding: 2px 6px;2205 resize: vertical;2206 }2207 .comment-form-comment textarea {2208 width: 100%;2209 1999 } 2210 2000 … … 2267 2057 -------------------------------------------------------------- */ 2268 2058 @media screen and (min-width: 48em) { 2269 /* Input Elements */2270 input[type=text],2271 input[type=email],2272 input[type=password],2273 input[type=number] {2274 padding: 0;2275 }2276 input[type=number] {2277 height: 28px;2278 }2279 2059 input[type=checkbox] { 2280 2060 padding: 0; … … 2293 2073 height: 6px; 2294 2074 margin: 4px; 2295 }2296 textarea,2297 input,2298 select {2299 font-size: 14px;2300 2075 } 2301 2076 } … … 3577 3352 font-size: 0.8rem; 3578 3353 } 3354 #bbpress-forums #bbp-user-body div.bbp-search-form form > div { 3355 margin-bottom: var(--wp--style--block-gap); 3356 display: flex; 3357 } 3358 #bbpress-forums #bbp-user-body div.bbp-search-form form > div input[type=text] { 3359 flex: 1; 3360 margin-right: calc(var(--wp--preset--spacing--10) / 2); 3361 } 3362 @media only screen and (max-width: 480px) { 3363 #bbpress-forums #bbp-user-body div.bbp-search-form button, 3364 #bbpress-forums #bbp-user-body div.bbp-search-form input { 3365 font-size: var(--wp--preset--font-size--small); 3366 padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline); 3367 } 3368 } 3579 3369 @media (max-width: 767px) { 3370 #bbpress-forums #bbp-user-body div.bbp-search-form { 3371 float: none; 3372 } 3373 #bbpress-forums #bbp-user-body h2.entry-title { 3374 clear: right; 3375 } 3580 3376 #bbpress-forums input[type=text] { 3581 3377 width: 100%; … … 3612 3408 } 3613 3409 3614 .topic-resolved label { 3615 vertical-align: none; 3410 .topic-resolved form { 3411 width: 100%; 3412 display: flex; 3413 flex-wrap: wrap; 3414 align-items: center; 3415 gap: calc(var(--wp--preset--spacing--10) / 2); 3616 3416 } 3617 3417 .topic-resolved select { 3618 width: 120px; 3619 line-height: 1; 3418 width: 150px; 3620 3419 } 3621 3420 … … 3870 3669 .sidebar .topic-info li.topic-report textarea { 3871 3670 width: 100%; 3872 padding: 0.2rem 0.5rem 0.1rem;3873 3671 margin: 4px 0 8px; 3874 3672 } … … 3907 3705 # User Profile 3908 3706 --------------------------------------------------------------*/ 3909 .bbp-single-user input[type=text] {3910 padding: 3px 5px;3911 }3912 3707 @media (max-width: 767px) { 3913 3708 .bbp-single-user input[type=text]#ts { … … 3918 3713 .bbpress #bbpress-forums #bbp-user-wrapper { 3919 3714 font-size: var(--wp--preset--font-size--small); 3715 } 3716 .bbpress #bbpress-forums #bbp-user-wrapper .bbp-user-section { 3717 margin-top: var(--wp--style--block-gap); 3920 3718 } 3921 3719 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style.css.map
r13461 r13470 1 {"version":3,"sourceRoot":"","sources":["file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_colors.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/_normalize.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style-original.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_headings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_copy.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_typography.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_group.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_local-nav.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_iso-editor.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_elements.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_lists.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tables.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_notices.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_banners.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_badges.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tags.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_buttons.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_navigation.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_menus.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_accessibility.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_alignments.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_mixins-master.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_clearings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_blocks-everywhere-hotfix.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_site.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_structure.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_archive.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_helphub.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_breakpoint.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_infinite-scroll.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_media.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_captions.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_galleries.scss"],"names":[],"mappings":"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;;;AAGD;CACC;CACA;CACA,aCzCW;CD0CX;CACA,aCzCuB;CD0CvB;CACA;CACA;CACA;;;AAGD;CACC,aCpDY;CDqDZ;;;AAGD;CACC;CACA;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;ALhCD;AAAA;AAAA;AOtCC;CACC;;AAKA;CACC;;;ACPF;CACC;;AAGD;CACC;;AAKA;CACC;;;ACbH;AACA;CACC;;;AT2CD;AAAA;AAAA;AC7CA;CACC;;;ASCD;CACC;;;AAGD;AAAA;AAAA;AAIC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;;AAEA;CAEC;CACA;;;AAIF;CACC;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;;;AAIF;CACC;CACA;;;AAGD;CACC;;;ACtDD;CACC;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;AAAA;CAEC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;;AAEA;CACC;CACA;CACA;;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;;ADgBF;CACC;CACA;;;AE7DD;CACC;CACA;;;AAKA;CACC;;AAKA;CACC;;AAGD;AAAA;CAEC;;AAEA;AAAA;CACC;;;AXtBJ;CACC;;;AYCD;CACC;CACA;CAEA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;;;ACxEH;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;;AbPD;CACC;;;AcCD;AAEA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CACC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;;;AAQA;AAAA;AAAA;AAAA;CACC;CACA;;;ACtDF;CACC;CACA;C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BCD;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;;AAEA;CACC;CACA,WCTgB;CDUhB;;AAEA;CALD;EAME;;;AAIF;CACC;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;;AAEA;CAGC;;AAIF;CACC;CACA;CACA;;AAEA;CALD;EAME;;;AAGD;CATD;EAUE;;;;AAMH;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;;;AAID;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;;AAKA;CAEC;;AAIF;CACC;;AAYF;AAAA;CAEC;;AAIF;CACC;CACA;;AAOD;CACC;CACA;CACA;CACA;;AAEA;CAEC;;AAGD;CAEC;EACC;;;AAKH;CACC;;;AAIF;CAEC;AAAA;AAAA;EAGC;;CAGD;AAAA;EAEC;;;AAIF;AACA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CAEC;EACC;;CAGD;EACC;EACA;EACA;EACA;;CAEA;EACC;;CAGD;EACC;EACA;;CAEA;EACC;EACA;EACA;EACA;EACA;;CAEA;EACC;;CAKH;EACC;;;AAMH;AAAA;AAAA;AAAA;AAKA;CACC;;;AAGD;CACC;;;AAGD;CAEC;EACC;;;AAIF;CAEC;AAAA;AAAA;AAAA;AAAA;AAAA;EAMC;;;AAKF;AAAA;AAAA;AAGA;CACC;;AAGA;CACC;;AAGD;CACC;;AAEA;CACC;CACA;;AAEA;CACC;CACA;CACA;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAKH;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;CACA;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CAEA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA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","file":"style.css"}1 {"version":3,"sourceRoot":"","sources":["file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_colors.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/_normalize.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style-original.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_headings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_copy.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_typography.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_group.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_local-nav.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_iso-editor.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_elements.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_lists.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tables.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_notices.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_banners.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_badges.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tags.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_buttons.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_navigation.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_menus.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_accessibility.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_alignments.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_mixins-master.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_clearings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_blocks-everywhere-hotfix.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_site.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_structure.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_archive.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_helphub.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_breakpoint.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_infinite-scroll.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_media.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_captions.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_galleries.scss"],"names":[],"mappings":"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;;;AAGD;CACC;CACA;CACA,aCzCW;CD0CX;CACA,aCzCuB;CD0CvB;CACA;CACA;CACA;;;AAGD;CACC,aCpDY;CDqDZ;;;AAGD;CACC;CACA;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;ALhCD;AAAA;AAAA;AOtCC;CACC;;AAKA;CACC;;;ACPF;CACC;;AAGD;CACC;;AAKA;CACC;;;ACbH;AACA;CACC;;;AT2CD;AAAA;AAAA;AC7CA;CACC;;;ASCD;CACC;;;AAGD;AAAA;AAAA;AAIC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;;AAEA;CAEC;CACA;;;AAIF;CACC;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;;;AAIF;CACC;CACA;;;AAGD;CACC;;;ACtDD;CACC;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;AAAA;CAEC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;;AAEA;CACC;CACA;CACA;;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;;ADgBF;CACC;CACA;;;AE7DD;CACC;CACA;;;AAKA;CACC;;AAKA;CACC;;AAGD;AAAA;CAEC;;AAEA;AAAA;CACC;;;AXtBJ;CACC;;;AYCD;CACC;CACA;CAEA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;;;ACxEH;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;;AbPD;CACC;;;AcCD;AAEA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CACC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;;;AAQA;AAAA;AAAA;AAAA;CACC;CACA;;;ACtDF;CACC;CACA;C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CACC;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;AAIF;AACA;CACC;;;ArBmCD;AAAA;AAAA;AsBjEA;CACC;CACA;CACA;;;AAGD;CACC;CACA;CACA;;;AAGD;CACC;CCLA;CACA;CACA;;;AvB4DD;AAAA;AAAA;AwBtEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;CDeC;CACA;CACA;;;ACDD;AAAA;AAAA;AAAA;AAAA;AAAA;CDMC;;;AvBqDD;AAAA;AAAA;AyBzEA;AAAA;CAEC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AzBmED;AAAA;AAAA;AChFA;CACC;;;AyBCD;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;;AAEA;CACC;CACA,WCTgB;CDUhB;;AAEA;CALD;EAME;;;AAIF;CACC;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;;AAEA;CAGC;;AAIF;CACC;CACA;CACA;;AAEA;CALD;EAME;;;AAGD;CATD;EAUE;;;;AAMH;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;;;AAID;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;;AAKA;CAEC;;AAIF;CACC;;AAYF;AAAA;CAEC;;AAIF;CACC;CACA;;AAOD;CACC;CACA;CACA;CACA;;AAEA;CAEC;;AAGD;CAEC;EACC;;;AAKH;CACC;;;AAIF;CAEC;AAAA;AAAA;EAGC;;CAGD;AAAA;EAEC;;;AAIF;AACA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CAEC;EACC;;CAGD;EACC;EACA;EACA;EACA;;CAEA;EACC;;CAGD;EACC;EACA;;CAEA;EACC;EACA;EACA;EACA;EACA;;CAEA;EACC;;CAKH;EACC;;;AAMH;AAAA;AAAA;AAAA;AAKA;CACC;;;AAGD;CACC;;;AAGD;CAEC;EACC;;;AAIF;CAEC;AAAA;AAAA;AAAA;AAAA;AAAA;EAMC;;;AAKF;AAAA;AAAA;AAGA;CACC;;AAGA;CACC;;AAGD;CACC;;AAEA;CACC;CACA;;AAEA;CACC;CACA;CACA;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAKH;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;CACA;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CAEA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAIF;CACC;;AAMA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;CACA;;AAGD;CACC;;AAKH;CACC;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CAEC;EACC;EACA;EACA;;CAGD;EACC;EACA;;;AAIF;CAEC;EACC;;;AAKH;CACC;CACA;CACA;CACA;;;AAMD;CACC;CACA;;AAGD;CACC;;;AAIF;AAAA;AAAA;AAAA;AAKA;CACC;;;AAKA;CACC;;;AAIF;AAAA;AAAA;AAAA;AAWG;CAFD;AAAA;EAGE;;;AAOF;AAAA;CACC;;AAEA;AAAA;CACC;;AAEA;CAHD;AAAA;EAIE;;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;;AAIF;AAAA;CACC;CACA;CACA;;AAGD;AAAA;CACC;CACA;CACA;;AAMA;AAAA;AAAA;AAAA;CACC;CACA;;AAIF;AAAA;CACC;;AAEA;AAAA;CACC;;AAIC;AAAA;CACC;;AAGD;AAAA;CACC;;AAMJ;AAAA;CACC;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;;AAGD;AAAA;CACC;CACA;CACA;CACA;;AAGD;AAAA;CACC;;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","file":"style.css"} -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/theme.json
r13450 r13470 32 32 "thread-starter": "var(--wp--preset--color--acid-green-2)", 33 33 "thread-reporter": "var(--wp--preset--color--lemon-1)" 34 }, 35 "form": { 36 "border": { 37 "width": "1px", 38 "color": "var(--wp--preset--color--charcoal-5)" 39 }, 40 "padding": { 41 "block": "7px", 42 "inline": "12px" 43 }, 44 "lineHeight": "var(--wp--custom--body--small--typography--line-height)" 34 45 }, 35 46 "heading": {
Note: See TracChangeset
for help on using the changeset viewer.