Skip to content

Commit

Permalink
fix: group-hover:tooltip-open. closes: #2533
Browse files Browse the repository at this point in the history
  • Loading branch information
saadeghi committed Nov 28, 2023
1 parent 7bc6f37 commit a8742dc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 19 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/release-new-version.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
12 changes: 9 additions & 3 deletions src/utilities/styled/tooltip.css
Expand Up @@ -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;
}
Expand Down

0 comments on commit a8742dc

Please sign in to comment.