mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
Compare commits
4 Commits
c903128eb7
...
b7cf928615
Author | SHA1 | Date | |
---|---|---|---|
|
b7cf928615 | ||
|
796c0387a3 | ||
|
5b5292d138 | ||
|
7bce6361b3 |
@@ -169,9 +169,9 @@ Form is validated both client-side using jquery-validation (see signup.js) and s
|
||||
{% if default_stream_groups %}
|
||||
<hr />
|
||||
<div class="default-stream-groups">
|
||||
<p class="margin">{{ _('What are you interested in?') }}</p>
|
||||
<p>{{ _('What are you interested in?') }}</p>
|
||||
{% for default_stream_group in default_stream_groups %}
|
||||
<div class="input-group margin">
|
||||
<div class="input-group">
|
||||
<label for="id_default_stream_group__{{ default_stream_group.id }}"
|
||||
class="inline-block checkbox">
|
||||
<input class="inline-block" type="checkbox"
|
||||
@@ -218,7 +218,7 @@ Form is validated both client-side using jquery-validation (see signup.js) and s
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="input-group margin terms-of-service">
|
||||
<div class="input-group terms-of-service">
|
||||
{% if terms_of_service %}
|
||||
<div class="input-group">
|
||||
{#
|
||||
|
@@ -106,7 +106,7 @@ def verify_fixtures_are_sorted(names: list[str]) -> None:
|
||||
raise Exception(
|
||||
f"""
|
||||
Please keep your fixtures in order within
|
||||
your events.js file. The following
|
||||
your events.cjs file. The following
|
||||
key is out of order
|
||||
|
||||
{names[i]}
|
||||
|
@@ -435,6 +435,7 @@ function schedule_message_to_custom_date(): void {
|
||||
no_notify: true,
|
||||
update_count: false,
|
||||
is_sending_saving: true,
|
||||
force_save: true,
|
||||
});
|
||||
assert(draft_id !== undefined);
|
||||
|
||||
|
@@ -1396,7 +1396,7 @@ input.invalid-input {
|
||||
border-color: var(--color-invalid-input-border) !important;
|
||||
|
||||
&:focus {
|
||||
box-shadow: var(--color-invalid-input-box-shadow);
|
||||
box-shadow: var(--invalid-input-box-shadow);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -1019,9 +1019,10 @@
|
||||
hsl(3deg 57% 33%),
|
||||
hsl(3deg 73% 74%)
|
||||
);
|
||||
--invalid-input-box-shadow: 0 0 2px var(--color-invalid-input-box-shadow);
|
||||
--color-invalid-input-box-shadow: light-dark(
|
||||
0 0 2px hsl(3deg 57% 33%),
|
||||
0 0 2px hsl(3deg 73% 74%)
|
||||
hsl(3deg 57% 33%),
|
||||
hsl(3deg 73% 74%)
|
||||
);
|
||||
--color-background-white-box: light-dark(
|
||||
hsl(0deg 0% 100%),
|
||||
|
@@ -345,7 +345,7 @@
|
||||
&:has(.new_message_textarea.invalid),
|
||||
&:has(.new_message_textarea.invalid:focus) {
|
||||
border-color: var(--color-invalid-input-border);
|
||||
box-shadow: var(--color-invalid-input-box-shadow);
|
||||
box-shadow: var(--invalid-input-box-shadow);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -232,7 +232,7 @@
|
||||
|
||||
&.invalid {
|
||||
border-color: var(--color-invalid-input-border);
|
||||
box-shadow: var(--color-invalid-input-box-shadow);
|
||||
box-shadow: var(--invalid-input-box-shadow);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -898,10 +898,6 @@ input.new-organization-button {
|
||||
}
|
||||
|
||||
.input-group {
|
||||
&.margin {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.progress {
|
||||
margin: 0;
|
||||
margin-top: 5px;
|
||||
|
Reference in New Issue
Block a user