2016-10-23 10:05:55 +00:00
|
|
|
code {
|
2017-05-07 13:23:06 +00:00
|
|
|
font-family: 'mastodon-font-monospace', monospace;
|
2016-10-23 10:05:55 +00:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.form-container {
|
|
|
|
max-width: 400px;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple_form {
|
|
|
|
.input {
|
|
|
|
margin-bottom: 15px;
|
2017-05-20 17:42:44 +00:00
|
|
|
overflow: hidden;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -5px;
|
|
|
|
|
|
|
|
.input {
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 50%;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-26 11:22:38 +00:00
|
|
|
span.hint {
|
2016-12-22 22:03:57 +00:00
|
|
|
display: block;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2016-12-22 22:03:57 +00:00
|
|
|
font-size: 12px;
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2017-03-26 11:22:38 +00:00
|
|
|
p.hint {
|
|
|
|
margin-bottom: 15px;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
|
|
|
|
&.subtle-hint {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 0;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
|
|
|
|
a {
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $highlight-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-26 11:22:38 +00:00
|
|
|
}
|
|
|
|
|
2017-07-21 03:28:51 +00:00
|
|
|
.card {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-04-08 20:20:08 +00:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-08 20:20:08 +00:00
|
|
|
}
|
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
.label_input {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
label {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 01:24:04 +00:00
|
|
|
.input.with_label {
|
2016-10-18 14:37:15 +00:00
|
|
|
padding: 15px 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
2017-09-02 13:49:28 +00:00
|
|
|
.label_input {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
2018-05-07 07:31:07 +00:00
|
|
|
&.file .label_input {
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
2017-09-02 13:49:28 +00:00
|
|
|
&.select .label_input {
|
|
|
|
align-items: initial;
|
|
|
|
}
|
|
|
|
|
2017-05-20 17:42:44 +00:00
|
|
|
.label_input > label {
|
2017-01-05 04:24:27 +00:00
|
|
|
font-family: inherit;
|
2016-10-18 14:37:15 +00:00
|
|
|
font-size: 16px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-11-16 16:51:02 +00:00
|
|
|
display: block;
|
|
|
|
padding-top: 5px;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
flex: 1;
|
|
|
|
min-width: 150px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
&.select {
|
|
|
|
flex: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& ~ * {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
flex: 390px;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2017-07-12 01:24:04 +00:00
|
|
|
|
|
|
|
&.boolean {
|
|
|
|
padding: initial;
|
|
|
|
margin-bottom: initial;
|
|
|
|
|
|
|
|
.label_input > label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
label.checkbox {
|
|
|
|
position: relative;
|
|
|
|
padding-left: 25px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.input.with_block_label {
|
|
|
|
& > label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.fields-group {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
2017-04-17 08:37:00 +00:00
|
|
|
.input.radio_buttons .radio label {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-04-17 08:37:00 +00:00
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.input.boolean {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
label {
|
2017-01-05 04:24:27 +00:00
|
|
|
font-family: inherit;
|
2016-10-18 14:37:15 +00:00
|
|
|
font-size: 14px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-11-16 16:51:02 +00:00
|
|
|
display: block;
|
2017-01-28 02:56:10 +00:00
|
|
|
width: auto;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2016-11-25 13:01:14 +00:00
|
|
|
|
2016-11-23 15:26:53 +00:00
|
|
|
label.checkbox {
|
|
|
|
position: relative;
|
2017-04-17 08:37:00 +00:00
|
|
|
padding-left: 25px;
|
|
|
|
flex: 1 1 auto;
|
2016-11-23 15:26:53 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
|
|
|
input[type=checkbox] {
|
2017-05-07 18:47:31 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2017-07-12 01:24:04 +00:00
|
|
|
top: 5px;
|
2016-11-25 13:01:14 +00:00
|
|
|
margin: 0;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
|
|
|
|
.hint {
|
|
|
|
padding-left: 25px;
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-left: 0;
|
2016-12-22 22:03:57 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 01:24:04 +00:00
|
|
|
.check_boxes {
|
|
|
|
.checkbox {
|
|
|
|
label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
position: relative;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-left: 25px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 5px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
input[type=text],
|
|
|
|
input[type=number],
|
|
|
|
input[type=email],
|
|
|
|
input[type=password],
|
|
|
|
textarea {
|
2016-10-18 14:37:15 +00:00
|
|
|
background: transparent;
|
2016-11-07 17:45:44 +00:00
|
|
|
box-sizing: border-box;
|
2016-10-18 14:37:15 +00:00
|
|
|
border: 0;
|
2017-05-08 13:57:49 +00:00
|
|
|
border-bottom: 2px solid $ui-primary-color;
|
2016-11-07 17:45:44 +00:00
|
|
|
border-radius: 2px 2px 0 0;
|
|
|
|
padding: 7px 4px;
|
2016-10-18 14:37:15 +00:00
|
|
|
font-size: 16px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
outline: 0;
|
2017-01-05 04:24:27 +00:00
|
|
|
font-family: inherit;
|
2017-02-14 19:59:26 +00:00
|
|
|
resize: vertical;
|
2016-10-18 14:37:15 +00:00
|
|
|
|
|
|
|
&:invalid {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus:invalid {
|
2018-04-18 14:52:15 +00:00
|
|
|
border-bottom-color: lighten($error-red, 12%);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:required:valid {
|
2018-04-21 19:35:55 +00:00
|
|
|
border-bottom-color: $valid-value-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-18 14:52:15 +00:00
|
|
|
border-bottom-color: $highlight-text-color;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: rgba($base-overlay-background, 0.1);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.input.field_with_errors {
|
2017-01-28 02:56:10 +00:00
|
|
|
label {
|
2018-04-18 14:52:15 +00:00
|
|
|
color: lighten($error-red, 12%);
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
input[type=text],
|
|
|
|
input[type=email],
|
|
|
|
input[type=password] {
|
2018-04-21 19:35:55 +00:00
|
|
|
border-bottom-color: $valid-value-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
2017-01-28 02:56:10 +00:00
|
|
|
display: block;
|
2016-10-18 14:37:15 +00:00
|
|
|
font-weight: 500;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: lighten($error-red, 12%);
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-top: 4px;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
margin-top: 30px;
|
2017-05-17 22:38:01 +00:00
|
|
|
display: flex;
|
2018-03-01 01:48:08 +00:00
|
|
|
|
|
|
|
&.actions--top {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
button,
|
2017-05-17 22:38:01 +00:00
|
|
|
.button,
|
2017-05-07 18:47:31 +00:00
|
|
|
.block-button {
|
2016-10-22 17:38:47 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
2016-10-22 17:38:47 +00:00
|
|
|
font-size: 18px;
|
2017-05-17 22:38:01 +00:00
|
|
|
line-height: inherit;
|
|
|
|
height: auto;
|
2016-10-22 17:38:47 +00:00
|
|
|
padding: 10px;
|
|
|
|
text-transform: uppercase;
|
2017-01-27 19:28:46 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
box-sizing: border-box;
|
2016-10-22 17:38:47 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 500;
|
|
|
|
outline: 0;
|
|
|
|
margin-bottom: 10px;
|
2017-05-17 22:38:01 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2016-10-22 17:38:47 +00:00
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: lighten($ui-highlight-color, 5%);
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: darken($ui-highlight-color, 5%);
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2016-10-22 17:38:47 +00:00
|
|
|
&.negative {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $error-value-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2016-10-22 17:38:47 +00:00
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: lighten($error-value-color, 5%);
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: darken($error-value-color, 5%);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 08:37:00 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
font-size: 16px;
|
2017-10-01 08:52:39 +00:00
|
|
|
max-height: 29px;
|
2017-04-17 08:37:00 +00:00
|
|
|
}
|
2017-07-11 13:27:59 +00:00
|
|
|
|
|
|
|
.input-with-append {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.input input {
|
|
|
|
padding-right: 127px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.append {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
padding: 7px 4px;
|
|
|
|
padding-bottom: 9px;
|
|
|
|
font-size: 16px;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $dark-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
font-family: inherit;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flash-message {
|
2017-08-05 02:24:58 +00:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 15px 10px;
|
|
|
|
margin-bottom: 30px;
|
2017-05-08 13:57:49 +00:00
|
|
|
box-shadow: 0 0 5px rgba($base-shadow-color, 0.2);
|
2016-10-18 14:37:15 +00:00
|
|
|
text-align: center;
|
|
|
|
|
2017-09-17 13:23:44 +00:00
|
|
|
p {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.oauth-code {
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: 'mastodon-font-monospace', monospace;
|
|
|
|
background: $ui-base-color;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $primary-text-color;
|
2017-09-17 13:23:44 +00:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2017-09-17 13:23:44 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 740px) and (min-width: 441px) {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-footer {
|
|
|
|
margin-top: 30px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
.oauth-prompt,
|
|
|
|
.follow-prompt {
|
2016-10-22 17:38:47 +00:00
|
|
|
margin-bottom: 30px;
|
|
|
|
text-align: center;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2016-10-22 17:38:47 +00:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2016-10-22 17:38:47 +00:00
|
|
|
font-weight: 500;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2017-08-27 22:01:07 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 740px) and (min-width: 441px) {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2017-01-27 19:28:46 +00:00
|
|
|
|
2017-04-08 20:20:08 +00:00
|
|
|
.qr-wrapper {
|
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-start;
|
2017-04-08 20:20:08 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 19:28:46 +00:00
|
|
|
.qr-code {
|
2017-04-08 20:20:08 +00:00
|
|
|
flex: 0 0 auto;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $simple-background-color;
|
2017-01-27 19:28:46 +00:00
|
|
|
padding: 4px;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 10px 20px 0;
|
2017-05-08 13:57:49 +00:00
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2017-01-27 19:28:46 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-04-08 20:20:08 +00:00
|
|
|
|
|
|
|
.qr-alternative {
|
2017-09-02 13:49:28 +00:00
|
|
|
margin-bottom: 20px;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex: 150px;
|
2017-04-08 20:20:08 +00:00
|
|
|
|
|
|
|
samp {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 22:38:37 +00:00
|
|
|
|
|
|
|
.table-form {
|
|
|
|
p {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 22:38:37 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-14 16:01:27 +00:00
|
|
|
}
|
2017-04-23 22:38:37 +00:00
|
|
|
|
2017-06-14 16:01:27 +00:00
|
|
|
.simple_form,
|
|
|
|
.table-form {
|
2017-04-23 22:38:37 +00:00
|
|
|
.warning {
|
|
|
|
box-sizing: border-box;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: rgba($error-value-color, 0.5);
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-shadow: 1px 1px 0 rgba($base-shadow-color, 0.3);
|
|
|
|
box-shadow: 0 2px 6px rgba($base-shadow-color, 0.4);
|
2017-04-23 22:38:37 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
a {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-04-23 22:38:37 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-04-23 22:38:37 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
2017-12-07 15:01:52 +00:00
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 22:38:37 +00:00
|
|
|
.fa {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-pagination {
|
|
|
|
display: flex;
|
2017-10-04 20:49:36 +00:00
|
|
|
flex-wrap: wrap;
|
2017-04-23 22:38:37 +00:00
|
|
|
align-items: center;
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
.actions,
|
|
|
|
.pagination {
|
2017-04-23 22:38:37 +00:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
padding: 30px 0;
|
|
|
|
padding-right: 20px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2017-05-01 15:42:13 +00:00
|
|
|
|
2017-07-10 16:05:06 +00:00
|
|
|
.post-follow-actions {
|
|
|
|
text-align: center;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2017-07-10 16:05:06 +00:00
|
|
|
|
|
|
|
div {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 04:42:13 +00:00
|
|
|
|
|
|
|
.alternative-login {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 16px;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $primary-text-color;
|
2018-02-04 04:42:13 +00:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|