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
b493ba43
Commit
b493ba43
authored
Sep 19, 2010
by
Guy Pyrzak
Committed by
Frédéric Buclin
Sep 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 594947: show_bug text boxes are not 100% width
r/a=mkanat
parent
6aec8ad4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
global.css
skins/standard/global.css
+1
-2
show_bug.css
skins/standard/show_bug.css
+4
-0
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+3
-0
userselect.html.tmpl
template/en/default/global/userselect.html.tmpl
+5
-1
No files found.
skins/standard/global.css
View file @
b493ba43
...
...
@@ -526,8 +526,7 @@ input.required, select.required, span.required_explanation {
/* custom styles for inline instances of autocomplete input fields */
.yui-skin-sam
.yui-ac-input
{
position
:
static
!important
;
vertical-align
:
middle
!important
;
width
:
auto
!important
;
}
vertical-align
:
middle
!important
;
}
.yui-skin-sam
.yui-ac-container
{
left
:
0px
!important
;
}
.yui-skin-sam
.yui-ac
{
display
:
inline-block
;
}
#bugzilla-body
.yui-ac-content
{
...
...
skins/standard/show_bug.css
View file @
b493ba43
...
...
@@ -109,3 +109,7 @@ table#flags {
.knob-buttons
{
float
:
right
;
}
.text_input
,
.bz_userfield
,
#keyword_container
{
width
:
100%
;
}
template/en/default/bug/edit.html.tmpl
View file @
b493ba43
...
...
@@ -482,6 +482,7 @@
id => "assigned_to"
name => "assigned_to"
value => bug.assigned_to.login
classes => ["bz_userfield"]
size => 30
%]
<br>
...
...
@@ -524,6 +525,7 @@
name => "qa_contact"
value => bug.qa_contact.login
size => 30
classes => ["bz_userfield"]
emptyok => 1
%]
<br>
...
...
@@ -821,6 +823,7 @@
name => "newcc"
value => ""
size => 30
classes => ["bz_userfield"]
multiple => 5
%]
</div>
...
...
template/en/default/global/userselect.html.tmpl
View file @
b493ba43
...
...
@@ -20,6 +20,7 @@
# name: mandatory; field name
# id: optional; field id
# value: optional; default field value/selection
# classes: optional; an array of classes to be added
# onchange: optional; onchange attribute value
# disabled: optional; if true, the field is disabled
# accesskey: optional, input only; accesskey attribute value
...
...
@@ -34,6 +35,7 @@
[% IF Param("usemenuforusers") %]
<select name="[% name FILTER html %]"
[% IF id %] id="[% id FILTER html %]" [% END %]
[% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %]
[% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
[% IF disabled %] disabled="[% disabled FILTER html %]" [% END %]
[% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
...
...
@@ -78,11 +80,13 @@
</select>
[% ELSE %]
[% IF id && feature_enabled('jsonrpc') %]
<div id="[% id FILTER html %]_autocomplete">
<div id="[% id FILTER html %]_autocomplete"
[% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %]>
[% END %]
<input
name="[% name FILTER html %]"
value="[% value FILTER html %]"
[% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %]
[% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
[% IF disabled %] disabled="[% disabled FILTER html %]" [% END %]
[% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
...
...
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