Spaces:
Sleeping
Sleeping
File size: 1,240 Bytes
2a2105a 2303095 2a2105a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | .input-node {
border: 1px dashed #aaa;
border-radius: 8px;
background: #fafafa;
width: 250px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.input-node-header {
background: #f0f0f0;
padding: 10px;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
border-bottom: 1px solid #e0e0e0;
font-size: 14px;
}
.input-node-content {
padding: 15px;
}
.input-node-content p {
font-size: 12px;
color: #666;
margin-top: 0;
margin-bottom: 10px;
}
.input-node-content input {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 12px;
margin-bottom: 10px;
}
.input-node-content button {
width: 100%;
padding: 8px;
font-size: 13px;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.input-node-content button:hover {
background-color: #218838;
}
.input-node.error {
border-color: #dc3545;
}
.input-node.error .input-node-header {
background-color: #f8d7da;
color: #721c24;
border-bottom-color: #f5c6cb;
}
.node-error-message {
font-size: 12px;
color: #721c24;
background-color: #f8d7da;
padding: 8px;
border-radius: 4px;
margin-top: 10px;
text-align: center;
}
|