ldapsaisie/src/css/black/LSform.css
Benjamin Renard 7098b3ee79 Massive change of files organisation to move all files outside web-root
The web-root directory now contains URL rewrite stuff. All PHP & static files are
in root src directory and are served via LSurl routes.
2020-05-06 12:17:35 +02:00

158 lines
3 KiB
CSS

/*
******************
* LSForm
******************
*/
/*
* Layout
*/
ul.LSform_layout_active {
list-style-type: none;
padding: 0;
margin: 1em;
margin-bottom: 0;
}
li.LSform_layout a {
text-decoration: none;
color: #433F3A;
}
li.LSform_layout_active a {
color: #fff;
}
li.LSform_layout_active {
text-decoration: none;
color: #fff;
background-color: #cac9c4;
-moz-border-radius: 3px 3px 0px 0px;
border-radius: 3px 3px 0px 0px;
padding: 4px;
display: inline;
margin-right: 1px;
}
li.LSform_layout_current {
color: #fff;
background-color: #433F3A;
}
li.LSform_layout_errors {
background-color: #f59a67;
}
h2.LSform_layout_active {
display: none;
}
div.LSform_layout {
border: 1px solid #433F3A;
margin: 1em;
padding: 0.5em;
}
div.LSform_layout_active {
display: none;
margin-top: 4px;
}
div.LSform_layout_current {
display: block;
}
/*
* Architecture
*/
div.LSform {
margin-left: 1em;
}
dl.LSform {
margin: 0;
padding: 0;
}
.LSform dt {
position: relative;
left: 0.2em;
top: 1.2em;
width: 16em;
font-weight: bold;
font-size: 0.9em;
color: #433f3a;
}
dd.LSform {
margin-left: 16em;
padding: 0;
}
ul.LSform {
list-style-type: none;
padding: 0;
margin: 0;
}
ul.LSform li {
overflow: auto;
margin-bottom: 2px;
}
/*
* Champs du formulaire
*/
.LSform input[type=text], .LSform input[type=file], .LSform input[type=submit], .LSform input[type=password], .LSform select, .LSform textarea {
border: 1px solid #cac9c4;
width: 300px;
background-color: #dedede;
}
.LSform input[type=radio] {
width: undefinded;
}
input[type='submit'].LSform {
border: 1px outset #cac9c4;
margin-top: 1em;
margin-left: 6em;
width: 8em;
}
dd.LSform-errors {
color: #fff;
background-color: #f59a67;
width: 302px;
}
dt.LSform-errors {
color: #f59a67;
}
/* Bouton JS */
img.LSform-add-field-btn, img.LSform-remove-field-btn {
cursor: pointer;
}
/* Tips */
.tip-top {
color: #fff;
width: 139px;
z-index: 13000;
}
.tip-title {
font-weight: bold;
font-size: 11px;
margin: 0;
color: #dedede;
padding: 2px;
background: #33302b;
opacity: 0.8;
-moz-border-radius: 2px;
border-radius: 2px;
max-width: 500px;
text-align: justify;
}