mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
JS/Misc
* grid tables no longer clear floating elements (have an eye out if this broke something) * add 1px to inner tooltips so it doesn't unexpectedly line break
This commit is contained in:
@@ -3859,7 +3859,7 @@ a.button-bigblue b {
|
|||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
clear: both;
|
/* clear: both; */
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
background-color: #141414;
|
background-color: #141414;
|
||||||
border: 2px solid #404040;
|
border: 2px solid #404040;
|
||||||
|
|||||||
@@ -1944,11 +1944,11 @@ $WH.Tooltip = {
|
|||||||
|
|
||||||
var
|
var
|
||||||
tooltip = $WH.Tooltip.tooltip,
|
tooltip = $WH.Tooltip.tooltip,
|
||||||
tow = $WH.Tooltip.tooltipTable.offsetWidth,
|
tow = $WH.Tooltip.tooltipTable.offsetWidth + 1,
|
||||||
toh = $WH.Tooltip.tooltipTable.offsetHeight,
|
toh = $WH.Tooltip.tooltipTable.offsetHeight + 1,
|
||||||
tt2 = $WH.Tooltip.tooltip2,
|
tt2 = $WH.Tooltip.tooltip2,
|
||||||
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth : 0,
|
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth + 1 : 0,
|
||||||
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight : 0,
|
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight + 1 : 0,
|
||||||
_;
|
_;
|
||||||
|
|
||||||
tooltip.style.width = tow + 'px';
|
tooltip.style.width = tow + 'px';
|
||||||
@@ -1981,11 +1981,11 @@ $WH.Tooltip = {
|
|||||||
bakLeft = left,
|
bakLeft = left,
|
||||||
bakTop = top,
|
bakTop = top,
|
||||||
tooltip = $WH.Tooltip.tooltip,
|
tooltip = $WH.Tooltip.tooltip,
|
||||||
tow = $WH.Tooltip.tooltipTable.offsetWidth,
|
tow = $WH.Tooltip.tooltipTable.offsetWidth + 1,
|
||||||
toh = $WH.Tooltip.tooltipTable.offsetHeight,
|
toh = $WH.Tooltip.tooltipTable.offsetHeight + 1,
|
||||||
tt2 = $WH.Tooltip.tooltip2,
|
tt2 = $WH.Tooltip.tooltip2,
|
||||||
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth : 0,
|
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth + 1 : 0,
|
||||||
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight : 0,
|
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight + 1 : 0,
|
||||||
winSize = $WH.g_getWindowSize(),
|
winSize = $WH.g_getWindowSize(),
|
||||||
scroll = $WH.g_getScroll(),
|
scroll = $WH.g_getScroll(),
|
||||||
bcw = winSize.w,
|
bcw = winSize.w,
|
||||||
|
|||||||
Reference in New Issue
Block a user