Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fuckms-refreshtokensync
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
msc
fuckms-refreshtokensync
Commits
d49ae5d8
There was an error fetching the commit references. Please try again later.
Commit
d49ae5d8
authored
6 years ago
by
didierfred
Browse files
Options
Downloads
Patches
Plain Diff
adujst field heigth
parent
bcc99b9f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
popup/config.html
+6
-1
6 additions, 1 deletion
popup/config.html
popup/config.js
+3
-3
3 additions, 3 deletions
popup/config.js
with
9 additions
and
4 deletions
popup/config.html
+
6
−
1
View file @
d49ae5d8
...
...
@@ -16,7 +16,12 @@
.select_field
{
font-size
:
14px
;
height
:
26px
;
height
:
30px
;
}
.input_field
{
font-size
:
14px
;
height
:
30px
;
}
</style>
</head>
...
...
This diff is collapsed.
Click to expand it.
popup/config.js
+
3
−
3
View file @
d49ae5d8
...
...
@@ -35,9 +35,9 @@ window.onload = function() {
function
appendLine
(
action
,
header_name
,
header_value
,
comment
,
apply_on
,
status
)
{
var
html
=
"
<td><select class=
\"
form_control select_field
\"
id=
\"
select_action
"
+
line_number
+
"
\"
disable=false><option value=
\"
add
\"
>Add</option><option value=
\"
modify
\"
>Modify</option><option value=
\"
delete
\"
>Delete</option></select></td>
"
;
html
=
html
+
"
<td><input class=
\"
form_control
\"
id=
\"
header_name
"
+
line_number
+
"
\"
></input></td>
"
;
html
=
html
+
"
<td><input class=
\"
form_control
\"
size=
\"
28
\"
id=
\"
header_value
"
+
line_number
+
"
\"
></input></td>
"
;
html
=
html
+
"
<td><input class=
\"
form_control
\"
size=
\"
28
\"
id=
\"
comment
"
+
line_number
+
"
\"
></input></td>
"
;
html
=
html
+
"
<td><input class=
\"
form_control
input_field
\"
id=
\"
header_name
"
+
line_number
+
"
\"
></input></td>
"
;
html
=
html
+
"
<td><input class=
\"
form_control
input_field
\"
size=
\"
28
\"
id=
\"
header_value
"
+
line_number
+
"
\"
></input></td>
"
;
html
=
html
+
"
<td><input class=
\"
form_control
input_field
\"
size=
\"
28
\"
id=
\"
comment
"
+
line_number
+
"
\"
></input></td>
"
;
html
=
html
+
"
<td><select class=
\"
form_control select_field
\"
id=
\"
apply_on
"
+
line_number
+
"
\"
><option value=
\"
req
\"
> Request </option><option value=
\"
res
\"
>Response</option></select></td>
"
;
html
=
html
+
"
<td><select class=
\"
form_control select_field
\"
id=
\"
select_status
"
+
line_number
+
"
\"
><option value=
\"
on
\"
> ON </option><option value=
\"
off
\"
>OFF</option></select></td>
"
;
html
=
html
+
"
<td> <a href=
\"
#
\"
title=
\"
Move line up
\"
id=
\"
up_button
"
+
line_number
+
"
\"
class=
\"
btn btn-default btn-sm
\"
> <span class=
\"
glyphicon glyphicon-arrow-up
\"
></span></a></td>
"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment