diff options
author | cyberalien <cyberalien@gmail.com> | 2015-08-15 13:57:48 +0300 |
---|---|---|
committer | cyberalien <cyberalien@gmail.com> | 2015-08-15 13:57:48 +0300 |
commit | d89c95295572f2657b5582dffe048b27af3e72ca (patch) | |
tree | b5ece2a937f3e9505bd006415866276ac66d3571 | |
parent | e466318dc26c9cf4f9dc8d42c2bb69983b89608f (diff) | |
download | forums-d89c95295572f2657b5582dffe048b27af3e72ca.tar forums-d89c95295572f2657b5582dffe048b27af3e72ca.tar.gz forums-d89c95295572f2657b5582dffe048b27af3e72ca.tar.bz2 forums-d89c95295572f2657b5582dffe048b27af3e72ca.tar.xz forums-d89c95295572f2657b5582dffe048b27af3e72ca.zip |
[ticket/14103] Reset text-decoration in abbr element
PHPBB3-14103
-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%; } |