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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
9c42c197
Commit
9c42c197
authored
Mar 15, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes inputs width inside .nav-controls
parent
748e0b9c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
3 deletions
+26
-3
app/assets/stylesheets/framework/common.scss
app/assets/stylesheets/framework/common.scss
+0
-1
app/assets/stylesheets/framework/filters.scss
app/assets/stylesheets/framework/filters.scss
+8
-0
app/assets/stylesheets/framework/nav.scss
app/assets/stylesheets/framework/nav.scss
+16
-2
app/views/dashboard/issues.html.haml
app/views/dashboard/issues.html.haml
+2
-0
No files found.
app/assets/stylesheets/framework/common.scss
View file @
9c42c197
...
...
@@ -375,7 +375,6 @@ table {
position
:
absolute
;
top
:
0
;
right
:
0
;
width
:
250px
!
important
;
visibility
:
hidden
;
}
}
...
...
app/assets/stylesheets/framework/filters.scss
View file @
9c42c197
...
...
@@ -11,3 +11,11 @@
}
}
}
@media
(
max-width
:
$screen-xs-max
)
{
.filter-item
{
display
:
block
;
margin
:
0
0
10px
0
;
}
}
app/assets/stylesheets/framework/nav.scss
View file @
9c42c197
...
...
@@ -128,15 +128,23 @@
}
}
@media
(
max-width
:
600px
)
{
.btn
,
form
{
@media
(
max-width
:
$screen-xs-max
)
{
padding-bottom
:
0
;
.btn
,
form
,
.dropdown
,
.dropdown-menu-toggle
,
.form-control
{
margin
:
0
0
10px
0
;
display
:
block
;
width
:
100%
;
}
form
{
display
:
block
;
height
:
auto
;
input
{
width
:
100%
;
margin
:
0
0
10px
0
;
}
}
input
.input-short
{
...
...
@@ -146,6 +154,12 @@
.icon-label
{
display
:
inline-block
;
}
// Applies on /dashboard/issues
.project-item-select-holder
{
display
:
block
;
margin
:
0
;
}
}
/* Small devices (tablets, 768px and lower) */
...
...
app/views/dashboard/issues.html.haml
View file @
9c42c197
...
...
@@ -10,6 +10,8 @@
-
if
current_user
=
link_to
issues_dashboard_url
(
format: :atom
,
private_token:
current_user
.
private_token
),
class:
'btn'
do
=
icon
(
'rss'
)
%span
.icon-label
Subscribe
=
render
'shared/new_project_item_select'
,
path:
'issues/new'
,
label:
"New Issue"
=
render
'shared/issuable/filter'
,
type: :issues
...
...
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