Files
Oxicloud/static/css/components/shareDialog.css
T

69 lines
1006 B
CSS
Raw Normal View History

.permission-options {
2026-04-07 22:48:59 +02:00
display: flex;
gap: 15px;
margin-top: 5px;
}
.permission-option {
2026-04-07 22:48:59 +02:00
display: flex;
align-items: center;
gap: 5px;
}
.existing-share-item {
2026-04-07 22:48:59 +02:00
background-color: #f8f9fa;
border-radius: 4px;
padding: 10px;
margin-bottom: 10px;
}
.share-url {
2026-04-07 22:48:59 +02:00
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 5px;
color: #1565c0;
}
.share-info {
2026-04-07 22:48:59 +02:00
font-size: 11px;
display: flex;
gap: 15px;
margin-bottom: 10px;
color: #757575;
}
.share-protected {
2026-04-07 22:48:59 +02:00
color: #1565c0;
}
.share-expiration {
2026-04-07 22:48:59 +02:00
color: #b71c1c;
}
.share-actions {
2026-04-07 22:48:59 +02:00
display: flex;
gap: 5px;
justify-content: flex-end;
}
.share-link-actions {
2026-04-07 22:48:59 +02:00
display: flex;
gap: 10px;
margin-top: 5px;
}
.btn-small {
2026-04-07 22:48:59 +02:00
font-size: 12px;
padding: 5px 10px;
}
#notification-message {
2026-04-07 22:48:59 +02:00
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
resize: vertical;
}