Skip to content

Commit

Permalink
Fixed CSS issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltan-dulac committed Jan 27, 2025
1 parent 6a38657 commit 1969c29
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
24 changes: 24 additions & 0 deletions css/tooltip.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions less/tooltip.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@
border-radius: 0.5rem;
z-index: 2147483647;

/* Common styling for button entrypoints */
.button-common {
color: white;
background-color: blue;
justify-content: center;
align-items: center;
border: none;
cursor: pointer;
position: relative;
}

.button-hover {
/* Hover styling */
transition: background-color 0.3s ease; /* smooth transition */
background-color: darkblue; /* Example darker background on hover */
}

/*
* We put a transparent border here for Windows High Contrast Mode.
* Otherwise, the background will blend into the content underneath.
Expand Down

0 comments on commit 1969c29

Please sign in to comment.