diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/login.tpl | 43 | ||||
-rw-r--r-- | view/notifications.tpl | 7 | ||||
-rw-r--r-- | view/profile_advanced.tpl | 143 | ||||
-rw-r--r-- | view/register-link.tpl | 1 | ||||
-rw-r--r-- | view/theme/dispy/jot.tpl | 3 | ||||
-rw-r--r-- | view/theme/duepuntozero/style.css | 28 | ||||
-rw-r--r-- | view/theme/loozah/style.css | 39 | ||||
-rw-r--r-- | view/theme/quattro/colors.less | 5 | ||||
-rw-r--r-- | view/theme/quattro/jot.tpl | 3 | ||||
-rw-r--r-- | view/theme/quattro/quattro.less | 18 | ||||
-rw-r--r-- | view/theme/quattro/style.css | 18 | ||||
-rw-r--r-- | view/theme/testbubble/login.tpl | 25 | ||||
-rw-r--r-- | view/theme/testbubble/style.css | 39 |
13 files changed, 222 insertions, 150 deletions
diff --git a/view/login.tpl b/view/login.tpl index 27598cd50..5240bb9ad 100644 --- a/view/login.tpl +++ b/view/login.tpl @@ -1,25 +1,28 @@ <form action="" method="post" > -<input type="hidden" name="auth-params" value="login" /> -<div id="login-name-wrapper"> - <label for="login-name" id="label-login-name">$namelabel</label> - <input type="text" maxlength="60" name="openid_url" class="$classname" id="login-name" value="" /> -</div> -<div id="login-name-end" ></div> -<div id="login-password-wrapper"> - <label for="login-password" id="label-login-password">$passlabel</label> - <input type="password" maxlength="60" name="password" id="login-password" value="" /> -</div> -<div id="login-password-end"></div> -<div id="login-extra-links" class=".button"> - <div id="login-extra-filler"> </div> - $register_html + <input type="hidden" name="auth-params" value="login" /> + + <div id="login_standard"> + {{ inc field_input.tpl with $field=$lname }}{{ endinc }} + {{ inc field_password.tpl with $field=$lpassword }}{{ endinc }} + </div> + + {{ if $openid }} + <div id="login_openid"> + {{ inc field_openid.tpl with $field=$lopenid }}{{ endinc }} + </div> + {{ endif }} + + <div id="login-extra-links"> + {{ if $register }}<a href="register" title="$register.title" id="register-link">$register.desc</a>{{ endif }} <a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a> -</div> -<div id="login-extra-end"></div> -<div id="login-submit-wrapper" > - <input type="submit" name="submit" id="login-submit-button" value="$login" /> -</div> -<div id="login-submit-end"></div> + </div> + + <div id="login-submit-wrapper" > + <input type="submit" name="submit" id="login-submit-button" value="$login" /> + </div> + </form> + +<script type="text/javascript"> $(document).ready(function() { $("#id_$lname.0").focus();} );</script> diff --git a/view/notifications.tpl b/view/notifications.tpl index d737a7507..487f8b480 100644 --- a/view/notifications.tpl +++ b/view/notifications.tpl @@ -1,5 +1,8 @@ -<h1>$notif_header</h1> -$tabs + +<h1>Notifications</h1> + +{{ inc common_tabs.tpl }}{{ endinc }} + <div class="notif-network-wrapper"> $notif_content </div> diff --git a/view/profile_advanced.tpl b/view/profile_advanced.tpl new file mode 100644 index 000000000..136edf8d7 --- /dev/null +++ b/view/profile_advanced.tpl @@ -0,0 +1,143 @@ +<h2>$title</h2> + +<dl> + <dt>$profile.fullname.0</dt> + <dd>$profile.fullname.1</dd> +</dl> + +{{ if $profile.gender }} +<dl> + <dt>$profile.gender.0</dt> + <dd>$profile.gender.1</dd> +</dl> +{{ endif }} + +{{ if $profile.birthday }} +<dl> + <dt>$profile.birthday.0</dt> + <dd>$profile.birthday.1</dd> +</dl> +{{ endif }} + +{{ if $profile.age }} +<dl> + <dt>$profile.age.0</dt> + <dd>$profile.age.1</dd> +</dl> +{{ endif }} + +{{ if $profile.marital }} +<dl> + <dt><span class="heart">♥</span> $profile.marital.0</dt> + <dd>$profile.marital.1 {{ if $profile.marital.with }}($profile.marital.with){{ endif }}</dd> +</dl> +{{ endif }} + +{{ if $profile.sexual }} +<dl> + <dt>$profile.sexual.0</dt> + <dd>$profile.sexual.1</dd> +</dl> +{{ endif }} + +{{ if $profile.homepage }} +<dl> + <dt>$profile.homepage.0</dt> + <dd>$profile.homepage.1</dd> +</dl> +{{ endif }} + +{{ if $profile.politic }} +<dl> + <dt>$profile.politic.0</dt> + <dd>$profile.politic.1</dd> +</dl> +{{ endif }} + +{{ if $profile.religion }} +<dl> + <dt>$profile.religion.0</dt> + <dd>$profile.religion.1</dd> +</dl> +{{ endif }} + +{{ if $profile.about }} +<dl> + <dt>$profile.about.0</dt> + <dd>$profile.about.1</dd> +</dl> +{{ endif }} + +{{ if $profile.interest }} +<dl> + <dt>$profile.interest.0</dt> + <dd>$profile.interest.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.contact }} +<dl> + <dt>$profile.contact.0</dt> + <dd>$profile.contact.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.music }} +<dl> + <dt>$profile.music.0</dt> + <dd>$profile.music.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.book }} +<dl> + <dt>$profile.book.0</dt> + <dd>$profile.book.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.tv }} +<dl> + <dt>$profile.tv.0</dt> + <dd>$profile.tv.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.film }} +<dl> + <dt>$profile.film.0</dt> + <dd>$profile.film.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.romance }} +<dl> + <dt>$profile.romance.0</dt> + <dd>$profile.romance.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.work }} +<dl> + <dt>$profile.work.0</dt> + <dd>$profile.work.1</dd> +</dl> +{{ endif }} + +{{ if $profile.education }} +<dl> + <dt>$profile.education.0</dt> + <dd>$profile.education.1</dd> +</dl> +{{ endif }} + + + + diff --git a/view/register-link.tpl b/view/register-link.tpl deleted file mode 100644 index 802c5f99f..000000000 --- a/view/register-link.tpl +++ /dev/null @@ -1 +0,0 @@ - <a href="register" title = "$title" id="register-link" >$desc</a> diff --git a/view/theme/dispy/jot.tpl b/view/theme/dispy/jot.tpl index f6bf91ffa..a2c883e4b 100644 --- a/view/theme/dispy/jot.tpl +++ b/view/theme/dispy/jot.tpl @@ -37,9 +37,6 @@ <div id="profile-link-wrapper" class="jot-tool" style="display: none;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" > <a id="profile-link" class="icon border link" title="$weblink" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;"></a> </div> - <div id="profile-youtube-wrapper" class="jot-tool" style="display: none;" > - <a id="profile-youtube" class="icon border youtube" title="$youtube" onclick="jotGetVideo(); return false;"></a> - </div> <div id="profile-video-wrapper" class="jot-tool" style="display: none;" > <a id="profile-video" class="icon border video" title="$video" onclick="jotVideoURL(); return false;"></a> </div> diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 9bb866e76..6f452cebc 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -27,8 +27,7 @@ input { img { border :0px; } -#id_openid_url, -.openid { +.openid input { background: url(login-bg.gif) no-repeat; background-position: 0 50%; padding-left: 18px; @@ -332,26 +331,23 @@ div.wall-item-content-wrapper.shiny { margin-top: 10px; } -#label-login-name, #label-login-password, #login-extra-filler { - float: left; - width: 200px; - margin-bottom: 20px; -} - -#login-password { +#login_standard { + width: 210px; float: left; - width: 170px; +} +#login_openid { + width: 210px; + margin-left: 250px; } -#login-name { - float: left; - width: 153px; +#login_standard input, +#login_openid input { + width: 180px; } -#login-name.no-openid { - float: left; - width: 170px; +#login-extra-links { + clear: both; } #register-link, #lost-password-link { diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index c6250c51c..447072390 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -41,18 +41,21 @@ input:hover { cursor: pointer; } -#id_openid_url, -.openid { +.openid input{ background-color: #ECECEC !important; background: url(login-bg.gif) no-repeat; background-position: 0 50%; padding-left: 18px; + width: 385px !important; } -#id_openid_url:hover, -.openid:hover { + +.openid input:hover { background-color: #0CBEFE !important; } + + + option { background-color: #ECD6D2; } @@ -451,27 +454,20 @@ nav { margin-top: 10px; } -#label-login-name, #label-login-password, #login-extra-filler { - float: left; - width: 200px; - margin-bottom: 20px; -} - - -#login-password { +#login_standard { + width: 480px; float: left; - width: 170px; } - -#login-name { - float: left; - width: 153px; +#login_openid { + width: 480px; + margin-left: 490px; } -#login-name.no-openid { - float: left; - width: 170px; +#login_standard input, +#login_openid input { + width: 180px!important; } +#login-extra-links { clear: both; } #register-link, #lost-password-link { float: left; @@ -479,9 +475,6 @@ nav { margin-right: 15px; } -#login-name-end, #login-password-end, #login-extra-end, #login-submit-end { - clear: both; -} #login-submit-button { /* margin-top: 10px; */ diff --git a/view/theme/quattro/colors.less b/view/theme/quattro/colors.less index 564cf6d24..a7a91114c 100644 --- a/view/theme/quattro/colors.less +++ b/view/theme/quattro/colors.less @@ -38,6 +38,10 @@ @LinkHover: @Blue3; @LinkVisited: @Blue3; + +@ButtonColor: @Grey1; +@ButtonBackgroundColor: @Grey5; + @Banner: @Grey1; @NavbarBackground:@Metalic4; @@ -72,3 +76,4 @@ @CommentBoxEmptyBorderColor: @Grey3; @CommentBoxFullColor: @Grey5; @CommentBoxFullBorderColor: @Grey5; + diff --git a/view/theme/quattro/jot.tpl b/view/theme/quattro/jot.tpl index 49c0e9fec..d65ac8b17 100644 --- a/view/theme/quattro/jot.tpl +++ b/view/theme/quattro/jot.tpl @@ -31,9 +31,6 @@ <div id="profile-link-wrapper" style="display: $visitor;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" > <a id="profile-link" class="link" title="$weblink" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;">enter link</a> </div> - <div id="profile-youtube-wrapper" style="display: $visitor;" > - <a id="profile-youtube" class="youtube" title="$youtube" onclick="jotGetVideo();return false;">youtube</a> - </div> <div id="profile-video-wrapper" style="display: $visitor;" > <a id="profile-video" class="video" title="$video" onclick="jotVideoURL();return false;">video url</a> </div> diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 9f47cf099..782e1b62b 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -433,15 +433,11 @@ section { } /** buttons **/ input[type="submit"] { - border: 1px solid; - background-color: @BodyColor; - font: bold 85%; - color: @Grey1; - height: 20px; - padding: 10px 5px; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; + border: 0px; + background-color: @ButtonBackgroundColor; + color: @ButtonColor; + padding: 0px 10px; + .rounded(5px); } @@ -473,10 +469,8 @@ input[type="submit"] { background-position: 7px 7px; background-repeat: no-repeat; padding: 7px 5px 0px 30px; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; color: #999999; + .rounded(5px); } #acl-showall.selected { color: #000000; diff --git a/view/theme/quattro/style.css b/view/theme/quattro/style.css index 56c4bc967..aa4552837 100644 --- a/view/theme/quattro/style.css +++ b/view/theme/quattro/style.css @@ -693,15 +693,13 @@ section { } /** buttons **/ input[type="submit"] { - border: 1px solid; + border: 0px; background-color: #2d2d2d; - font: bold 85%; color: #ffffff; - height: 20px; - padding: 10px 5px; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; + padding: 0px 10px; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; } /** acl **/ #photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { @@ -726,10 +724,10 @@ input[type="submit"] { background-position: 7px 7px; background-repeat: no-repeat; padding: 7px 5px 0px 30px; - -webkit-border-radius: 5px ; - -moz-border-radius: 5px; - border-radius: 5px; color: #999999; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; } #acl-showall.selected { color: #000000; diff --git a/view/theme/testbubble/login.tpl b/view/theme/testbubble/login.tpl deleted file mode 100644 index c17950ece..000000000 --- a/view/theme/testbubble/login.tpl +++ /dev/null @@ -1,25 +0,0 @@ - -<form action="" method="post" > - <input type="hidden" name="auth-params" value="login" /> - <div id="login-name-wrapper"> - <label for="login-name" id="label-login-name">$namelabel</label> - <input type="text" maxlength="60" name="openid_url" class="$classname" id="login-name" value="" /> - </div> - <div id="login-name-end" ></div> - <div id="login-password-wrapper"> - <label for="login-password" id="label-login-password">$passlabel</label> - <input type="password" maxlength="60" name="password" id="login-password" value="" /> - </div> - <div id="login-password-end"></div> - <div id="login-submit-wrapper" > - <input type="submit" name="submit" id="login-submit-button" value="$login" /> - <a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a> - </div> - <div id="login-submit-end"></div> - <div id="login-extra-links" class=".button"> - <div id="login-extra-filler"> </div> - $register_html - </div> - <div id="login-extra-end"></div> -</form> - diff --git a/view/theme/testbubble/style.css b/view/theme/testbubble/style.css index 4a3edc163..83afe78f4 100644 --- a/view/theme/testbubble/style.css +++ b/view/theme/testbubble/style.css @@ -823,7 +823,7 @@ profile-jot-banner-wrapper { /* ======== */ .tabs { - width: 600px; + width: 450px; list-style: none; padding: 10px; margin: 0px 0px 10px 0px; @@ -2101,19 +2101,11 @@ margin-left: 0px; /* = Register, Settings, Profile Forms = */ /* ===================================== */ -#id_openid_url, -.openid { +.openid input{ background: url(login-bg.gif) no-repeat; background-position: 0 50%; - padding-left: 18px !important; - width: 385px; -} - -.openid { - width: 150px !important; -} -#login-password { - width: 168px !important; + padding-left: 18px; + width: 384px!important; } #profile-tabs-wrapper { @@ -2218,25 +2210,6 @@ margin-left: 0px; padding: 5px; } -.settings-block { - margin-top: 20px; - -moz-box-shadow: 1px 2px 6px 0px #959494; - -webkit-box-shadow: 1px 2px 6px 0px #959494; - box-shadow: 1px 2px 6px 0px #959494; - background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f8f8f8), color-stop(1, #f6f6f6) ); - background:-moz-linear-gradient( center top, #f8f8f8 5%, #f6f6f6 100% ); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f6f6f6'); - background-color:#f8f8f8; - -moz-border-radius:5px; - -webkit-border-radius:5px; - border-radius:5px; - border:1px solid #eee; - color:#a6a6a6; - text-shadow:-1px 0px 0px #bdbdbd; - border: 1px solid #cdcdcd; - padding: 5px; -} - #register-form div, #profile-edit-form div { clear: both; @@ -2621,10 +2594,6 @@ tr { width: 150px; } -.directory-end { - clear: both; -} - /* ========= */ /* = Admin = */ /* ========= */ |