mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-31 05:27:55 -05:00
155 lines
1.9 KiB
CSS
155 lines
1.9 KiB
CSS
.field_row
|
|
{
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
.field_row label
|
|
{
|
|
float:left;
|
|
width:100px;
|
|
text-align:left;
|
|
line-height:2.3;
|
|
}
|
|
|
|
.field_row label.wide
|
|
{
|
|
width:150px;
|
|
}
|
|
|
|
label.required
|
|
{
|
|
color:red;
|
|
}
|
|
|
|
.form_field
|
|
{
|
|
float:left;
|
|
padding: 3px;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.form_field input, .form_field textarea
|
|
{
|
|
border: 1px solid #ccc;
|
|
padding: 4px;
|
|
}
|
|
|
|
.submit_button
|
|
{
|
|
padding: 5px;
|
|
color: #fff;
|
|
background-color: #0a6184;
|
|
border: 2px solid #ddd;
|
|
}
|
|
|
|
.delete_button
|
|
{
|
|
padding: 5px;
|
|
color: #fff;
|
|
background-color: #ea4729;
|
|
border: 2px solid #ddd;
|
|
}
|
|
.small_button
|
|
{
|
|
position:relative;
|
|
width:95px;
|
|
height:30px;
|
|
background-image: url(../images/small_action_button.jpg);
|
|
background-repeat:no-repeat;
|
|
cursor:pointer;
|
|
}
|
|
.small_button span
|
|
{
|
|
position:absolute;
|
|
width:100%;
|
|
top:30%;
|
|
left:0%;
|
|
color:#FFF;
|
|
font-size:0.9em;
|
|
font-weight:bold;
|
|
text-align:center;
|
|
}
|
|
|
|
.float_left
|
|
{
|
|
float:left;
|
|
}
|
|
|
|
.float_right
|
|
{
|
|
float:right;
|
|
}
|
|
|
|
.big_button
|
|
{
|
|
position:relative;
|
|
width:119px;
|
|
height:45px;
|
|
background-image: url(../images/big_action_button.jpg);
|
|
background-repeat:no-repeat;
|
|
cursor:pointer;
|
|
}
|
|
|
|
.big_button span
|
|
{
|
|
position:absolute;
|
|
width:100%;
|
|
top:35%;
|
|
color:#FFF;
|
|
font-size:0.9em;
|
|
font-weight:bold;
|
|
text-align:center;
|
|
}
|
|
|
|
|
|
.warning_message
|
|
{
|
|
text-align:center;
|
|
background-color:#fffcdd;
|
|
border:1px solid #fff4aa;
|
|
font-weight:bold;
|
|
}
|
|
|
|
.error_message
|
|
{
|
|
text-align:center;
|
|
background-color:#f68383;
|
|
border:1px solid #da3232;
|
|
font-weight:bold;
|
|
}
|
|
|
|
.warning_mesage
|
|
{
|
|
text-align:center;
|
|
background-color:#FBEC5D;
|
|
border:1px solid #da3232;
|
|
font-weight:bold;
|
|
}
|
|
|
|
.success_message
|
|
{
|
|
text-align:center;
|
|
background-color:#e1ffdd;
|
|
border:1px solid #2ca71c;
|
|
font-weight:bold;
|
|
}
|
|
|
|
input
|
|
{
|
|
font-family: Arial;
|
|
padding: 3px;
|
|
}
|
|
|
|
.clearfix:after
|
|
{
|
|
content: ".";
|
|
display: block;
|
|
clear: both;
|
|
visibility: hidden;
|
|
line-height: 0;
|
|
height: 0;
|
|
}
|
|
.clearfix { display: inline-block; }
|
|
html[xmlns] .clearfix { display: block; }
|
|
* html .clearfix { height: 1%; }
|