* ditch jQueryUI vanilla styles in favor of own ones.
* disable tracking for tooltips and make them behave more like regular ones (this also stops my fan from spinning up when using the intel map) Improvements welcome. Tooltips are currently placed at the bottom of the element instead of next to cursor. It seems it’s either tracking or placing it not anywhere where one would expect a tooltip. I immediately regret having chosen jQueryUI. It’s not very flexible and has awkward defaults.
This commit is contained in:
18
style.css
18
style.css
@ -450,10 +450,6 @@ h3 {
|
||||
border: 1px solid #666;
|
||||
}
|
||||
|
||||
.mods span[title=""] {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.res .mods span, .res .meter {
|
||||
border: 1px solid #0076b6;
|
||||
}
|
||||
@ -616,3 +612,17 @@ aside:nth-child(odd) span {
|
||||
#largepreview img {
|
||||
border: 2px solid #f8ff5e;
|
||||
}
|
||||
|
||||
/* tooltips */
|
||||
.ui-tooltip {
|
||||
background: #1E425D;
|
||||
border: 1px solid #20A8B1;
|
||||
box-shadow:0 0 7px #000;
|
||||
color: #EEEEEE;
|
||||
font-family: Verdana, sans-serif;
|
||||
font-size:13px;
|
||||
max-width: 300px;
|
||||
padding: 8px;
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
Reference in New Issue
Block a user