diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-08-17 09:38:15 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-08-17 09:38:15 +0200 |
commit | dcf12cad26f0368785017914ccc4af6e29a04d77 (patch) | |
tree | b5ece2a937f3e9505bd006415866276ac66d3571 | |
parent | e466318dc26c9cf4f9dc8d42c2bb69983b89608f (diff) | |
parent | d89c95295572f2657b5582dffe048b27af3e72ca (diff) | |
download | forums-dcf12cad26f0368785017914ccc4af6e29a04d77.tar forums-dcf12cad26f0368785017914ccc4af6e29a04d77.tar.gz forums-dcf12cad26f0368785017914ccc4af6e29a04d77.tar.bz2 forums-dcf12cad26f0368785017914ccc4af6e29a04d77.tar.xz forums-dcf12cad26f0368785017914ccc4af6e29a04d77.zip |
Merge pull request #3832 from cyberalien/ticket/14103
[ticket/14103] Reset text-decoration in abbr element
-rw-r--r-- | phpBB/adm/style/admin.css | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 3 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/theme/stylesheet.css | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index b03cb0ba24..396b21e3eb 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -17,6 +17,10 @@ font-size: 100%; } +abbr { + text-decoration: none; +} + body, div, p, th, td, li, dd { font-size: x-small; voice-family: "\"}\""; diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 702960f47c..19b0f65a2d 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -43,6 +43,9 @@ table { border-collapse: collapse; border-spacing: 0; } +abbr { + text-decoration: none; +} /* General Markup Styles ---------------------------------------- */ diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css index 7764020567..784643a5b9 100644 --- a/phpBB/styles/subsilver2/theme/stylesheet.css +++ b/phpBB/styles/subsilver2/theme/stylesheet.css @@ -15,6 +15,10 @@ padding: 0; } +abbr { + text-decoration: none; +} + html { font-size: 100%; } |