Update button-editor.blade.php

This commit is contained in:
Julian Prieber 2022-11-28 21:12:46 +01:00
parent b1416df540
commit c08dcea0ad

View File

@ -125,18 +125,18 @@ $(document).ready(function() {
// Many of these values cannot be changed by the UI editor, so they are set to zero here. These values might get used in the future. // Many of these values cannot be changed by the UI editor, so they are set to zero here. These values might get used in the future.
var button_css = { var button_css = {
padding_top: '0px', padding_top: 'inherit',
padding_bottom: '0px', padding_bottom: 'inherit',
color: 'black', color: 'inherit',
background_image: 'none', background_image: 'inherit',
padding_left: '0px', padding_left: 'inherit',
padding_right: '0px', padding_right: 'inherit',
border_radius: '8px', border_radius: '8px',
font_family: 'inherit', font_family: 'inherit',
font_size: '18px', font_size: 'inherit',
border_color: 'black', border_color: 'inherit',
border_style: 'none', border_style: 'inherit',
border_width: '0px' border_width: 'inherit'
}; };
</script> </script>