Ajout de l'UC ForgotPassword

Modification CSS
Mise en place des blocs arondis (cbb)
Clarification interface pages login avec les blocs cbb
Correction articleController : validation
This commit is contained in:
2008-02-14 12:14:51 +00:00
parent 39dadefc43
commit e3f0133ffc
20 changed files with 395 additions and 38 deletions

View File

@@ -1,3 +1,5 @@
/* @override http://localhost:8080/YACOSWeb/stylesheets/base.css */
/* @group RESET */
html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input { margin: 0; padding: 0; }
@@ -26,9 +28,24 @@ body {
font-size: 10px;
}
form {
display: block;
}
.formHelp {
padding: 5px;
border: thin solid #94ff90;
background-color: #dfffe4;
}
.formError{
color: #ff0000;
font-size: 10px;
}
.formError > * {
display: list-item;
list-style-position: inside;
list-style-image: url(../images/error_bullet.png);
}
/* @group Login */
@@ -138,7 +155,6 @@ body {
}
#maincontent {
position: relative;
color: #333;
}
@@ -212,13 +228,17 @@ body {
padding-right: 10px;
}
#maincontent > * {
margin-right: 10px;
}
#main #maincontent h4.title {
color: #fff;
font-weight: bold;
height: 23px;
position: relative;
top: 2px;
margin-bottom: 6px;
margin-left: 0;
}
/* @end */
@@ -298,4 +318,109 @@ body {
.selected {
background-color: #fea752;
}
/* @end */
/* @group general purpose */
.centered {
margin: auto;
}
/* @end */
/* @group rounded box */
.cb h2 {
margin-left: -11px;
margin-right: -11px;
padding-left: 10px;
padding-right: 10px;
border-color: #fd7738;
margin-bottom: 10px;
font-weight: bolder;
border-bottom: 2px solid #df9b7b;
}
/* Normal styling */
.cb {
margin:0.5em 0;
}
/* Top corners and border */
.bt {
height:19px;
margin:0 0 0 19px;
background:url(../images/box.png) no-repeat 100% 0;
}
.bt div {
position:relative;
left:-19px;
width:19px;
height:19px;
background:url(../images/box.png) no-repeat 0 0;
font-size:0;
line-height:0;
}
/* Bottom corners and border */
.bb {
height:19px;
margin:0 0 0 19px;
background:url(../images/box.png) no-repeat 100% 100%;
}
.bb div {
position:relative;
left:-19px;
width:19px;
height:19px;
background:url(../images/box.png) no-repeat 0 100%;
font-size:0;
line-height:0;
}
/* Left border */
.i1 {
padding:0 0 0 11px;
background:url(../images/borders.png) repeat-y 0 0;
}
/* Right border */
.i2 {
padding:0 11px 0 0;
background:url(../images/borders.png) repeat-y 100% 0;
}
/* Wrapper for the content. Use it to set the background colour and insert some padding between the borders and the content. */
.i3 {
display:block;
margin:0;
padding:1px 10px;
background:#fff;
}
/* Make the content wrapper auto clearing so it will contain floats (see http://positioniseverything.net/easyclearing.html). */
.i3:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.i3 {display:inline-block;}
.i3 {display:block;}
/* Default CSS ends here */
/* @end */
/* @group yacos_button */
.yacos_button {
display: inline-block;
background-image: url(../images/button_background_idle.png);
max-height: 40px;
min-width: 50px;
padding:10px;
}
.yacos_button:hover {
background-image: url(../images/button_background_hover.png);
}
/* @end */