-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #296 from abhishek-webkul/gli-570
Improve Social Sharing module
- Loading branch information
Showing
2 changed files
with
74 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,69 @@ | ||
.socialsharing_product button { | ||
margin-bottom: 3px; | ||
/** | ||
* 2010-2021 Webkul. | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* All right is reserved, | ||
* Please go through LICENSE.txt file inside our module | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade this module to newer | ||
* versions in the future. If you wish to customize this module for your | ||
* needs please refer to CustomizationPolicy.txt file inside our module for more information. | ||
* | ||
* @author Webkul IN | ||
* @copyright 2010-2021 Webkul IN | ||
* @license LICENSE.txt | ||
*/ | ||
|
||
.socialsharing_product span { | ||
padding-right: 10px; | ||
font-style: normal; | ||
font-weight: normal; | ||
font-size: 14px; | ||
line-height: 18px; | ||
color: #333333; | ||
} | ||
|
||
.socialsharing_product .social-sharing { | ||
width: 40px; | ||
height: 40px; | ||
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2); | ||
border-radius: 50%; | ||
border: none; | ||
margin: 0 5px; | ||
} | ||
|
||
.socialsharing_product .social-sharing:focus { | ||
background-color: #FFFFFF; | ||
outline: none; | ||
} | ||
|
||
.socialsharing_product .social-sharing i { | ||
position: relative; | ||
top: 1px; | ||
font-size: 20px; | ||
color: #A7A7A7; | ||
} | ||
|
||
.socialsharing_product .social-sharing:hover, | ||
.socialsharing_product .social-sharing:hover i { | ||
background-color: #FFFFFF; | ||
} | ||
|
||
.socialsharing_product .btn-twitter:hover i { | ||
color: #00aaf0; | ||
} | ||
|
||
.socialsharing_product .btn-facebook:hover i { | ||
color: #435f9f; | ||
} | ||
|
||
.socialsharing_product .btn-google-plus:hover i { | ||
color: #e04b34; | ||
} | ||
|
||
.socialsharing_product .btn-pinterest:hover i { | ||
color: #ce1f21; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters