در حال ویرایش الگو:UF-coord-classes
این ویرایش را میتوان خنثی کرد. لطفاً تفاوت زیر را بررسی کنید تا تأیید کنید که این چیزی است که میخواهید انجام دهید، سپس تغییرات زیر را ذخیره کنید تا خنثیسازی ویرایش را به پایان ببرید.
نسخهٔ فعلی | متن شما | ||
خط ۱: | خط ۱: | ||
To always display coordinates as DMS values, add this to [[Special:Mypage/common.css|your common.css]]: | To always display coordinates as DMS values, add this to [[Special:Mypage/common.css|your common.css]]: | ||
< | <pre style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> | ||
.geo-default { display: inline } | .geo-default { display: inline } | ||
.geo-nondefault { display: inline } | .geo-nondefault { display: inline } | ||
.geo-dec { display: none } | .geo-dec { display: none } | ||
.geo-dms { display: inline } | .geo-dms { display: inline } | ||
</ | </pre> | ||
To always display coordinates as decimal values, add this to [[Special:Mypage/common.css|your common.css]]: | To always display coordinates as decimal values, add this to [[Special:Mypage/common.css|your common.css]]: | ||
< | <pre style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> | ||
.geo-default { display: inline } | .geo-default { display: inline } | ||
.geo-nondefault { display: inline } | .geo-nondefault { display: inline } | ||
.geo-dec { display: inline } | .geo-dec { display: inline } | ||
.geo-dms { display: none } | .geo-dms { display: none } | ||
</ | </pre> | ||
To display coordinates in both formats, add this to [[Special:Mypage/common.css|your common.css]]: | To display coordinates in both formats, add this to [[Special:Mypage/common.css|your common.css]]: | ||
< | <pre style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> | ||
.geo-default { display: inline } | .geo-default { display: inline } | ||
.geo-nondefault { display: inline } | .geo-nondefault { display: inline } | ||
خط ۲۲: | خط ۲۲: | ||
.geo-dms { display: inline } | .geo-dms { display: inline } | ||
.geo-multi-punct { display: inline } | .geo-multi-punct { display: inline } | ||
</ | </pre> | ||
If CSS is disabled, or you have an old copy of [[MediaWiki:Common.css]] cached, you will see both formats. (You can either clear your cache or manually refresh this URL: {{Plain link|url=//en.wikipedia.org/w/index.php?title=MediaWiki:Common.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=2678400}}.) | If CSS is disabled, or you have an old copy of [[MediaWiki:Common.css]] cached, you will see both formats. (You can either clear your cache or manually refresh this URL: {{Plain link|url=//en.wikipedia.org/w/index.php?title=MediaWiki:Common.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=2678400}}.) | ||
To disable display of the blue globe adjacent to coordinates, add this to [[Special:Mypage/common.js|your common.js]]: | To disable display of the blue globe adjacent to coordinates, add this to [[Special:Mypage/common.js|your common.js]]: | ||
< | <pre style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> | ||
var wma_settings = {enabled:false} | var wma_settings = {enabled:false} | ||
</ | </pre> | ||
Note that this will disable [[meta:WikiMiniAtlas|WikiMiniAtlas]]. | Note that this will disable [[meta:WikiMiniAtlas|WikiMiniAtlas]]. | ||