Browse Source

Various minor style updates

pjc 5 years ago
parent
commit
6667d2eba3

+ 1
- 1
classes/rules.class.php View File

@@ -149,7 +149,7 @@ class Rules
149 149
   conferences.</li>
150 150
 
151 151
 <li>Please use <code>#general</code> for the usual chit-chat, <code>#development</code> for questions about the Gazelle
152
-  software, and <code>#disabled</code> to get help recovering your account.</li>
152
+  software, and <code>#support</code> to get help with your account.</li>
153 153
 
154 154
 <li>Don't send mass alerts with <code>@channel</code>, <code>@everyone</code>, or <code>@here</code>. It's obnoxious and
155 155
   you should handle anything genuinely important on the boards.</li>

+ 1
- 1
design/publicheader.php View File

@@ -37,7 +37,7 @@ define('FOOTER_FILE', SERVER_ROOT.'/design/publicfooter.php');
37 37
 <?php if (OPEN_REGISTRATION) { ?>
38 38
  | <a href="register.php">Register</a>
39 39
 <?php } ?>
40
-| <a href="mailto:help@biotorrents.de?subject=[TxID <?= strtoupper(bin2hex(random_bytes(2))) ?>] Vague subject lines ignored">Support</a>
40
+| <a href="mailto:support@biotorrents.de?subject=[TxID <?= strtoupper(bin2hex(random_bytes(2))) ?>] Vague subject lines ignored">Support</a>
41 41
 </span></div>
42 42
 <div id="content">
43 43
 

+ 2
- 0
sections/login/login.php View File

@@ -2,6 +2,8 @@
2 2
 View::show_header('Login');
3 3
 ?>
4 4
 
5
+<p style="text-align: center;">A platform to share <em>biological sequence</em><br />and <em>medical imaging</em> data</p>
6
+
5 7
 <p id="no-cookies" class="hidden warning">You appear to have cookies disabled.</p>
6 8
 
7 9
 <?php

+ 4
- 4
sections/rules/ratio.php View File

@@ -1,4 +1,4 @@
1
-<?
1
+<?php
2 2
 //Include the header
3 3
 View::show_header('Ratio Requirements');
4 4
 ?>
@@ -44,7 +44,7 @@ View::show_header('Ratio Requirements');
44 44
           <td>Required Ratio (0% seeded)</td>
45 45
           <td>Required Ratio (100% seeded)</td>
46 46
         </tr>
47
-<?
47
+<?php
48 48
 $DL = $LoggedUser['BytesDownloaded'];
49 49
 $GB = 1024*1024*1024;
50 50
 ?>
@@ -195,8 +195,8 @@ $GB = 1024*1024*1024;
195 195
     <br />
196 196
     <br />
197 197
   </div>
198
-<? include('jump.php'); ?>
198
+<?php include('jump.php'); ?>
199 199
 </div>
200
-<?
200
+<?php
201 201
   View::show_footer();
202 202
 ?>

+ 3
- 2
sections/rules/upload.php View File

@@ -280,12 +280,13 @@ View::show_header('Uploading Rules', 'rules');
280 280
           <strong>Version.</strong>
281 281
           Similar to the accession number field, version information should only exist if the original data is versioned, or if you versioned your own data (recommended).
282 282
           Any schema is acceptable but Semantic Versioning is strongly encouraged.
283
+          You must use x.y.z numbering as with SemVer.
283 284
           <br /><br />
284 285
         </li>
285 286
 
286 287
         <li id="r3.5"><a href="#h3"><strong>&uarr;</strong></a> <a href="#r3.5">3.5</a>
287 288
           <strong>Torrent Title.</strong>
288
-          A short description of the torrent contents such as a FASTA definition line.
289
+          A short description of the torrent contents such as a FASTA definition line or publication title.
289 290
           It doesn't need to match the folders but it should tell you what the data is at a glance.
290 291
           Please avoid adding other metadata such as strain, platform, etc., with a dedicated field.
291 292
           <br /><br />
@@ -303,7 +304,7 @@ View::show_header('Uploading Rules', 'rules');
303 304
           <strong>Strain/Variety.</strong>
304 305
           The strain's name if known.
305 306
           This should correspond to a specific cell line, cultivar, or breed.
306
-          If the species is <em>H. sapiens</em> and the subject's race is known and relevant, e.g., as in a torrent of gene sequences related to sickle cell anemia, please add it here.
307
+          If the species is <em>H. sapiens</em> and the subject's ethnicity is known and relevant, e.g., as in a torrent of gene sequences related to sickle cell anemia, please add it here.
307 308
           Otherwise, please omit it.
308 309
           Do not put any identifying patient data here or anywhere else.
309 310
           <br /><br />

+ 7
- 4
static/styles/matcha/style.css View File

@@ -27,7 +27,8 @@ body {
27 27
   font-family: Bitstream Vera Sans, Tahoma, sans-serif;
28 28
   font-size: 0.7em;
29 29
   color: black;
30
-  background: url('/static/common/hiware.png') fixed;
30
+  background: #edeae5;
31
+  /*background: url('/static/common/hiware.png') fixed; */
31 32
 }
32 33
 
33 34
 /*
@@ -742,10 +743,12 @@ ul.poll li.graph {
742 743
   padding: 3px;
743 744
   width: 21px;
744 745
 }
745
-.torrent_table tr.torrent:nth-child(2n) {
746
-  background-color: #edeae5;
746
+.torrent_table tr.torrent:nth-child(2n),
747
+.collage_table tr.row:nth-child(2n) {
748
+  background-color: whitesmoke;
747 749
 }
748
-.torrent_table tr.torrent:nth-child(2n-1) {
750
+.torrent_table tr.torrent:nth-child(2n-1),
751
+.collage_table tr.row:nth-child(2n-1) {
749 752
   background-color: white;
750 753
 }
751 754
 .torrent_table tr.group {

+ 2
- 1
static/styles/public/style.css View File

@@ -20,7 +20,8 @@ body {
20 20
   font-family: Bitstream Vera Sans, Tahoma, sans-serif;
21 21
   font-size: 0.75em;
22 22
   color: black;
23
-  background: url('/static/common/hiware.png');
23
+  background: #edeae5;
24
+  /* background: url('/static/common/hiware.png'); */
24 25
 }
25 26
 
26 27
 table {

Loading…
Cancel
Save