diff --git a/codepot/src/css/common.css b/codepot/src/css/common.css index 77d27835..9880110b 100644 --- a/codepot/src/css/common.css +++ b/codepot/src/css/common.css @@ -651,6 +651,7 @@ pre.prettyprint li.L9 { background: #eee } right: 0.8em; top: 0.8em; } + #taskbar_signin_form_panel { background-color: black; padding: 0.6em 0.6em 0.6em 0.6em; @@ -661,10 +662,12 @@ pre.prettyprint li.L9 { background: #eee } -moz-border-radius-topright:2px; white-space: nowrap; } + #taskbar_signin_button_panel { float: right; margin-left: 0.3em; } + #taskbar_signin_button_panel a { color: #0073EA; } @@ -676,4 +679,14 @@ pre.prettyprint li.L9 { background: #eee } white-space: nowrap; } +#taskbar_user_name { + background: url("images/username.png") no-repeat scroll 0% 0% rgb(234, 231, 231); + background-position: 0px 1px !important; + padding-left: 24px; +} +#taskbar_user_pass { + background: url("images/password.png") no-repeat scroll 0% 0% rgb(234, 231, 231); + background-position: 0px 1px !important; + padding-left: 24px; +} diff --git a/codepot/src/css/images/Makefile.am b/codepot/src/css/images/Makefile.am index e3b32c9a..1f8c0442 100644 --- a/codepot/src/css/images/Makefile.am +++ b/codepot/src/css/images/Makefile.am @@ -31,6 +31,7 @@ www_DATA = \ page_white_add.png \ page_white_delete.png \ page_white_edit.png \ + password.png \ script.png \ sitemap_color.png \ submitbg.png \ @@ -52,7 +53,8 @@ www_DATA = \ ui-icons_666666_256x240.png \ ui-icons_ff0084_256x240.png \ ui-icons_ffffff_256x240.png \ - up.png + up.png \ + username.png EXTRA_DIST = $(www_DATA) diff --git a/codepot/src/css/images/Makefile.in b/codepot/src/css/images/Makefile.in index 4b7706a0..5449e66a 100644 --- a/codepot/src/css/images/Makefile.in +++ b/codepot/src/css/images/Makefile.in @@ -226,6 +226,7 @@ www_DATA = \ page_white_add.png \ page_white_delete.png \ page_white_edit.png \ + password.png \ script.png \ sitemap_color.png \ submitbg.png \ @@ -247,7 +248,8 @@ www_DATA = \ ui-icons_666666_256x240.png \ ui-icons_ff0084_256x240.png \ ui-icons_ffffff_256x240.png \ - up.png + up.png \ + username.png EXTRA_DIST = $(www_DATA) all: all-am diff --git a/codepot/src/css/images/password.png b/codepot/src/css/images/password.png new file mode 100644 index 00000000..1af1d766 Binary files /dev/null and b/codepot/src/css/images/password.png differ diff --git a/codepot/src/css/images/username.png b/codepot/src/css/images/username.png new file mode 100644 index 00000000..5781ab49 Binary files /dev/null and b/codepot/src/css/images/username.png differ