/**
* Localize current URL having a {parameter}.
*
* Awaiting a fix to the laravel-localization package
* this helper will translate any translated route
* that accept a mandatory slug, but no ?query.
*
* GitHub issue: https://github.com/mcamara/laravel-localization/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20getLocalizedURL
*
This file contains hidden or 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
| ########################### LAST UPDATE: 2018-10-03 ########################### | |
| # # | |
| # Source: https://gist.github.com/meduzen/030aa314afeb4a9806c4c59994ed7ed4 # | |
| # # | |
| # Main idea: target every browser with at least 0.3% market shares, plus # | |
| # IE 11, Safari 9 and Edge 15, no matter their shares evolution. # | |
| # # | |
| # Browserslist documentation: https://github.com/ai/browserslist#queries # | |
| # # | |
| ############################################################################### |
This file contains hidden or 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
| /* Answer to https://twitter.com/stevepiron/status/900732215415508994 | |
| * | |
| * How can I not show the :focus style when clicking an element, but keep it for keyboard navigation? | |
| */ | |
| // hover (mouse only) | |
| :hover {} | |
| // click (mouse only) | |
| :active:hover {} |
NewerOlder