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 /phpBB/styles | |
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
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 3 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/theme/stylesheet.css | 4 |
2 files changed, 7 insertions, 0 deletions
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%; } |