Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
fe61e80a
Commit
fe61e80a
authored
May 23, 2018
by
Jacopo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes: Runners search input placeholder is cut off
parent
2eb8099f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
29 deletions
+16
-29
app/assets/stylesheets/framework/forms.scss
app/assets/stylesheets/framework/forms.scss
+8
-0
app/assets/stylesheets/framework/secondary_navigation_elements.scss
.../stylesheets/framework/secondary_navigation_elements.scss
+0
-12
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+2
-0
app/assets/stylesheets/pages/members.scss
app/assets/stylesheets/pages/members.scss
+0
-10
app/assets/stylesheets/pages/projects.scss
app/assets/stylesheets/pages/projects.scss
+0
-6
app/views/admin/runners/index.html.haml
app/views/admin/runners/index.html.haml
+1
-1
changelogs/unreleased/39710-search-placeholder-cut-off.yml
changelogs/unreleased/39710-search-placeholder-cut-off.yml
+5
-0
No files found.
app/assets/stylesheets/framework/forms.scss
View file @
fe61e80a
...
...
@@ -120,6 +120,14 @@ label {
@include
box-shadow
(
none
);
border-radius
:
2px
;
padding
:
$gl-vert-padding
$gl-input-padding
;
&
.input-short
{
width
:
$input-short-width
;
@media
(
min-width
:
$screen-md-min
)
{
width
:
$input-short-md-width
;
}
}
}
.select-wrapper
{
...
...
app/assets/stylesheets/framework/secondary_navigation_elements.scss
View file @
fe61e80a
...
...
@@ -128,14 +128,6 @@
/* Large devices (large desktops, 1200px and up) */
@media
(
min-width
:
$screen-lg-min
)
{
width
:
250px
;
}
&
.input-short
{
/* Medium devices (desktops, 992px and up) */
@media
(
min-width
:
$screen-md-min
)
{
width
:
170px
;
}
/* Large devices (large desktops, 1200px and up) */
@media
(
min-width
:
$screen-lg-min
)
{
width
:
210px
;
}
}
}
@media
(
max-width
:
$screen-xs-max
)
{
...
...
@@ -164,10 +156,6 @@
}
}
.input-short
{
width
:
100%
;
}
.icon-label
{
display
:
inline-block
;
}
...
...
app/assets/stylesheets/framework/variables.scss
View file @
fe61e80a
...
...
@@ -554,6 +554,8 @@ $input-danger-border: $red-400;
$input-group-addon-bg
:
#f7f8fa
;
$gl-field-focus-shadow
:
rgba
(
0
,
0
,
0
,
0
.075
);
$gl-field-focus-shadow-error
:
rgba
(
$red-500
,
0
.6
);
$input-short-width
:
200px
;
$input-short-md-width
:
280px
;
/*
* Help
...
...
app/assets/stylesheets/pages/members.scss
View file @
fe61e80a
...
...
@@ -99,16 +99,6 @@
@media
(
min-width
:
$screen-sm-min
)
{
width
:
250px
;
}
&
.input-short
{
@media
(
min-width
:
$screen-md-min
)
{
width
:
170px
;
}
@media
(
min-width
:
$screen-lg-min
)
{
width
:
210px
;
}
}
}
}
...
...
app/assets/stylesheets/pages/projects.scss
View file @
fe61e80a
...
...
@@ -871,12 +871,6 @@ pre.light-well {
margin
:
0
;
}
.commits-search-form
{
.input-short
{
min-width
:
200px
;
}
}
.git-clone-holder
{
width
:
380px
;
...
...
app/views/admin/runners/index.html.haml
View file @
fe61e80a
...
...
@@ -45,7 +45,7 @@
.pull-left
=
form_tag
admin_runners_path
,
id:
'runners-search'
,
class:
'form-inline'
,
method: :get
do
.form-group
=
search_field_tag
:search
,
params
[
:search
],
class:
'form-control'
,
placeholder:
'Runner description or token'
,
spellcheck:
false
=
search_field_tag
:search
,
params
[
:search
],
class:
'form-control
input-short
'
,
placeholder:
'Runner description or token'
,
spellcheck:
false
=
submit_tag
'Search'
,
class:
'btn'
.pull-right.light
...
...
changelogs/unreleased/39710-search-placeholder-cut-off.yml
0 → 100644
View file @
fe61e80a
---
title
:
'
Fixes:
Runners
search
input
placeholder
is
cut
off'
merge_request
:
19015
author
:
Jacopo Beschi @jacopo-beschi
type
:
fixed
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