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
cc1c9f8b
Commit
cc1c9f8b
authored
Nov 30, 2016
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix incorrect min-width media queries
parent
410cb1bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
app/assets/stylesheets/framework/pagination.scss
app/assets/stylesheets/framework/pagination.scss
+2
-2
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+1
-1
No files found.
app/assets/stylesheets/framework/pagination.scss
View file @
cc1c9f8b
...
...
@@ -43,7 +43,7 @@
/**
* Small screen pagination
*/
@media
(
max-width
:
$screen-xs
)
{
@media
(
max-width
:
$screen-xs
-min
)
{
.gl-pagination
{
.pagination
li
a
{
padding
:
6px
10px
;
...
...
@@ -62,7 +62,7 @@
/**
* Medium screen pagination
*/
@media
(
min-width
:
$screen-xs
)
and
(
max-width
:
$screen-md-max
)
{
@media
(
min-width
:
$screen-xs
-min
)
and
(
max-width
:
$screen-md-max
)
{
.gl-pagination
{
.page
{
display
:
none
;
...
...
app/assets/stylesheets/pages/tree.scss
View file @
cc1c9f8b
...
...
@@ -31,7 +31,7 @@
.last-commit
{
@include
str-truncated
(
506px
);
@media
(
min-width
:
$screen-
sm-max
)
and
(
max-width
:
$screen-md-max
)
{
@media
(
min-width
:
$screen-
md-min
)
and
(
max-width
:
$screen-md-max
)
{
@include
str-truncated
(
450px
);
}
...
...
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