Commit d503cd98 by lmf

Merge branch 'master' of http://47.99.244.21:9999/root/joshine

parents 4fb81029 4e5759d2
<?php
/**
* Developer: Hemant Kumar Singh Magento Developer
* Website: http://www.wishusucess.com/
*/
namespace JTool\CustomClass\Model\Plugin;
class AttributeMergerPlugin
{
public function afterMerge(\Magento\Checkout\Block\Checkout\AttributeMerger $subject, $result)
{
if (array_key_exists('telephone', $result)) {
$result['telephone']['additionalClasses'] = 'teliphone_number';
}
return $result;
}
}
\ No newline at end of file
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../vendor/magento/framework/ObjectManager/etc/config.xsd">
<type name="\Magento\Checkout\Block\Checkout\AttributeMerger">
<plugin name="customAttributeMerger" type="\JTool\CustomClass\Model\Plugin\AttributeMergerPlugin"/>
</type>
</config>
\ No newline at end of file
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="JTool_CustomClass" setup_version="1.0.0" active="true"></module>
</config>
\ No newline at end of file
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'JTool_CustomClass',
__DIR__
);
\ No newline at end of file
......@@ -193,6 +193,7 @@
padding: 20px;
}
}
.teliphone_number{width:100% !important;;}
@media(min-width: 768px){
.page-title-wrapper~.columns{
margin-top:0;
......
......@@ -954,6 +954,9 @@ footer{
opacity: 0;
z-index: -1;
}
.checkout-container{
width: 81%;
}
}
@media(max-width: 639.98px){
.page-header .actions.wishlist-dropdown{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment