Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
9c623cb9
Commit
9c623cb9
authored
Dec 04, 2009
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 204106: Make enter_bug indicate which fields are mandatory
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
parent
39c30260
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
9 deletions
+24
-9
global.css
skins/standard/global.css
+9
-0
create.html.tmpl
template/en/default/bug/create/create.html.tmpl
+15
-9
No files found.
skins/standard/global.css
View file @
9c623cb9
...
...
@@ -455,6 +455,15 @@ div.user_match {
.field_value
,
form
#Create
th
,
form
#Create
td
{
vertical-align
:
top
;
}
th
.required
:before
{
content
:
"* "
;
}
th
.required
:before
,
span
.required_star
{
color
:
red
;
}
input
.required
,
select
.required
,
span
.required_explanation
{
background-color
:
#fff7cd
;
}
.calendar_button
{
background
:
transparent
url("global/calendar.png")
no-repeat
;
...
...
template/en/default/bug/create/create.html.tmpl
View file @
9c623cb9
...
...
@@ -193,16 +193,20 @@ TUI_hide_default('expert_fields');
</tr>
<tr>
<td colspan="
4
">
<a id="expert_fields_controller" class="controller bz_default_hidden"
href="javascript:TUI_toggle_class('expert_fields')">Hide
<td colspan="
2
">
<a id="expert_fields_controller" class="controller bz_default_hidden"
href="javascript:TUI_toggle_class('expert_fields')">Hide
Advanced Fields</a>
[%# Show the link if the browser supports JS %]
<script type="text/javascript">
YAHOO.util.Dom.removeClass('expert_fields_controller',
'bz_default_hidden');
YAHOO.util.Dom.removeClass('expert_fields_controller',
'bz_default_hidden');
</script>
</td>
<td colspan="2">
(<span class="required_star">*</span> =
<span class="required_explanation">Required Field</span>)
</td>
</tr>
<tr>
...
...
@@ -215,12 +219,13 @@ TUI_hide_default('expert_fields');
[%# We can't use the select block in these two cases for various reasons. %]
<tr>
<th>
<th
class="required"
>
<a href="describecomponents.cgi?product=[% product.name FILTER url_quote %]">
Component</a>:
</th>
<td>
<select name="component" onchange="set_assign_to();" size="7">
<select name="component" onchange="set_assign_to();" size="7"
aria-required="true" class="required">
[%# Build the lists of assignees and QA contacts if "usemenuforusers" is enabled. %]
[% IF Param("usemenuforusers") %]
[% assignees_list = user.get_userlist.clone %]
...
...
@@ -482,10 +487,11 @@ TUI_hide_default('expert_fields');
<tbody>
<tr>
<th>Summary:</th>
<th
class="required"
>Summary:</th>
<td colspan="3">
<input name="short_desc" size="70" value="[% short_desc FILTER html %]"
maxlength="255" spellcheck="true">
maxlength="255" spellcheck="true" aria-required="true"
class="required">
</td>
</tr>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment