2023-04-09 16:18:45 +00:00
|
|
|
.ui.input textarea,
|
|
|
|
.ui.form textarea,
|
|
|
|
.ui.form input:not([type]),
|
|
|
|
.ui.form input[type="date"],
|
|
|
|
.ui.form input[type="datetime-local"],
|
|
|
|
.ui.form input[type="email"],
|
|
|
|
.ui.form input[type="number"],
|
|
|
|
.ui.form input[type="password"],
|
|
|
|
.ui.form input[type="search"],
|
|
|
|
.ui.form input[type="tel"],
|
|
|
|
.ui.form input[type="time"],
|
|
|
|
.ui.form input[type="text"],
|
|
|
|
.ui.form input[type="file"],
|
|
|
|
.ui.form input[type="url"] {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2023-03-15 02:20:19 +00:00
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
.ui.input > input,
|
|
|
|
.ui.form input:not([type]),
|
|
|
|
.ui.form select,
|
|
|
|
.ui.form textarea,
|
|
|
|
.ui.form input[type="date"],
|
|
|
|
.ui.form input[type="datetime-local"],
|
|
|
|
.ui.form input[type="email"],
|
|
|
|
.ui.form input[type="file"],
|
|
|
|
.ui.form input[type="number"],
|
|
|
|
.ui.form input[type="password"],
|
|
|
|
.ui.form input[type="search"],
|
|
|
|
.ui.form input[type="tel"],
|
|
|
|
.ui.form input[type="text"],
|
|
|
|
.ui.form input[type="time"],
|
|
|
|
.ui.form input[type="url"],
|
2024-03-29 04:56:01 +00:00
|
|
|
.ui.selection.dropdown {
|
2023-03-15 02:20:19 +00:00
|
|
|
background: var(--color-input-background);
|
|
|
|
border-color: var(--color-input-border);
|
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
2024-03-14 23:24:59 +00:00
|
|
|
/* fix fomantic small dropdown having inconsistent padding with input */
|
|
|
|
.ui.small.selection.dropdown {
|
2024-06-17 18:58:24 +00:00
|
|
|
padding: .67857143em 1.6em .67857143em 1em;
|
2024-03-14 23:24:59 +00:00
|
|
|
}
|
|
|
|
|
2023-03-15 02:20:19 +00:00
|
|
|
input:hover,
|
|
|
|
textarea:hover,
|
|
|
|
.ui.input input:hover,
|
|
|
|
.ui.form input:not([type]):hover,
|
|
|
|
.ui.form select:hover,
|
|
|
|
.ui.form textarea:hover,
|
|
|
|
.ui.form input[type="date"]:hover,
|
|
|
|
.ui.form input[type="datetime-local"]:hover,
|
|
|
|
.ui.form input[type="email"]:hover,
|
|
|
|
.ui.form input[type="file"]:hover,
|
|
|
|
.ui.form input[type="number"]:hover,
|
|
|
|
.ui.form input[type="password"]:hover,
|
|
|
|
.ui.form input[type="search"]:hover,
|
|
|
|
.ui.form input[type="tel"]:hover,
|
|
|
|
.ui.form input[type="text"]:hover,
|
|
|
|
.ui.form input[type="time"]:hover,
|
|
|
|
.ui.form input[type="url"]:hover,
|
2024-03-29 04:56:01 +00:00
|
|
|
.ui.selection.dropdown:hover {
|
2023-03-15 02:20:19 +00:00
|
|
|
background: var(--color-input-background);
|
|
|
|
border-color: var(--color-input-border-hover);
|
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
.ui.input input:focus,
|
|
|
|
.ui.form input:not([type]):focus,
|
|
|
|
.ui.form select:focus,
|
|
|
|
.ui.form textarea:focus,
|
|
|
|
.ui.form input[type="date"]:focus,
|
|
|
|
.ui.form input[type="datetime-local"]:focus,
|
|
|
|
.ui.form input[type="email"]:focus,
|
|
|
|
.ui.form input[type="file"]:focus,
|
|
|
|
.ui.form input[type="number"]:focus,
|
|
|
|
.ui.form input[type="password"]:focus,
|
|
|
|
.ui.form input[type="search"]:focus,
|
|
|
|
.ui.form input[type="tel"]:focus,
|
|
|
|
.ui.form input[type="text"]:focus,
|
|
|
|
.ui.form input[type="time"]:focus,
|
|
|
|
.ui.form input[type="url"]:focus,
|
2024-03-29 04:56:01 +00:00
|
|
|
.ui.selection.dropdown:focus {
|
2023-03-15 02:20:19 +00:00
|
|
|
background: var(--color-input-background);
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.form .field > label,
|
|
|
|
.ui.form .inline.fields > label,
|
|
|
|
.ui.form .inline.fields .field > label,
|
|
|
|
.ui.form .inline.fields .field > p,
|
|
|
|
.ui.form .inline.field > label,
|
2024-03-29 04:56:01 +00:00
|
|
|
.ui.form .inline.field > p {
|
2023-03-15 02:20:19 +00:00
|
|
|
color: var(--color-text);
|
|
|
|
}
|
|
|
|
|
2023-03-31 08:24:47 +00:00
|
|
|
.ui.form .required.fields:not(.grouped) > .field > label::after,
|
|
|
|
.ui.form .required.fields.grouped > label::after,
|
|
|
|
.ui.form .required.field > label::after,
|
|
|
|
.ui.form label.required::after {
|
|
|
|
color: var(--color-red);
|
|
|
|
}
|
|
|
|
|
2024-03-29 04:56:01 +00:00
|
|
|
.ui.input {
|
2023-03-15 02:20:19 +00:00
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* match <select> padding to <input> */
|
|
|
|
.ui.form select {
|
|
|
|
padding: 0.67857143em 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form .help {
|
2024-04-29 23:46:09 +00:00
|
|
|
color: var(--color-secondary-dark-8);
|
2023-03-15 02:20:19 +00:00
|
|
|
padding-bottom: 0.6em;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#create-page-form form {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#create-page-form form .ui.message {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
#create-page-form form {
|
|
|
|
width: 800px !important;
|
|
|
|
}
|
|
|
|
#create-page-form form .header {
|
|
|
|
padding-left: 280px !important;
|
|
|
|
}
|
2023-08-25 06:47:59 +00:00
|
|
|
#create-page-form form .inline.field > label {
|
2023-03-15 02:20:19 +00:00
|
|
|
text-align: right;
|
|
|
|
width: 250px !important;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
#create-page-form form .help {
|
|
|
|
margin-left: 265px !important;
|
|
|
|
}
|
|
|
|
#create-page-form form .optional .title {
|
|
|
|
margin-left: 250px !important;
|
|
|
|
}
|
|
|
|
#create-page-form form .inline.field > input,
|
|
|
|
#create-page-form form .inline.field > textarea {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
#create-page-form form .optional .title {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
#create-page-form form .inline.field > label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-25 06:47:59 +00:00
|
|
|
.m-captcha-style {
|
|
|
|
width: 100%;
|
|
|
|
height: 5em;
|
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2023-03-15 02:20:19 +00:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.g-recaptcha-style,
|
|
|
|
.h-captcha-style {
|
|
|
|
margin: 0 auto !important;
|
|
|
|
width: 304px;
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
.g-recaptcha-style iframe,
|
|
|
|
.h-captcha-style iframe {
|
2023-08-28 19:43:59 +00:00
|
|
|
border-radius: var(--border-radius) !important;
|
2023-03-15 02:20:19 +00:00
|
|
|
width: 302px !important;
|
|
|
|
height: 76px !important;
|
|
|
|
}
|
2023-08-25 06:47:59 +00:00
|
|
|
.m-captcha-style {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2023-03-15 02:20:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-height: 575px) {
|
|
|
|
#rc-imageselect,
|
|
|
|
.g-recaptcha-style,
|
|
|
|
.h-captcha-style {
|
|
|
|
transform: scale(0.77);
|
|
|
|
transform-origin: 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user.forgot.password form,
|
|
|
|
.user.reset.password form,
|
|
|
|
.user.signup form {
|
|
|
|
margin: auto;
|
|
|
|
width: 700px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user.activate form .ui.message,
|
|
|
|
.user.forgot.password form .ui.message,
|
|
|
|
.user.reset.password form .ui.message,
|
|
|
|
.user.link-account form .ui.message,
|
|
|
|
.user.signin form .ui.message,
|
|
|
|
.user.signup form .ui.message {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.user.activate form,
|
|
|
|
.user.forgot.password form,
|
|
|
|
.user.reset.password form,
|
|
|
|
.user.link-account form,
|
|
|
|
.user.signin form,
|
|
|
|
.user.signup form {
|
|
|
|
width: 800px !important;
|
|
|
|
}
|
|
|
|
.user.activate form .header,
|
|
|
|
.user.forgot.password form .header,
|
|
|
|
.user.reset.password form .header,
|
|
|
|
.user.link-account form .header,
|
|
|
|
.user.signin form .header,
|
|
|
|
.user.signup form .header {
|
|
|
|
padding-left: 280px !important;
|
|
|
|
}
|
2024-03-06 14:20:26 +00:00
|
|
|
.user.activate form .inline.field > label {
|
2023-03-15 02:20:19 +00:00
|
|
|
text-align: right;
|
|
|
|
width: 250px !important;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
.user.activate form .help,
|
|
|
|
.user.forgot.password form .help,
|
|
|
|
.user.reset.password form .help,
|
|
|
|
.user.link-account form .help,
|
|
|
|
.user.signin form .help,
|
|
|
|
.user.signup form .help {
|
|
|
|
margin-left: 265px !important;
|
|
|
|
}
|
|
|
|
.user.activate form .optional .title,
|
|
|
|
.user.forgot.password form .optional .title,
|
|
|
|
.user.reset.password form .optional .title,
|
|
|
|
.user.link-account form .optional .title,
|
|
|
|
.user.signin form .optional .title,
|
|
|
|
.user.signup form .optional .title {
|
|
|
|
margin-left: 250px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.user.activate form .optional .title,
|
|
|
|
.user.forgot.password form .optional .title,
|
|
|
|
.user.reset.password form .optional .title,
|
|
|
|
.user.link-account form .optional .title,
|
|
|
|
.user.signin form .optional .title,
|
|
|
|
.user.signup form .optional .title {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.user.activate form .inline.field > label,
|
|
|
|
.user.forgot.password form .inline.field > label,
|
|
|
|
.user.reset.password form .inline.field > label,
|
|
|
|
.user.link-account form .inline.field > label,
|
|
|
|
.user.signin form .inline.field > label,
|
|
|
|
.user.signup form .inline.field > label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user.activate form .header,
|
|
|
|
.user.forgot.password form .header,
|
|
|
|
.user.reset.password form .header,
|
|
|
|
.user.link-account form .header,
|
|
|
|
.user.signin form .header,
|
|
|
|
.user.signup form .header {
|
|
|
|
padding-left: 0 !important;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user.activate form .inline.field > label,
|
|
|
|
.user.forgot.password form .inline.field > label,
|
|
|
|
.user.reset.password form .inline.field > label,
|
|
|
|
.user.link-account form .inline.field > label,
|
|
|
|
.user.signin form .inline.field > label,
|
|
|
|
.user.signup form .inline.field > label {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.user.activate form .inline.field > label,
|
|
|
|
.user.forgot.password form .inline.field > label,
|
|
|
|
.user.reset.password form .inline.field > label,
|
|
|
|
.user.link-account form .inline.field > label,
|
|
|
|
.user.signin form .inline.field > label,
|
2024-04-07 12:36:33 +00:00
|
|
|
.user.signup form .inline.field > label {
|
2023-03-15 02:20:19 +00:00
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user.activate form input[type="number"],
|
|
|
|
.user.forgot.password form input[type="number"],
|
|
|
|
.user.reset.password form input[type="number"],
|
|
|
|
.user.link-account form input[type="number"],
|
|
|
|
.user.signin form input[type="number"],
|
|
|
|
.user.signup form input[type="number"] {
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user.activate form input::-webkit-outer-spin-button,
|
|
|
|
.user.forgot.password form input::-webkit-outer-spin-button,
|
|
|
|
.user.reset.password form input::-webkit-outer-spin-button,
|
|
|
|
.user.link-account form input::-webkit-outer-spin-button,
|
|
|
|
.user.signin form input::-webkit-outer-spin-button,
|
|
|
|
.user.signup form input::-webkit-outer-spin-button,
|
|
|
|
.user.activate form input::-webkit-inner-spin-button,
|
|
|
|
.user.forgot.password form input::-webkit-inner-spin-button,
|
|
|
|
.user.reset.password form input::-webkit-inner-spin-button,
|
|
|
|
.user.link-account form input::-webkit-inner-spin-button,
|
|
|
|
.user.signin form input::-webkit-inner-spin-button,
|
|
|
|
.user.signup form input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository.new.repo form,
|
|
|
|
.repository.new.migrate form,
|
|
|
|
.repository.new.fork form {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository.new.repo form .ui.message,
|
|
|
|
.repository.new.migrate form .ui.message,
|
|
|
|
.repository.new.fork form .ui.message {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.repository.new.repo form,
|
|
|
|
.repository.new.migrate form,
|
|
|
|
.repository.new.fork form {
|
|
|
|
width: 800px !important;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .header,
|
|
|
|
.repository.new.migrate form .header,
|
|
|
|
.repository.new.fork form .header {
|
|
|
|
padding-left: 280px !important;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .inline.field > label,
|
|
|
|
.repository.new.migrate form .inline.field > label,
|
2023-08-25 06:47:59 +00:00
|
|
|
.repository.new.fork form .inline.field > label {
|
2023-03-15 02:20:19 +00:00
|
|
|
text-align: right;
|
|
|
|
width: 250px !important;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .help,
|
|
|
|
.repository.new.migrate form .help,
|
|
|
|
.repository.new.fork form .help {
|
|
|
|
margin-left: 265px !important;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .optional .title,
|
|
|
|
.repository.new.migrate form .optional .title,
|
|
|
|
.repository.new.fork form .optional .title {
|
|
|
|
margin-left: 250px !important;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .inline.field > input,
|
|
|
|
.repository.new.migrate form .inline.field > input,
|
|
|
|
.repository.new.fork form .inline.field > input,
|
|
|
|
.repository.new.repo form .inline.field > textarea,
|
|
|
|
.repository.new.migrate form .inline.field > textarea,
|
|
|
|
.repository.new.fork form .inline.field > textarea {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.repository.new.repo form .optional .title,
|
|
|
|
.repository.new.migrate form .optional .title,
|
|
|
|
.repository.new.fork form .optional .title {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .inline.field > label,
|
|
|
|
.repository.new.migrate form .inline.field > label,
|
|
|
|
.repository.new.fork form .inline.field > label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository.new.repo form .dropdown .text,
|
|
|
|
.repository.new.migrate form .dropdown .text,
|
|
|
|
.repository.new.fork form .dropdown .text {
|
|
|
|
margin-right: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository.new.repo form .header,
|
|
|
|
.repository.new.migrate form .header,
|
|
|
|
.repository.new.fork form .header {
|
|
|
|
padding-left: 0 !important;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository.new.repo form .selection.dropdown,
|
|
|
|
.repository.new.migrate form .selection.dropdown,
|
2023-03-18 16:07:59 +00:00
|
|
|
.repository.new.fork form .selection.dropdown,
|
|
|
|
.repository.new.fork form .field a {
|
2023-03-15 02:20:19 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
width: 50% !important;
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.repository.new.repo form label,
|
|
|
|
.repository.new.migrate form label,
|
|
|
|
.repository.new.fork form label,
|
2024-04-07 12:36:33 +00:00
|
|
|
.repository.new.repo form .inline.field > input,
|
|
|
|
.repository.new.migrate form .inline.field > input,
|
|
|
|
.repository.new.fork form .inline.field > input,
|
2023-03-18 16:07:59 +00:00
|
|
|
.repository.new.fork form .field a,
|
2023-03-15 02:20:19 +00:00
|
|
|
.repository.new.repo form .selection.dropdown,
|
|
|
|
.repository.new.migrate form .selection.dropdown,
|
|
|
|
.repository.new.fork form .selection.dropdown {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
.repository.new.repo form .field button,
|
|
|
|
.repository.new.migrate form .field button,
|
|
|
|
.repository.new.fork form .field button,
|
|
|
|
.repository.new.repo form .field a,
|
2023-03-18 16:07:59 +00:00
|
|
|
.repository.new.migrate form .field a {
|
2023-03-15 02:20:19 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.repository.new.repo .ui.form #auto-init {
|
|
|
|
margin-left: 265px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository.new.repo .ui.form .selection.dropdown:not(.owner) {
|
|
|
|
width: 50% !important;
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.repository.new.repo .ui.form .selection.dropdown:not(.owner) {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-05 17:10:09 +00:00
|
|
|
/* form fields with additional content besides their label, used on login form
|
|
|
|
* use like <div class="field"><label/><a/><input/></div> */
|
|
|
|
.form-field-content-aside-label {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
.form-field-content-aside-label > *:nth-child(2) {
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
.form-field-content-aside-label input {
|
|
|
|
grid-column: span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.form .field > .selection.dropdown {
|
|
|
|
min-width: 14em; /* matches the default min width */
|
|
|
|
}
|
|
|
|
|
2023-03-15 02:20:19 +00:00
|
|
|
.new.webhook form .help {
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new.webhook .events.fields .column {
|
|
|
|
padding-left: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.githook textarea {
|
|
|
|
font-family: var(--fonts-monospace);
|
|
|
|
}
|
|
|
|
|
2023-06-09 09:10:51 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.new.org .ui.form .field button,
|
|
|
|
.new.org .ui.form .field a {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-07-06 23:37:38 +00:00
|
|
|
.new.org .ui.form .field input:not([type="checkbox"], [type="radio"]) {
|
2023-03-15 02:20:19 +00:00
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
}
|