2020-11-12 10:59:33 -05:00
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
.ui.input > input,
|
|
|
|
.ui.form input:not([type]),
|
2021-04-03 04:37:32 -04:00
|
|
|
.ui.form select,
|
2020-11-12 10:59:33 -05:00
|
|
|
.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"],
|
|
|
|
.ui.selection.dropdown,
|
|
|
|
.ui.checkbox label::before,
|
|
|
|
.ui.checkbox input:checked ~ label::before,
|
2021-11-10 20:52:16 -05:00
|
|
|
.ui.checkbox input:not([type="radio"]):indeterminate ~ label::before {
|
2020-11-12 10:59:33 -05:00
|
|
|
background: var(--color-input-background);
|
|
|
|
border-color: var(--color-input-border);
|
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
input:hover,
|
|
|
|
textarea:hover,
|
|
|
|
.ui.input input:hover,
|
|
|
|
.ui.form input:not([type]):hover,
|
2021-04-03 04:37:32 -04:00
|
|
|
.ui.form select:hover,
|
2020-11-12 10:59:33 -05:00
|
|
|
.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,
|
|
|
|
.ui.selection.dropdown:hover,
|
|
|
|
.ui.checkbox label:hover::before,
|
|
|
|
.ui.checkbox label:active::before,
|
|
|
|
.ui.radio.checkbox label::after,
|
|
|
|
.ui.radio.checkbox input:focus ~ label::before,
|
|
|
|
.ui.radio.checkbox input:checked ~ label::before {
|
|
|
|
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,
|
2021-04-03 04:37:32 -04:00
|
|
|
.ui.form select:focus,
|
2020-11-12 10:59:33 -05:00
|
|
|
.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,
|
|
|
|
.ui.selection.dropdown:focus,
|
|
|
|
.ui.checkbox input:focus ~ label::before,
|
|
|
|
.ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label::before,
|
|
|
|
.ui.checkbox input:checked:focus ~ label::before,
|
|
|
|
.ui.radio.checkbox input:focus:checked ~ label::before {
|
|
|
|
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,
|
|
|
|
.ui.form .inline.field > p,
|
|
|
|
.ui.checkbox label,
|
|
|
|
.ui.checkbox + label,
|
|
|
|
.ui.checkbox label:hover,
|
|
|
|
.ui.checkbox + label:hover,
|
|
|
|
.ui.checkbox input:focus ~ label,
|
|
|
|
.ui.checkbox input:active ~ label {
|
|
|
|
color: var(--color-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.input,
|
|
|
|
.ui.checkbox input:focus ~ label::after,
|
|
|
|
.ui.checkbox input:checked ~ label::after,
|
|
|
|
.ui.checkbox label:active::after,
|
2021-11-10 20:52:16 -05:00
|
|
|
.ui.checkbox input:not([type="radio"]):indeterminate ~ label::after,
|
|
|
|
.ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label::after,
|
2020-11-12 10:59:33 -05:00
|
|
|
.ui.checkbox input:checked:focus ~ label::after,
|
|
|
|
.ui.disabled.checkbox label,
|
|
|
|
.ui.checkbox input[disabled] ~ label {
|
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.radio.checkbox input:focus ~ label::after,
|
|
|
|
.ui.radio.checkbox input:checked ~ label::after,
|
|
|
|
.ui.radio.checkbox input:focus:checked ~ label::after {
|
|
|
|
background: var(--color-input-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.toggle.checkbox label::before {
|
|
|
|
background: var(--color-input-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.toggle.checkbox label,
|
|
|
|
.ui.toggle.checkbox input:checked ~ label,
|
|
|
|
.ui.toggle.checkbox input:focus:checked ~ label {
|
|
|
|
color: var(--color-text) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.toggle.checkbox input:checked ~ label::before,
|
|
|
|
.ui.toggle.checkbox input:focus:checked ~ label::before {
|
|
|
|
background: var(--color-primary) !important;
|
|
|
|
}
|
|
|
|
|
2021-04-03 04:37:32 -04:00
|
|
|
/* match <select> padding to <input> */
|
|
|
|
.ui.form select {
|
|
|
|
padding: .67857143em 1em;
|
|
|
|
}
|
|
|
|
|
2015-07-07 13:09:03 -04:00
|
|
|
.form {
|
2020-08-25 15:48:53 -04:00
|
|
|
.help {
|
|
|
|
color: #999999;
|
|
|
|
padding-bottom: .6em;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-08-06 10:48:11 -04:00
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2015-09-06 10:08:14 -04:00
|
|
|
@create-page-form-input-padding: 250px !important;
|
|
|
|
#create-page-form {
|
2020-08-25 15:48:53 -04:00
|
|
|
form {
|
|
|
|
margin: auto;
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.ui.message {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaMdAndUp {
|
2020-08-25 15:48:53 -04:00
|
|
|
width: 800px !important;
|
2019-05-13 20:54:23 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.header {
|
|
|
|
padding-left: @create-page-form-input-padding+30px;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2022-08-10 09:20:10 -04:00
|
|
|
.inline.field > label,
|
|
|
|
.inline.field > span {
|
2020-08-25 15:48:53 -04:00
|
|
|
text-align: right;
|
|
|
|
width: @create-page-form-input-padding;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.help {
|
|
|
|
margin-left: @create-page-form-input-padding+15px;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.optional .title {
|
|
|
|
margin-left: @create-page-form-input-padding;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2022-06-03 17:38:26 -04:00
|
|
|
.inline.field > input,
|
|
|
|
.inline.field > textarea {
|
|
|
|
width: 50%;
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
|
|
|
}
|
2019-05-13 20:54:23 -04:00
|
|
|
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaSm {
|
2020-08-25 15:48:53 -04:00
|
|
|
.optional .title {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.inline.field > label {
|
|
|
|
display: block;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2015-09-06 10:08:14 -04:00
|
|
|
}
|
|
|
|
|
2017-03-16 20:49:24 -04:00
|
|
|
.signin {
|
2020-08-25 15:48:53 -04:00
|
|
|
.oauth2 {
|
|
|
|
div {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 10px 5px 0 0;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
a {
|
|
|
|
margin-right: 3px;
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
&.openidConnect {
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-12-02 14:48:43 -05:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2017-03-16 20:49:24 -04:00
|
|
|
}
|
2018-07-05 00:13:05 -04:00
|
|
|
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaMdAndUp {
|
2020-10-02 23:37:53 -04:00
|
|
|
.g-recaptcha,
|
|
|
|
.h-captcha {
|
2020-08-25 15:48:53 -04:00
|
|
|
margin: 0 auto !important;
|
|
|
|
width: 304px;
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
2018-07-05 00:13:05 -04:00
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-11-17 00:33:19 -05:00
|
|
|
@media (max-height: 575px) {
|
2020-08-25 15:48:53 -04:00
|
|
|
#rc-imageselect,
|
2020-10-02 23:37:53 -04:00
|
|
|
.g-recaptcha,
|
|
|
|
.h-captcha {
|
2020-08-25 15:48:53 -04:00
|
|
|
transform: scale(.77);
|
|
|
|
transform-origin: 0 0;
|
|
|
|
}
|
2018-07-05 00:13:05 -04:00
|
|
|
}
|
|
|
|
|
2015-09-17 01:54:12 -04:00
|
|
|
.user.activate,
|
2015-09-17 14:57:24 -04:00
|
|
|
.user.forgot.password,
|
|
|
|
.user.reset.password,
|
2020-11-13 21:46:40 -05:00
|
|
|
.user.link-account,
|
2015-09-17 14:57:24 -04:00
|
|
|
.user.signin,
|
|
|
|
.user.signup {
|
2020-08-25 15:48:53 -04:00
|
|
|
@input-padding: 200px;
|
2020-12-27 09:24:27 -05:00
|
|
|
#create-page-form();
|
2020-08-25 15:48:53 -04:00
|
|
|
|
|
|
|
form {
|
|
|
|
width: 700px !important;
|
|
|
|
|
|
|
|
.header {
|
|
|
|
padding-left: 0 !important;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline.field > label {
|
|
|
|
width: @input-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline.field > label,
|
|
|
|
input {
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaSm {
|
2020-08-25 15:48:53 -04:00
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-10 20:52:16 -05:00
|
|
|
input[type="number"] {
|
2020-08-25 15:48:53 -04:00
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-14 10:03:31 -05:00
|
|
|
.user.signin.webauthn-prompt {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.repository {
|
|
|
|
&.new.repo,
|
|
|
|
&.new.migrate,
|
|
|
|
&.new.fork {
|
2020-12-27 09:24:27 -05:00
|
|
|
#create-page-form();
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2017-12-02 14:48:43 -05:00
|
|
|
form {
|
2020-10-31 18:15:11 -04:00
|
|
|
.dropdown .text {
|
|
|
|
margin-right: 0 !important;
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2019-10-18 12:26:13 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.header {
|
|
|
|
padding-left: 0 !important;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-10-18 12:26:13 -04:00
|
|
|
|
2020-08-27 21:36:37 -04:00
|
|
|
.selection.dropdown {
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 50% !important;
|
|
|
|
}
|
|
|
|
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaSm {
|
2020-08-25 15:48:53 -04:00
|
|
|
label,
|
|
|
|
input,
|
|
|
|
.selection.dropdown {
|
|
|
|
width: 100% !important;
|
2019-10-18 12:26:13 -04:00
|
|
|
}
|
2015-09-13 09:51:51 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.field button,
|
|
|
|
.field a {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
width: 100%;
|
2017-12-02 14:48:43 -05:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2017-12-02 14:48:43 -05:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2015-08-28 04:44:04 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
&.new.repo {
|
|
|
|
.ui.form {
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaMdAndUp {
|
2020-08-25 15:48:53 -04:00
|
|
|
#auto-init {
|
|
|
|
margin-left: @create-page-form-input-padding+15px;
|
|
|
|
}
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.selection.dropdown:not(.owner) {
|
|
|
|
width: 50% !important;
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaSm {
|
2020-08-25 15:48:53 -04:00
|
|
|
width: 100% !important;
|
2019-05-13 02:26:32 -04:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2015-08-26 06:03:30 -04:00
|
|
|
}
|
2015-08-26 12:30:06 -04:00
|
|
|
|
|
|
|
.new.webhook {
|
2020-08-25 15:48:53 -04:00
|
|
|
form {
|
|
|
|
.help {
|
|
|
|
margin-left: 25px;
|
2017-12-02 14:48:43 -05:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2015-08-28 11:36:13 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.events.fields {
|
|
|
|
.column {
|
|
|
|
padding-left: 40px;
|
2017-12-02 14:48:43 -05:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2015-12-07 15:20:54 -05:00
|
|
|
}
|
2017-06-12 22:48:49 -04:00
|
|
|
|
|
|
|
.githook {
|
2020-08-25 15:48:53 -04:00
|
|
|
textarea {
|
2020-10-19 16:01:06 -04:00
|
|
|
font-family: var(--fonts-monospace);
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2017-06-12 22:48:49 -04:00
|
|
|
}
|
2018-07-26 11:25:41 -04:00
|
|
|
|
|
|
|
.new.org .ui.form {
|
2020-11-17 00:33:19 -05:00
|
|
|
@media @mediaSm {
|
2020-08-25 15:48:53 -04:00
|
|
|
.field button,
|
|
|
|
.field a {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-05-13 02:26:32 -04:00
|
|
|
|
2020-08-25 15:48:53 -04:00
|
|
|
.field input {
|
|
|
|
width: 100% !important;
|
2019-05-13 02:26:32 -04:00
|
|
|
}
|
2020-08-25 15:48:53 -04:00
|
|
|
}
|
2018-07-26 11:25:41 -04:00
|
|
|
}
|