fix: `group-hover:tooltip-open`. closes: #2533

This commit is contained in:
Pouya Saadeghi 2023-11-28 12:00:26 +03:30
parent 7bc6f37cc2
commit a8742dc466
2 changed files with 13 additions and 19 deletions

View File

@ -26,8 +26,8 @@ on:
- "!src/experiments/**"
jobs:
build:
name: 🔨 Build
build-publish:
name: 🔨 Build + 🚀 Publish
if: github.repository == 'saadeghi/daisyui'
timeout-minutes: 10
runs-on: ubuntu-latest
@ -87,18 +87,6 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish-npm:
name: 🚀 Publish to NPM
if: github.repository == 'saadeghi/daisyui'
timeout-minutes: 5
runs-on: ubuntu-latest
needs: build
env:
runtime: ${{ github.event.inputs.runtime || 'bun'}}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
if: env.runtime != 'npm'
uses: actions/setup-node@v3
@ -113,13 +101,13 @@ jobs:
deploy-docs:
name: 📘 Docs
needs: publish-npm
needs: build-publish
uses: ./.github/workflows/deploy-docs.yml
secrets: inherit
run-tests:
name: 🧪 Tests
needs: publish-npm
needs: build-publish
uses: ./.github/workflows/run-tests.yml
secrets: inherit
with:

View File

@ -18,9 +18,15 @@
color: var(--tooltip-text-color);
width: max-content;
}
.tooltip.tooltip-open:before,
.tooltip.tooltip-open:after,
.tooltip:hover:before,
.tooltip.tooltip-open:before {
@apply opacity-100 delay-75;
}
.tooltip.tooltip-open:after {
@apply opacity-100 delay-75;
}
.tooltip:hover:before {
@apply opacity-100 delay-75;
}
.tooltip:hover:after {
@apply opacity-100 delay-75;
}