89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
.tf-select, .tf-multiple, .tf-file, .tf-radio, .tf-checkbox, .tf-button {
|
|
cursor: default;
|
|
overflow: auto;
|
|
display: -moz-inline-box;
|
|
display: inline-block;
|
|
zoom: 1;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.tf-select .tf-selected {
|
|
float: left;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tf-select .tf-menu {
|
|
display: none;
|
|
position: absolute;
|
|
max-height: 173px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.tf-select.tf-opened .tf-menu {
|
|
display: block;
|
|
}
|
|
|
|
.tf-select .tf-button {
|
|
float: right;
|
|
}
|
|
|
|
.tf-select select,
|
|
.tf-multiple select {
|
|
position: absolute;
|
|
left: -1000000px;
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
}
|
|
|
|
.tf-select .tf-menu ul,
|
|
.tf-multiple ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.tf-select .tf-menu li,
|
|
.tf-multiple li {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.tf-multiple span,
|
|
.tf-select .tf-button span {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tf-textarea {
|
|
resize: none;
|
|
overflow: auto;
|
|
}
|
|
|
|
.tf-multiple {
|
|
max-height: 118px;
|
|
}
|
|
.tf-file input,
|
|
.tf-radio input,
|
|
.tf-checkbox input,
|
|
.tf-button input,
|
|
.tf-button button {
|
|
position: absolute;
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
outline: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.tf-file {
|
|
overflow: hidden;
|
|
}
|
|
.tf-file .tf-info {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
float: right;
|
|
}
|
|
.tf-file .tf-button {
|
|
float: right;
|
|
}
|