| @@ 686-690 (lines=5) @@ | ||
| 683 | } |
|
| 684 | ||
| 685 | foreach ($background_prop_default as $bg_prop => $default_value) { |
|
| 686 | if ($return[$bg_prop] !== null) { |
|
| 687 | $return[$bg_prop] = substr($return[$bg_prop], 0, -1) . $important; |
|
| 688 | } |
|
| 689 | else |
|
| 690 | $return[$bg_prop] = $default_value . $important; |
|
| 691 | } |
|
| 692 | return $return; |
|
| 693 | } |
|
| @@ 854-858 (lines=5) @@ | ||
| 851 | } |
|
| 852 | ||
| 853 | foreach ($font_prop_default as $font_prop => $default_value) { |
|
| 854 | if ($return[$font_prop] !== null) { |
|
| 855 | $return[$font_prop] = $return[$font_prop] . $important; |
|
| 856 | } |
|
| 857 | else |
|
| 858 | $return[$font_prop] = $default_value . $important; |
|
| 859 | } |
|
| 860 | return $return; |
|
| 861 | } |
|