diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-01-24 19:53:24 -0500 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-01-24 20:03:45 -0500 |
commit | ad2e22b999b3b795f60e0f95abcaf3b339567294 (patch) | |
tree | ebea9e231463d878ff869e4a74ecd4620e743a95 /templates/content/style | |
parent | c4da893b2e28dbd2a04f8c6f61c52936119b1148 (diff) | |
download | askbot-ad2e22b999b3b795f60e0f95abcaf3b339567294.tar.gz askbot-ad2e22b999b3b795f60e0f95abcaf3b339567294.tar.bz2 askbot-ad2e22b999b3b795f60e0f95abcaf3b339567294.zip |
recaptcha for conventional registration\n\
simpler email subscription form at registration\n\
fixed urls in rss feed\n\
added experimental remote password login api (cleartext password for remote site entered locally)\n\
included example for Mediawiki Authentication plugin\n\
very simple message to everyone management command
Diffstat (limited to 'templates/content/style')
-rw-r--r-- | templates/content/style/mediawiki-login.css | 63 | ||||
-rw-r--r-- | templates/content/style/style.css | 22 |
2 files changed, 83 insertions, 2 deletions
diff --git a/templates/content/style/mediawiki-login.css b/templates/content/style/mediawiki-login.css new file mode 100644 index 00000000..58813c7c --- /dev/null +++ b/templates/content/style/mediawiki-login.css @@ -0,0 +1,63 @@ +#mediawiki-login legend { + font-weight:bold; + font-size:14px; +} + +#mediawiki-login fieldset { + border:none; +} + +#mediawiki-login ul { + list-style: none; + list-style-position: outside; + padding: 0px; + margin: 10px 0 0 0; +} + +#mediawiki-login p { + margin:0; +} + +#mediawiki-login div.login-information label { + width: 180px; + display: inline-block; +} + +#mediawiki-login legend { + padding: 0px; +} + +#mediawiki-login h2 { + margin:10px 0 0 0; + padding:3px 0 3px 0; + border:none; + font-family:sans-serif; + font-size:16.8px; + font-weight:bold; +} + +#mediawiki-login tr { + vertical-align: top; +} + +#id_screen_name { + margin-left:25px; +} + +#mediawiki-login input { + height: 20px; +} + +#mediawiki-login input.submit { + margin-top:5px; + margin-left:5px; + display:block; + clear:both; + font-weight: bold; + font-size:14.4px; + height:33px; + /*padding: 4px 6px 4px 6px;*/ + text-align: center; + border: 1px solid #777777; + background: #D4D0C8; +} diff --git a/templates/content/style/style.css b/templates/content/style/style.css index 47b4dc00..aba67eee 100644 --- a/templates/content/style/style.css +++ b/templates/content/style/style.css @@ -686,7 +686,12 @@ table.form-as-table th { /*.form-row li label { display: inline }*/ -.submit-row{line-height:30px;padding-top:10px;} +.submit-row{ + line-height:30px; + padding-top:10px; + display: block; + clear: both; +} .errors{line-height:20px;color:red;} .error{ color:darkred; @@ -1158,7 +1163,7 @@ ul.bulleta li {background:url(../images/bullet_green.gif) no-repeat 0px 2px; pad .message p { margin-bottom:0px; } -.message p.space-above { +p.space-above { margin-top:10px; } @@ -1446,3 +1451,16 @@ ul.form-horizontal-rows li input { #hideIgnoredTagsCb { margin: 0 2px 0 1px; } +#recaptcha_widget_div { + width:318px; + float:left; + clear:both; +} +p.signup_p { + margin: 20px 0px 0px 0px; +} +.simple-subscribe-options ul { + list-style:none; + list-style-position:outside; + margin:0; +} |