diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-14 14:24:11 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-14 14:24:11 +0000 |
commit | 2b020b033dc3953696b10c062bc0e9ea8760c81f (patch) | |
tree | 6b4b9ead9a435e4a119fc1c2f105e91fb9f19692 | |
parent | b70cdc59cef0fbe6de73fc3d8cdeecf126d53236 (diff) | |
download | forums-2b020b033dc3953696b10c062bc0e9ea8760c81f.tar forums-2b020b033dc3953696b10c062bc0e9ea8760c81f.tar.gz forums-2b020b033dc3953696b10c062bc0e9ea8760c81f.tar.bz2 forums-2b020b033dc3953696b10c062bc0e9ea8760c81f.tar.xz forums-2b020b033dc3953696b10c062bc0e9ea8760c81f.zip |
- ok, the move cursor really looks strange while having small images (without thumbnailing) attached. The con here is that users may only notice the "view complete image" feature by accidently clicking on a large image.
- also try to not capitalize (uppercase is only giving problems sometimes; but able to be solved by translators, capitalize just does not work for some languages)
git-svn-id: file:///svn/phpbb/trunk@7568 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/adm/style/admin.css | 3 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 691accc13c..ba258e9bb1 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -217,7 +217,6 @@ a:active { padding: 0; font-size: 0.85em; font-weight: bold; - text-transform: capitalize; } #tabs a { @@ -638,7 +637,7 @@ legend { font-weight: bold; color: #115098; position: relative; - text-transform: capitalize; + text-transform: none; line-height: 1.00em; top: 0em; vertical-align: middle; diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 1145a55f41..102391807d 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -531,7 +531,8 @@ dl.codebox code { .attach-image img { border: 1px solid #999999; - cursor: move; +/* cursor: move; */ + cursor: default; } /* Inline image thumbnails */ |