166 lines
3.1 KiB
CSS
166 lines
3.1 KiB
CSS
/*
|
|
$Id$
|
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
|
Copyright (C) 2010 Cedric Dugas and Olivier Refalo
|
|
2011 Roland Gruber
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
.inputContainer {
|
|
position: relative;
|
|
float: left;
|
|
}
|
|
|
|
.formError {
|
|
position: absolute;
|
|
top: 300px;
|
|
left: 300px;
|
|
display: block;
|
|
z-index: 5000;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ajaxSubmit {
|
|
padding: 20px;
|
|
background: #55ea55;
|
|
border: 1px solid #999;
|
|
display: none
|
|
}
|
|
|
|
.formError .formErrorContent {
|
|
width: 100%;
|
|
background: #ee4f01;
|
|
position:relative;
|
|
z-index:5001;
|
|
color: #fff;
|
|
font-family: tahoma;
|
|
font-size: 12px;
|
|
border: 2px solid #ddd;
|
|
box-shadow: 0 0 6px #000;
|
|
-moz-box-shadow: 0 0 6px #000;
|
|
-webkit-box-shadow: 0 0 6px #000;
|
|
padding: 4px 10px 4px 10px;
|
|
border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
-webkit-border-radius: 6px;
|
|
}
|
|
|
|
.greenPopup .formErrorContent {
|
|
background: #33be40;
|
|
}
|
|
|
|
.blackPopup .formErrorContent {
|
|
background: #393939;
|
|
color: #FFF;
|
|
}
|
|
|
|
.formError .formErrorArrow {
|
|
width: 15px;
|
|
margin: -2px 0 0 13px;
|
|
position:relative;
|
|
z-index: 5006;
|
|
}
|
|
|
|
.formError .formErrorArrowBottom {
|
|
box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
margin: 0px 0 0 12px;
|
|
top:2px;
|
|
}
|
|
|
|
.formError .formErrorArrow div {
|
|
border-left: 2px solid #ddd;
|
|
border-right: 2px solid #ddd;
|
|
box-shadow: 0 2px 3px #444;
|
|
-moz-box-shadow: 0 2px 3px #444;
|
|
-webkit-box-shadow: 0 2px 3px #444;
|
|
font-size: 0px;
|
|
height: 1px;
|
|
background: #ee4f01;
|
|
margin: 0 auto;
|
|
line-height: 0;
|
|
font-size: 0;
|
|
display: block;
|
|
}
|
|
|
|
.formError .formErrorArrowBottom div {
|
|
box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
}
|
|
|
|
.greenPopup .formErrorArrow div {
|
|
background: #33be40;
|
|
}
|
|
|
|
.blackPopup .formErrorArrow div {
|
|
background: #393939;
|
|
color: #FFF;
|
|
}
|
|
|
|
.formError .formErrorArrow .line10 {
|
|
width: 15px;
|
|
border: none;
|
|
}
|
|
|
|
.formError .formErrorArrow .line9 {
|
|
width: 13px;
|
|
border: none;
|
|
}
|
|
|
|
.formError .formErrorArrow .line8 {
|
|
width: 11px;
|
|
}
|
|
|
|
.formError .formErrorArrow .line7 {
|
|
width: 9px;
|
|
}
|
|
|
|
.formError .formErrorArrow .line6 {
|
|
width: 7px;
|
|
}
|
|
|
|
.formError .formErrorArrow .line5 {
|
|
width: 5px;
|
|
}
|
|
|
|
.formError .formErrorArrow .line4 {
|
|
width: 3px;
|
|
}
|
|
|
|
.formError .formErrorArrow .line3 {
|
|
width: 1px;
|
|
border-left: 2px solid #ddd;
|
|
border-right: 2px solid #ddd;
|
|
border-bottom: 0 solid #ddd;
|
|
}
|
|
|
|
.formError .formErrorArrow .line2 {
|
|
width: 3px;
|
|
border: none;
|
|
background: #ddd;
|
|
}
|
|
|
|
.formError .formErrorArrow .line1 {
|
|
width: 1px;
|
|
border: none;
|
|
background: #ddd;
|
|
}
|