Spaces:
Sleeping
Sleeping
File size: 1,419 Bytes
fe90915 | 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 74 | .token-container {
position: relative;
z-index: 1100;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.token-button {
background-color: #5464e2;
color: white;
border: none;
border-radius: 4px;
padding: 8px 12px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.2s;
}
.token-button:hover {
background-color: #4455d5;
}
.token-input-container {
position: absolute;
right: 0;
top: 100%;
margin-top: 5px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 10px;
width: 280px;
}
.token-input {
width: 100%;
padding: 8px;
margin-bottom: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
.token-actions {
display: flex;
justify-content: flex-end;
gap: 8px;
}
.token-save, .token-cancel {
padding: 6px 12px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
.token-save {
background-color: #4caf50;
color: white;
border: none;
}
.token-save:hover {
background-color: #45a049;
}
.token-cancel {
background-color: #f5f5f5;
border: 1px solid #ddd;
color: #333;
}
.token-cancel:hover {
background-color: #e9e9e9;
} |