diff --git a/lib.js b/lib.js index c091c95..74e8e2f 100644 --- a/lib.js +++ b/lib.js @@ -11909,8 +11909,8 @@ function remoteLowerhands(UUID) { session.sendRequest(msg, UUID); try{ - getById("hands_"+UUID).style.display="none"; - session.rpcs[UUID].remoteRaisedHandElement.style.display = "none"; + getById("hands_"+UUID).classList.add("hidden"); + session.rpcs[UUID].remoteRaisedHandElement.classList.add("hidden"); } catch(e){} return true; } diff --git a/main.css b/main.css index bbe61ec..7a8cdb8 100644 --- a/main.css +++ b/main.css @@ -2067,14 +2067,20 @@ label { animation: greyout 3s; opacity: 0.3!important; } +.graphSection{ + max-width:50%; +} .graphSection>span { font-size: 10px; - display: block; - margin: 5.5px; - margin-top: 3px; - min-height: 9px; + display: block; + margin: 5px; + margin-top: 0px; + margin-right: 0px; + height: 50px; +} +.graphSection>span:last-child{ + margin-bottom: 0px; } - span[data-action-type="stats-graphs-details-container"]>span{ padding: 1px; display:block; @@ -2153,9 +2159,12 @@ span[data-action-type="stats-graphs-details-container"]>span{ } .canvasStats{ background-color: black; - width: calc(100% - 10px); + width: calc(100%); height: 50px; - margin: 5px; + margin: 0 5px 5px 0; +} +.canvasStats:last-child{ + margin: 0 5px 0 0; } .manualInput{ width: 55px; @@ -2180,8 +2189,10 @@ span[data-action-type="stats-graphs-details-container"]>span{ .lowerRaisedHand{ margin: auto; - margin-bottom:10px; - background-color:yellow; + margin-left: 5px; + margin-bottom: 10px; + background-color: yellow; + width: calc(100% - 10px); } .float { opacity: 0.8;