48 lines
953 B
CSS
48 lines
953 B
CSS
/*+*******************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
******************************************************************************/
|
|
|
|
/* From http://www.quirksmode.org/css/forms.html*/
|
|
.form_label .form_input{
|
|
display: block;
|
|
/*width: 150px;*/
|
|
float: left;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.form_input{
|
|
width: 500px;
|
|
}
|
|
|
|
.form_label {
|
|
text-align: right;
|
|
width: 75px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.form_br {
|
|
clear: left;
|
|
}
|
|
|
|
.value{
|
|
display: inline-block;
|
|
width: 100px;
|
|
}
|
|
|
|
.operation{
|
|
width: 150px;
|
|
}
|
|
|
|
.link{
|
|
text-decoration: underline
|
|
}
|
|
.link:hover{
|
|
cursor:pointer;
|
|
}
|
|
|