[phpMyAdmin Git] [phpmyadmin/phpmyadmin] 47c3ba: Fix #15101 - Margin before checkbox

Petr Duda petrduda at seznam.cz
Sat May 16 10:55:14 CEST 2020


Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 47c3ba544d507422d930dcfe4e7459d11f04897a
https://github.com/phpmyadmin/phpmyadmin/commit/47c3ba544d507422d930dcfe4e7459d11f04897a
Author: Petr Duda <petrduda at seznam.cz>
Date: 2020-05-16 (Sat, 05 May 2020) +02:00

Changed paths: 
M themes/pmahomme/scss/_common.scss

Log Message:
-----------
Fix #15101 - Margin before checkbox

Signed-off-by: Petr Duda <petrduda at seznam.cz>

Commit: dcacba0039756c6b18c89247c44be91b0c96ac92
https://github.com/phpmyadmin/phpmyadmin/commit/dcacba0039756c6b18c89247c44be91b0c96ac92
Author: William Desportes <williamdes at wdes.fr>
Date: 2020-05-16 (Sat, 05 May 2020) +02:00

Changed paths: 
M themes/pmahomme/scss/_common.scss

Log Message:
-----------
Merge #16124 - Fix #15101 - Fix margin before checkbox on local settings import

Pull-request: #16124
Fixes: #15101

Signed-off-by: William Desportes <williamdes at wdes.fr>

Commit: d93efc2edab2c05f8599b8103e5b2ebee9f91c7d
https://github.com/phpmyadmin/phpmyadmin/commit/d93efc2edab2c05f8599b8103e5b2ebee9f91c7d
Author: William Desportes <williamdes at wdes.fr>
Date: 2020-05-16 (Sat, 05 May 2020) +02:00

Changed paths: 
M setup/styles.css

Log Message:
-----------
Fix Missing vendor-prefixed CSS gradients for Old Webkit (Safari 4+, Chrome).

Why is this an issue?
CSS gradients in a cross-browser way requires using many different vendor-prefixed versions. There are currently five different vendor-prefixed versions of CSS gradient:

-ms-linear-gradient and -ms-radial-gradient for Internet Explorer 10+
-moz-linear-gradient and -moz-radial-gradient for Firefox 3.6+
-o-linear-gradient and -o-radial-gradient for Opera 11.10+
-webkit-linear-gradient and -webkit-radial-gradient for Safari 5+ and Chrome
-webkit-gradient for Safari 4+ and Chrome (aka "Old WebKit")
Meaning a simple two-color gradient that works across all browsers must look like this:

 background: -moz-linear-gradient(...); /* FF3.6+ */
 background: -webkit-gradient(...); /* Chrome,Safari4+ */
 background: -webkit-linear-gradient(...); /* Chrome10+,Safari5.1+ */
 background: -o-linear-gradient(...); /* Opera 11.10+ */
 background: -ms-linear-gradient(...); /* IE10+ */
It's easy to forget one or more gradient definitions with all of the various vendor prefix gradients available.
[By Codacy]

Signed-off-by: William Desportes <williamdes at wdes.fr>



More information about the Git mailing list