58 lines
947 B
CSS
58 lines
947 B
CSS
#user_sql .main {
|
|
overflow: auto;
|
|
}
|
|
|
|
#user_sql .main > div {
|
|
float: left;
|
|
width: 380px;
|
|
}
|
|
|
|
#user_sql .main div > label > span {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
width: 120px;
|
|
}
|
|
|
|
#user_sql .main div > label > input,
|
|
#user_sql .main div > label > select {
|
|
width: 257px;
|
|
}
|
|
|
|
#user_sql .main div > input[type="checkbox"] {
|
|
min-height: auto;
|
|
}
|
|
|
|
#user_sql .main .button-right {
|
|
overflow: auto;
|
|
}
|
|
|
|
#user_sql .main .button-right > input[type="submit"] {
|
|
float: right;
|
|
}
|
|
|
|
#user_sql .msg {
|
|
left: 0;
|
|
padding: 3px;
|
|
position: fixed;
|
|
text-align: center;
|
|
width: 100%;
|
|
z-index: 100;
|
|
}
|
|
|
|
#user_sql .msg.error {
|
|
background-color: #d2322d;
|
|
color: #fff;
|
|
}
|
|
|
|
#user_sql .msg.success {
|
|
background-color: #47a447;
|
|
color: #fff;
|
|
}
|
|
|
|
#user_sql .msg.waiting {
|
|
background-color: #ff8f00;
|
|
color: #fff;
|
|
} |