Browse Source

WebUI: Never show scrollbars in rate limits dialogue

A different DPI setting might make the elements in the dialogue big
enough to make the scrollbars appear, but not big enough to make them
useful. So, never show them.
adaptive-webui-19844
Gabriele 10 years ago
parent
commit
e9d5a76d9c
  1. 2
      src/webui/www/public/downloadlimit.html
  2. 2
      src/webui/www/public/uploadlimit.html

2
src/webui/www/public/downloadlimit.html

@ -10,7 +10,7 @@ @@ -10,7 +10,7 @@
<script type="text/javascript" src="scripts/parametrics.js" charset="utf-8"></script>
</head>
<body>
<div style="width: 100%; text-align: center; margin: 0 auto;">
<div style="width: 100%; text-align: center; margin: 0 auto; overflow: hidden">
<div id="dllimitSlider" class="slider">
<div id="dllimitUpdate" class="update">_(Download limit:) <input id="dllimitUpdatevalue" size="6" placeholder="∞" style="text-align: center;"> <span id="dlLimitUnit">_(KiB/s)</span></div>
<div class="sliderWrapper">

2
src/webui/www/public/uploadlimit.html

@ -10,7 +10,7 @@ @@ -10,7 +10,7 @@
<script type="text/javascript" src="scripts/parametrics.js" charset="utf-8"></script>
</head>
<body>
<div style="width: 100%; text-align: center; margin: 0 auto;">
<div style="width: 100%; text-align: center; margin: 0 auto; overflow: hidden">
<div id="uplimitSlider" class="slider">
<div id="uplimitUpdate" class="update">_(Upload limit:) <input id="uplimitUpdatevalue" size="6" placeholder="∞" style="text-align: center;"> <span id="upLimitUnit">_(KiB/s)</span></div>
<div class="sliderWrapper">

Loading…
Cancel
Save