mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
2 years ago
|
.ui.modal.gitea-confirm-modal {
|
||
|
max-width: min(800px, 90vw);
|
||
|
width: fit-content;
|
||
|
}
|
||
|
|
||
|
.ui.modal > .header {
|
||
|
/* can't use display:flex, because some headers have space-separated elements, eg: delete branch modal */
|
||
|
color: var(--color-text-dark);
|
||
|
background: var(--color-body);
|
||
|
border-color: var(--color-secondary);
|
||
|
border-top-left-radius: var(--border-radius);
|
||
|
border-top-right-radius: var(--border-radius);
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
.ui.modal > .header .svg {
|
||
|
vertical-align: middle;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
/* Gitea sometimes use a form in a modal dialog, then the "positive" button could submit the form directly */
|
||
|
|
||
|
.ui.modal > .content,
|
||
|
.ui.modal > form > .content {
|
||
|
background: var(--color-body);
|
||
|
}
|
||
|
|
||
|
.ui.modal > .actions,
|
||
|
.ui.modal > form > .actions {
|
||
|
background: var(--color-secondary-bg);
|
||
|
border-color: var(--color-secondary);
|
||
|
|
||
|
/* these styles are from Fomantic UI */
|
||
|
padding: 1rem;
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
/* positive/negative action buttons */
|
||
|
.ui.modal .actions > .ui.button {
|
||
|
display: inline-flex;
|
||
|
align-items: center;
|
||
|
padding: 10px 12px 10px 10px;
|
||
|
}
|
||
|
|
||
|
.ui.modal .actions > .ui.button .svg {
|
||
|
margin-right: 5px;
|
||
|
}
|