Author: jim winstead (jimwins) Committer: Derick Rethans (derickr) Date: 2024-07-20T08:29:45+01:00
Commit: https://github.com/php/web-gtk/commit/c256f2e7c85aaef227d43fc2a704289dea2d24f9 Raw diff: https://github.com/php/web-gtk/commit/c256f2e7c85aaef227d43fc2a704289dea2d24f9.diff Remove CSS animations (ugh) Changed paths: M css/w3.css M documentation.php M download.php M includes/setdefaultpage.php M index.php M null.php Diff: diff --git a/css/w3.css b/css/w3.css index 5d9381d..16043e7 100644 --- a/css/w3.css +++ b/css/w3.css @@ -293,4 +293,4 @@ position:relative;-webkit-animation-name:animatebottom;-webkit-animation-duratio .w3-text-white-opacity{color:rgba(255,255,255,0.65) !important} .w3-text-black-opacity{color:rgba(0,0,0,0.60) !important} .w3-text-shadow{text-shadow:1px 1px 1px #444;letter-spacing:2px} -.w3-text-default-blue{color:##4096CD !important}.w3-default-blue{color:#fff !important;background-color:#4096CD !important} \ No newline at end of file +.w3-text-default-blue{color:##4096CD !important}.w3-default-blue{color:#fff !important;background-color:#4096CD !important} diff --git a/documentation.php b/documentation.php index dcc0962..78a383f 100644 --- a/documentation.php +++ b/documentation.php @@ -10,10 +10,10 @@ ?> <body> <?php defaulttop(); ?> -<header class="w3-container w3-teal w3-animate-opacity"> +<header class="w3-container w3-teal"> <h1><?php echo WELCOME;?></h1> </header> -<div class="w3-center w3-animate-opacity"> +<div class="w3-center"> <div class="w3-row"><br/> <article class="w3-col m10 w3-container"> <h1><?php echo TITLE1;?></h1> @@ -44,17 +44,17 @@ <br/> </article> <aside> - <nav class="w3-col m2 w3-light-grey w3-animate-opacity"> + <nav class="w3-col m2 w3-light-grey"> <?php defaultmenuright();?> </nav> </aside> </div> </div> -<footer class="w3-container w3-small w3-teal w3-animate-opacity"> +<footer class="w3-container w3-small w3-teal"> <p><?php echo FOOTER;?></p> </footer> <?php defaultfooter(); -?> \ No newline at end of file +?> diff --git a/download.php b/download.php index 8f3f685..8920b95 100644 --- a/download.php +++ b/download.php @@ -10,10 +10,10 @@ ?> <body> <?php defaulttop(); ?> -<header class="w3-container w3-teal w3-animate-opacity"> +<header class="w3-container w3-teal"> <h1><?php echo WELCOME;?></h1> </header> -<div class="w3-center w3-animate-opacity"> +<div class="w3-center"> <div class="w3-row"><br/> <article class="w3-col m10 w3-container"> <h1><?php echo TITLE1;?></h1> @@ -188,16 +188,16 @@ <p class="w3-justify"><?php echo TEXT4;?></p> </article> <aside> - <nav class="w3-col m2 w3-light-grey w3-animate-opacity"> + <nav class="w3-col m2 w3-light-grey"> <?php defaultmenuright();?> </nav> </aside> </div> </div> -<footer class="w3-container w3-small w3-teal w3-animate-opacity"> +<footer class="w3-container w3-small w3-teal"> <p><?php echo FOOTER;?></p> </footer> <?php defaultfooter(); -?> \ No newline at end of file +?> diff --git a/includes/setdefaultpage.php b/includes/setdefaultpage.php index 80fe2f9..b2147f6 100644 --- a/includes/setdefaultpage.php +++ b/includes/setdefaultpage.php @@ -39,11 +39,11 @@ function defaulttop() { $menu=explode(":",DEFAULTMENU); echo"<header class=\"w3-row \"> <div class=\"w3-container w3-default-blue \"> -<header class=\"w3-container w3-default-blue w3-half w3-animate-opacity \"> +<header class=\"w3-container w3-default-blue w3-half \"> <img src=\"images/logo_phpgtk.png\" height=\"69\" width=\"167\" alt=\"Logo PHP-GTK\" /> <h6 >".DEFAULTHEADER1."</h6> </header> -<article class=\"w3-container w3-default-blue w3-half w3-animate-opacity\"><p>".DEFAULTHEADER2."</p> +<article class=\"w3-container w3-default-blue w3-half\"><p>".DEFAULTHEADER2."</p> </article> </div> <div class=\"w3-topnav w3-medium w3-black \"> @@ -85,11 +85,11 @@ function defaultmenuright() { function defaultfooter() { $copyright=explode("*",COPYRIGHT); -echo "<footer class=\"w3-container w3-default-blue w3-small w3-animate-opacity \"> +echo "<footer class=\"w3-container w3-default-blue w3-small \"> <div class=\"w3-left\">$copyright[0]</div> <div class=\"w3-right\">$copyright[1]</div> </footer> </body> </html>"; } -?> \ No newline at end of file +?> diff --git a/index.php b/index.php index f0fbf29..fe020c1 100644 --- a/index.php +++ b/index.php @@ -10,10 +10,10 @@ ?> <body> <?php defaulttop(); ?> -<header class="w3-container w3-teal w3-animate-opacity"> +<header class="w3-container w3-teal"> <h1><?php echo WELCOME;?></h1> </header> -<div class="w3-center w3-animate-opacity"> +<div class="w3-center"> <div class="w3-row"><br/> <article class="w3-col m10 w3-container"> <h1><?php echo TITLE1;?></h1> @@ -32,18 +32,18 @@ <p class="w3-justify"><?php echo TEXT4;?></p> </article> <aside> - <nav class="w3-col m2 w3-light-grey w3-animate-opacity"> + <nav class="w3-col m2 w3-light-grey"> <?php defaultmenuright();?> </nav> </aside> </div> </div> -<footer class="w3-container w3-small w3-teal w3-animate-opacity"> +<footer class="w3-container w3-small w3-teal"> <p><?php echo FOOTER;?></p> </footer> <?php defaultfooter(); -?> \ No newline at end of file +?> diff --git a/null.php b/null.php index 77dd1c8..2476c74 100644 --- a/null.php +++ b/null.php @@ -10,10 +10,10 @@ ?> <body> <?php defaulttop(); ?> -<header class="w3-container w3-teal w3-animate-opacity"> +<header class="w3-container w3-teal"> <h1><?php echo WELCOME;?></h1> </header> -<div class="w3-center w3-animate-opacity"> +<div class="w3-center"> <div class="w3-row"><br/> <article class="w3-col m10 w3-container"> <h1><?php echo TITLE1;?></h1> @@ -21,16 +21,16 @@ <br/> </article> <aside> - <nav class="w3-col m2 w3-light-grey w3-animate-opacity"> + <nav class="w3-col m2 w3-light-grey"> <?php defaultmenuright();?> </nav> </aside> </div> </div> -<footer class="w3-container w3-small w3-teal w3-animate-opacity"> +<footer class="w3-container w3-small w3-teal"> <p><?php echo FOOTER;?></p> </footer> <?php defaultfooter(); -?> \ No newline at end of file +?>