41 lines
674 B
CSS
41 lines
674 B
CSS
/* Tailscale Funnel Plugin Styles */
|
|
|
|
#tailscale_funnel_status {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#tailscale_funnel_status.enabled {
|
|
color: #5cb85c;
|
|
}
|
|
|
|
#tailscale_funnel_status.disabled {
|
|
color: #777;
|
|
}
|
|
|
|
#tailscale_funnel_status.error {
|
|
color: #d9534f;
|
|
}
|
|
|
|
#tailscale_funnel_toggle_btn {
|
|
min-width: 120px;
|
|
}
|
|
|
|
#tailscale_funnel_toggle_btn.enabled {
|
|
background-color: #5cb85c;
|
|
border-color: #4cae4c;
|
|
}
|
|
|
|
#tailscale_funnel_toggle_btn.disabled {
|
|
background-color: #777;
|
|
border-color: #666;
|
|
}
|
|
|
|
#tailscale_funnel_url {
|
|
font-family: monospace;
|
|
}
|
|
|
|
.tailscale-funnel-warning {
|
|
background-color: #fcf8e3;
|
|
border-color: #faebcc;
|
|
color: #8a6d3b;
|
|
} |