17 | 32 | 33 | 34 | 35 |
36 | 37 | -------------------------------------------------------------------------------- /woocommerce/global/wrapper-start.php: -------------------------------------------------------------------------------- 1 |Get started here.', 'understrap' ), array( 26 | 'a' => array( 27 | 'href' => array(), 28 | ), 29 | ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?>
30 | 31 | 32 | 33 | 34 | 37 | 38 | 39 | 42 |- `s. The `::before` pseudo-element generates an element
23 | // *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
24 | //
25 | // To trick IE into suppressing the underline, we give the pseudo-element an
26 | // underline and then immediately remove it.
27 | + .breadcrumb-item:hover::before {
28 | text-decoration: underline;
29 | }
30 | // stylelint-disable-next-line no-duplicate-selectors
31 | + .breadcrumb-item:hover::before {
32 | text-decoration: none;
33 | }
34 |
35 | &.active {
36 | color: $breadcrumb-active-color;
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/inc/security.php:
--------------------------------------------------------------------------------
1 | ERROR: Stop guessing!';
41 | }
42 | } // endif function_exists( 'show_less_login_info' ).
43 |
44 | add_filter( 'login_errors', 'show_less_login_info' );
45 |
--------------------------------------------------------------------------------
/src/sass/bootstrap4/utilities/_borders.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | //
4 | // Border
5 | //
6 |
7 | .border { border: $border-width solid $border-color !important; }
8 | .border-0 { border: 0 !important; }
9 | .border-top-0 { border-top: 0 !important; }
10 | .border-right-0 { border-right: 0 !important; }
11 | .border-bottom-0 { border-bottom: 0 !important; }
12 | .border-left-0 { border-left: 0 !important; }
13 |
14 | @each $color, $value in $theme-colors {
15 | .border-#{$color} {
16 | border-color: $value !important;
17 | }
18 | }
19 |
20 | .border-white {
21 | border-color: $white !important;
22 | }
23 |
24 | //
25 | // Border-radius
26 | //
27 |
28 | .rounded {
29 | border-radius: $border-radius !important;
30 | }
31 | .rounded-top {
32 | border-top-left-radius: $border-radius !important;
33 | border-top-right-radius: $border-radius !important;
34 | }
35 | .rounded-right {
36 | border-top-right-radius: $border-radius !important;
37 | border-bottom-right-radius: $border-radius !important;
38 | }
39 | .rounded-bottom {
40 | border-bottom-right-radius: $border-radius !important;
41 | border-bottom-left-radius: $border-radius !important;
42 | }
43 | .rounded-left {
44 | border-top-left-radius: $border-radius !important;
45 | border-bottom-left-radius: $border-radius !important;
46 | }
47 |
48 | .rounded-circle {
49 | border-radius: 50% !important;
50 | }
51 |
52 | .rounded-0 {
53 | border-radius: 0 !important;
54 | }
55 |
--------------------------------------------------------------------------------
/src/sass/bootstrap4/utilities/_display.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | //
4 | // Utilities for common `display` values
5 | //
6 |
7 | @each $breakpoint in map-keys($grid-breakpoints) {
8 | @include media-breakpoint-up($breakpoint) {
9 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
10 |
11 | .d#{$infix}-none { display: none !important; }
12 | .d#{$infix}-inline { display: inline !important; }
13 | .d#{$infix}-inline-block { display: inline-block !important; }
14 | .d#{$infix}-block { display: block !important; }
15 | .d#{$infix}-table { display: table !important; }
16 | .d#{$infix}-table-row { display: table-row !important; }
17 | .d#{$infix}-table-cell { display: table-cell !important; }
18 | .d#{$infix}-flex { display: flex !important; }
19 | .d#{$infix}-inline-flex { display: inline-flex !important; }
20 | }
21 | }
22 |
23 |
24 | //
25 | // Utilities for toggling `display` in print
26 | //
27 |
28 | .d-print-block {
29 | display: none !important;
30 |
31 | @media print {
32 | display: block !important;
33 | }
34 | }
35 |
36 | .d-print-inline {
37 | display: none !important;
38 |
39 | @media print {
40 | display: inline !important;
41 | }
42 | }
43 |
44 | .d-print-inline-block {
45 | display: none !important;
46 |
47 | @media print {
48 | display: inline-block !important;
49 | }
50 | }
51 |
52 | .d-print-none {
53 | @media print {
54 | display: none !important;
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php:
--------------------------------------------------------------------------------
1 |
16 |
39 |
--------------------------------------------------------------------------------
/single.php:
--------------------------------------------------------------------------------
1 |
12 |
13 |