summaryrefslogtreecommitdiff
path: root/share/static
diff options
context:
space:
mode:
Diffstat (limited to 'share/static')
-rw-r--r--share/static/css/style.css48
-rw-r--r--share/static/img/warning.pngbin804 -> 0 bytes
-rw-r--r--share/static/js/receive-noscript.js2
-rw-r--r--share/static/js/receive.js2
4 files changed, 35 insertions, 17 deletions
diff --git a/share/static/css/style.css b/share/static/css/style.css
index e445e5de..af41b155 100644
--- a/share/static/css/style.css
+++ b/share/static/css/style.css
@@ -56,6 +56,10 @@ header .right ul li {
cursor: pointer;
}
+a.button:visited {
+ color: #ffffff;
+}
+
.close-button {
color: #ffffff;
background-color: #c90c0c;
@@ -70,6 +74,30 @@ header .right ul li {
bottom: 10px;
}
+ul.breadcrumbs {
+ display: block;
+ list-style: none;
+ margin: 10px 0;
+ padding: 0;
+}
+
+ul.breadcrumbs li {
+ display: inline-block;
+ list-style: none;
+ margin: 0;
+ padding: 5px;
+ color: #999999;
+}
+
+ul.breadcrumbs li span.sep {
+ padding-left: 5px;
+}
+
+ul.breadcrumbs li a:link, ul.breadcrumbs li a:visited {
+ color: #666666;
+ border-bottom: 1px solid #666666;
+}
+
table.file-list {
width: 100%;
margin: 0 auto;
@@ -223,19 +251,11 @@ li.info {
margin: 0 0 20px 0;
}
-div#noscript {
- text-align: center;
- color: #d709df;
- padding: 1em;
- line-height: 150%;
- margin: 0 auto;
-}
-
-div#noscript a, div#noscript a:visited {
- color: #d709df;
+a {
+ text-decoration: none;
+ color: #1c1ca0;
}
-.disable-noscript-xss-wrapper {
- max-width: 900px;
- margin: 0 auto;
-}
+a:visited {
+ color: #601ca0;
+} \ No newline at end of file
diff --git a/share/static/img/warning.png b/share/static/img/warning.png
deleted file mode 100644
index 9be8cbaf..00000000
--- a/share/static/img/warning.png
+++ /dev/null
Binary files differ
diff --git a/share/static/js/receive-noscript.js b/share/static/js/receive-noscript.js
deleted file mode 100644
index 0f4ac1bc..00000000
--- a/share/static/js/receive-noscript.js
+++ /dev/null
@@ -1,2 +0,0 @@
-// Hide the noscript div, because our javascript is executing
-document.getElementById('noscript').style.display = 'none';
diff --git a/share/static/js/receive.js b/share/static/js/receive.js
index c29c726c..cbd60954 100644
--- a/share/static/js/receive.js
+++ b/share/static/js/receive.js
@@ -121,7 +121,7 @@ $(function(){
$('#uploads').append($upload_div);
// Send the request
- ajax.open('POST', window.location.pathname.replace(/\/$/, '') + '/upload-ajax', true);
+ ajax.open('POST', '/upload-ajax', true);
ajax.send(formData);
});
});