[FFmpeg-devel] [PATCH 1/3] fateserver: remove styles conflicting with website CSS

Timothy Gu timothygu99 at gmail.com
Fri Jan 31 05:06:17 CET 2014


Signed-off-by: Timothy Gu <timothygu99 at gmail.com>
---
 fate.css    | 6 ------
 history.cgi | 3 +++
 index.cgi   | 3 +++
 report.cgi  | 3 +++
 4 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/fate.css b/fate.css
index 51094c9..05ac3dc 100644
--- a/fate.css
+++ b/fate.css
@@ -14,12 +14,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-body {
-    background: white;
-    color: black;
-    font-family: sans-serif;
-}
-
 table {
     border-collapse: collapse;
 }
diff --git a/history.cgi b/history.cgi
index a8726bf..d52644f 100755
--- a/history.cgi
+++ b/history.cgi
@@ -49,6 +49,8 @@ start 'div', id => 'container';
 
 navbar;
 
+start 'div', id => 'body';
+
 h1 "Report history for $slot";
 
 start 'table', id => 'history', class => 'replist';
@@ -94,5 +96,6 @@ for my $date ((sort { $b cmp $a } @reps)[0..49]) {
 end 'tbody';
 end 'table';
 end 'div';
+end 'div';
 end 'body';
 end 'html';
diff --git a/index.cgi b/index.cgi
index f034a95..cc05f6a 100755
--- a/index.cgi
+++ b/index.cgi
@@ -131,6 +131,8 @@ start 'div', id => 'container';
 
 navbar;
 
+start 'div', id => 'body';
+
 h1 'FATE';
 
 start 'table', id => 'index', class => 'replist';
@@ -270,5 +272,6 @@ for my $rep (sort repcmp @reps) {
 end 'tbody';
 end 'table';
 end 'div';
+end 'div';
 end 'body';
 end 'html';
diff --git a/report.cgi b/report.cgi
index cf90ce0..6e6b6ba 100755
--- a/report.cgi
+++ b/report.cgi
@@ -109,6 +109,8 @@ start 'div', id => 'container';
 
 navbar;
 
+start 'div', id => 'body';
+
 h1 "$$hdr{slot} $$hdr{rev}", id => 'title';
 
 start 'table', id => 'config';
@@ -208,5 +210,6 @@ if ($nfail) {
 end 'table';
 
 end 'div';
+end 'div';
 end 'body';
 end 'html';
-- 
1.8.3.2



More information about the ffmpeg-devel mailing list