tfp
Version:
A Web UI framework for TaskBuilder
115 lines • 2.29 kB
CSS
.tfp-dataset {
border: 1px solid #999999;
background-color: #333333;
white-space: nowrap;
overflow-x: hidden;
overflow-y: hidden;
}
.tfp-dataset-header {
position: absolute;
left: 0;
right: 0;
height: 30px;
background-color: #444444;
border-bottom: 1px solid #999999;
overflow-x: hidden;
overflow-y: hidden;
}
.tfp-dataset-toolbar {
width: 100%;
height: 40px;
}
.tfp-dataset-toolbar div {
float: left;
height: 30px;
line-height: 30px;
text-align: center;
margin-top: 5px;
margin-left: 10px;
padding-left: 15px;
padding-right: 15px;
background-color: #0066ff;
color: #FFFFFF;
cursor: pointer;
}
.tfp-dataset-titlerow {
height: 30px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
flex-wrap: nowrap;
}
.tfp-dataset-titlerow div {
flex-grow: 0;
flex-shrink: 0;
height: 30px;
line-height: 30px;
color: #FFF;
text-align: center;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.tfp-dataset-list {
position: absolute;
left: 0;
right: 0;
bottom: 0;
overflow-x: auto;
overflow-y: scroll;
}
.tfp-dataset-row {
height: 26px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
flex-wrap: nowrap;
}
.tfp-dataset-row > div {
flex-grow: 0;
flex-shrink: 0;
height: 26px;
}
.tfp-dataset-row div img {
float: left;
margin-left: 3px;
margin-top:2px;
cursor:pointer;
}
.tfp-dataset-row input[type=text],
.tfp-dataset-row input[type=password],
.tfp-dataset-row input[type=number],
.tfp-dataset-row select {
width: calc(100% - 2px);
height: 24px;
border: 1px solid #999;
margin-top: 2px;
margin-left: 1px;
background-color: #222;
color: #FFF;
padding-left: 1px;
padding-right: 1px;
}
.tfp-dataset-row input[readonly] {
background-color: #333333;
}
.tfp-dataset-row .switch {
margin: 5px;
width: 28px;
height: 16px;
background-color: #999999;
border-radius: 8px;
cursor: pointer;
display: inline-block;
}
.tfp-dataset-row .switch div
{
float: left;
width:18px;
height:16px;
background-color:#666666;
border-radius: 7px;
margin: 0;
}