
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
tailwindcss-tooltip-arrow-after
Advanced tools
CSS :after tooltip arrow plugin for tailwindcss framework
This plugin generates styles for CSS based triangle arrows with configurable border and background via ::after
pseudo-elements.
Add this plugin to your project:
# Install via npm
npm install --save-dev tailwindcss-tooltip-arrow-after
The plugin configuration accepts multiple objects where each key defines a class suffix for a arrow name. This options should be defined in 'theme.tooltipArrows' key in tailwind.config.js
module.exports = {
//...
theme: {
tooltipArrows: theme => ({
'danger-arrow': {
borderColor: theme('colors.red.400'),
borderWidth: 1,
backgroundColor: theme('colors.red.200'),
size: 10,
offset: 10
},
}),
}
//...
}
borderColor
: border colorborderWidth
: border width (in pixels) e.g. 1
backgroundColor
: background colorsize
: size (in pixels)offset
: offset (from left to right for top and bottom arrows and from top to bottom for left and right ones)Here is the example for adding it to your project plugins
module.exports = {
// ...
plugins: [
// ...
require('tailwindcss-tooltip-arrow-after')()
],
}
This configuration would generate classes for all four direction variants of arrows:
danger-arrow-top
danger-arrow-right
danger-arrow-bottom
danger-arrow-left
Example for danger-error-top
styles:
.danger-arrow-top {
position: relative;
}
.danger-arrow-top:before, .danger-arrow-top:after {
content: "";
position: absolute;
left: 10px;
top: -20px;
border-top: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #fc8181;
border-left: 10px solid transparent;
}
.danger-arrow-top:after {
border-bottom: 10px solid #fed7d7;
top: -19px;
}
You can use it in your html
<div class="danger-arrow-top bg-red-200 p-5 m-5 border-red-400 border border-solid rounded text-center align-content-center">
TOP ARROW
</div>
<div class="danger-arrow-right bg-red-200 p-5 m-5 border-red-400 border border-solid rounded text-center align-content-center">
RIGHT ARROW
</div>
<div class="danger-arrow-bottom bg-red-200 p-5 m-5 border-red-400 border border-solid rounded text-center align-content-center">
BOTTOM ARROW
</div>
<div class="danger-arrow-left bg-red-200 p-5 m-5 border-red-400 border border-solid rounded text-center align-content-center">
LEFT ARROW
</div>
FAQs
CSS :after tooltip arrow plugin for tailwindcss framework
The npm package tailwindcss-tooltip-arrow-after receives a total of 657 weekly downloads. As such, tailwindcss-tooltip-arrow-after popularity was classified as not popular.
We found that tailwindcss-tooltip-arrow-after demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.