mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 06:56:54 +08:00
Merge pull request #233 from ZmagoD/zd_SCI_591
Move tooltip to the right [fixes SCI-591]
This commit is contained in:
commit
af0e9b99b6
1 changed files with 15 additions and 15 deletions
|
@ -1368,23 +1368,23 @@ html.turbolinks-progress-bar::before {
|
|||
}
|
||||
|
||||
.modal-tooltip {
|
||||
cursor: help;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
border-bottom: 1px dotted $color-alto;
|
||||
}
|
||||
cursor: help;
|
||||
display: inline-block;
|
||||
|
||||
.modal-tooltip .modal-tooltiptext {
|
||||
visibility: hidden;
|
||||
display: block;
|
||||
width: auto;
|
||||
.modal-tooltiptext {
|
||||
background-color: $color-alto;
|
||||
color: $color-mine-shaft;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
border-radius: 6px;
|
||||
color: $color-mine-shaft;
|
||||
display: block;
|
||||
margin-left: 100px;
|
||||
padding: 5px;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
visibility: hidden;
|
||||
width: 200px;
|
||||
z-index: $infinity;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-tooltip:hover .modal-tooltiptext {
|
||||
|
|
Loading…
Reference in a new issue