simplify theming

This commit is contained in:
2020-03-10 17:06:52 +01:00
parent b4524ded62
commit 75486d62d8
14 changed files with 202 additions and 274 deletions

View File

@@ -76,12 +76,6 @@
</p>
<h3>What cookies does pixeldrain use?</h3>
<p>
When uploading a file pixeldrain will install a cookie named
'pduploads'. This cookie keeps a dot-separated list of all files
you have uploaded anonymously in this browser. This cookie is
<b>only</b> used for viewing your upload history.
</p>
<p>
When logging in to a pixeldrain account a cookie named
'pd_auth_key' will be installed. This cookie keeps your login
@@ -89,20 +83,26 @@
your account.
</p>
<p>
When you use the style selector at the bottom of this page a
cookie called 'style' will be set. This cookie controls the
appearance of the website for you.
When you use the style selector on the <a
href="/appearance">Appearance</a> page a cookie called 'style'
will be set. This cookie controls the appearance of the website
for you.
</p>
<p>
When uploading a file pixeldrain will save a list of file links
on your browser's local storage. This data is
<b>only</b> used for viewing your upload history on the <a
href="/history">history page</a>.
</p>
<h2 id="legality">Legality</h2>
<h3 id="legality">Legality</h3>
<p>
I cannot be held liable for any illegal and / or copyrighted
material that's uploaded by the users of this application.
Files uploaded to this website are subjected to local laws. If
laws are being broken, and I've been notified of the fact I'll
have to delete the offending content (as the server does not
support geo filtering yet). If you find any files on this domain
that break the law, please contact me at
material that's uploaded by the users of this application. Files
uploaded to this website are subjected to local laws. If laws
are being broken, and I've been notified of the fact I'll have
to delete the offending content. If you find any files on this
domain that break the law, please contact me at
<a href="mailto:abuse@pixeldrain.com">abuse@pixeldrain.com</a>,
and I'll take care of it.
<br/>Please share responsibly.

View File

@@ -13,7 +13,7 @@
<div id="page_body" class="page_body">
<div id="file_manager" class="file_manager">
<div id="nav_bar" class="nav_bar highlight_light">
<div id="nav_bar" class="nav_bar highlight_1">
<button id="btn_menu" onclick="toggleMenu()"></button>
<!-- <div class="spacer"></div>
<button id="btn_back" >⇐</button id="btn_forward">
@@ -32,7 +32,7 @@
<div id="directory_area" class="directory_area">
<div id="directory_sorters" class="directory_sorters"></div>
</div>
<div id="directory_footer" class="status_bar highlight_light"></div>
<div id="directory_footer" class="status_bar highlight_1"></div>
</div>
</div>

View File

@@ -21,7 +21,7 @@
<button onclick="days = 182; interval = 1440; setData();">Half-year</button>
<button onclick="days = 365; interval = 1440; setData();">Year</button>
</div>
<div id="chart_container" class="chart-container" style="position: relative; width: 100%; height: auto;">
<div id="chart_container" class="chart-container" style="position: relative; width: 100%; height: 500px;">
<canvas id="bandwidth_chart"></canvas>
</div>
@@ -34,7 +34,7 @@
Chart.defaults.global.defaultFontColor = "#b3b3b3";
Chart.defaults.global.defaultFontSize = 15;
Chart.defaults.global.defaultFontFamily = "Ubuntu";
Chart.defaults.global.aspectRatio = 2.5;
Chart.defaults.global.maintainAspectRatio = false;
Chart.defaults.global.elements.point.radius = 0;
Chart.defaults.global.tooltips.mode = "index";
Chart.defaults.global.tooltips.axis = "x";
@@ -50,18 +50,18 @@
datasets: [
{
label: "Bandwidth",
backgroundColor: "rgba(64, 255, 64, .05)",
borderColor: "rgba(128, 255, 128, 1)",
borderWidth: 1.5,
lineTension: 0.1,
backgroundColor: "rgba(64, 255, 64, .01)",
borderColor: "rgba(96, 255, 96, 1)",
borderWidth: 2,
lineTension: 0.2,
fill: true,
yAxisID: "y_bandwidth"
}, {
label: "Views",
backgroundColor: "rgba(64, 64, 255, .1)",
borderColor: "rgba(128, 128, 255, 1)",
borderWidth: 1.5,
lineTension: 0.1,
backgroundColor: "rgba(64, 64, 255, .01)",
borderColor: "rgba(64, 64, 255, 1)",
borderWidth: 2,
lineTension: 0.2,
fill: true,
yAxisID: "y_views"
}
@@ -85,7 +85,7 @@
}
},
gridLines: {
color: "rgba(100, 255, 100, .1)"
color: "rgba(100, 255, 100, .05)"
}
}, {
type: "linear",
@@ -97,7 +97,7 @@
labelString: "Views"
},
gridLines: {
color: "rgba(128, 128, 255, .2)"
color: "rgba(128, 128, 255, .05)"
}
}
],

View File

@@ -111,7 +111,7 @@
<div class="info_about">
<h3>Downloads and views</h3>
<div class="chart-container" style="position: relative; width: 100%; height: auto;">
<div class="chart-container" style="position: relative; width: 100%; height: 400px;">
<canvas id="bandwidth_chart"></canvas>
</div>
<p style="text-align: center">

View File

@@ -20,16 +20,14 @@
</div>
<script>
function toggleMenu() {
var nav = document.getElementById("page_navigation");
var nav = document.getElementById("page_navigation");
var body = document.getElementById("page_body");
if (nav.offsetLeft === 0) {
// Menu is visible
// Menu is visible, hide it
nav.style.left = -nav.offsetWidth + "px";
body.style.left = "0";
} else {
// Menu is hidden
// Menu is hidden, show it
nav.style.left = "0";
body.style.left = nav.offsetWidth + "px";
}