Tyler Hallada
92ee93a3c9
Users keep getting confused about the webkit directory selection dialog that has unfortunate wording about "uploading" that I can't change. Hopefully this new dialog that displays before the dialog I can't control will help users understand that nothing is getting uploaded anywhere. The message can be ignored in the future with a checkbox that sets a cookie.
36 lines
428 B
CSS
36 lines
428 B
CSS
.no-top-margin {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.step {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.break-word {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.dialog {
|
|
top: 12px;
|
|
z-index: 8;
|
|
background-color: #fbefd5;
|
|
box-shadow: 0 0 1em black;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.dialog label {
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dialog menu {
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.dialog menu button {
|
|
font-size: 14px;
|
|
padding: 4px 8px;
|
|
}
|