103 lines
1.7 KiB
CSS
103 lines
1.7 KiB
CSS
/*.fileinput-btn
|
|
{
|
|
color:#000;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
background:#f5f5f5;
|
|
line-height:11px;
|
|
padding:1px 3px 5px 3px;
|
|
border:1px solid #f5f5f5;
|
|
font-family: 'Arial';
|
|
cursor:pointer;
|
|
border-radius: 0;
|
|
margin-left: 10px;
|
|
text-shadow: none;
|
|
border-radius: 4px;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #CCC #CCC #B3B3B3;
|
|
padding: 4px 12px;
|
|
}
|
|
|
|
.fileinput-btn:hover
|
|
{
|
|
background-color:#f5f5f5;
|
|
border:1px solid #000;
|
|
}
|
|
*/
|
|
|
|
.fileinput-btn {
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin-top: 10px;
|
|
background: #2b2d8f;
|
|
text-shadow: none;
|
|
padding: 6px 20px;
|
|
height: auto;
|
|
}
|
|
|
|
.fileinput-btn:hover{
|
|
background: #5254a3;
|
|
}
|
|
|
|
.fileinput-btn input {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
opacity: 0;
|
|
-ms-filter: 'alpha(opacity=0)';
|
|
font-size: 200px;
|
|
direction: ltr;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Fixes for IE < 8 */
|
|
@media screen\9 {
|
|
.fileinput-btn input {
|
|
filter: alpha(opacity=0);
|
|
font-size: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.sx-form-preview {
|
|
float: left;
|
|
margin-right: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.sx-form-preview .sx-remove-photo {
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 2px;
|
|
|
|
}
|
|
|
|
.sx-form-preview .sx-move-photo {
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
border: 1px solid #fff;
|
|
background: rgba(250,250,250,.4);
|
|
}
|
|
|
|
.sx-form-preview .sx-move-photo:hover {
|
|
background: rgba(250,250,250,.7);
|
|
cursor: move;
|
|
}
|
|
|
|
.sx-form-preview .sx-move-photo img {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.well {
|
|
min-height: 20px;
|
|
padding: 19px;
|
|
margin-bottom: 20px;
|
|
background-color: #f5f5f5;
|
|
border: 1px solid #e3e3e3;
|
|
border-radius: 4px;
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
} |