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
Tatuya Kamada
gitlab-ce
Commits
48e53bf0
Commit
48e53bf0
authored
Aug 29, 2016
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused mixins
parent
0693fee2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
41 deletions
+1
-41
CHANGELOG
CHANGELOG
+1
-0
app/assets/stylesheets/framework/mixins.scss
app/assets/stylesheets/framework/mixins.scss
+0
-41
No files found.
CHANGELOG
View file @
48e53bf0
...
...
@@ -14,6 +14,7 @@ v 8.12.0 (unreleased)
- Remove Gitorious import
- Add Sentry logging to API calls
- Automatically expand hidden discussions when accessed by a permalink !5585 (Mike Greiling)
- Remove unused mixins (ClemMakesApps)
- Fix groups sort dropdown alignment (ClemMakesApps)
- Add horizontal scrolling to all sub-navs on mobile viewports (ClemMakesApps)
- Fix markdown help references (ClemMakesApps)
...
...
app/assets/stylesheets/framework/mixins.scss
View file @
48e53bf0
...
...
@@ -9,22 +9,6 @@
border-radius
:
$radius
;
}
@mixin
border-radius-left
(
$radius
)
{
@include
border-radius
(
$radius
0
0
$radius
)
}
@mixin
border-radius-right
(
$radius
)
{
@include
border-radius
(
0
0
$radius
$radius
)
}
@mixin
linear-gradient
(
$from
,
$to
)
{
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
100%
,
from
(
$from
)
,
to
(
$to
));
background-image
:
-webkit-linear-gradient
(
$from
,
$to
);
background-image
:
-moz-linear-gradient
(
$from
,
$to
);
background-image
:
-ms-linear-gradient
(
$from
,
$to
);
background-image
:
-o-linear-gradient
(
$from
,
$to
);
}
@mixin
transition
(
$transition
)
{
-webkit-transition
:
$transition
;
-moz-transition
:
$transition
;
...
...
@@ -38,14 +22,6 @@
* Mixins with fixed values
*/
@mixin
shade
{
@include
box-shadow
(
0
0
3px
#ddd
);
}
@mixin
solid-shade
{
@include
box-shadow
(
0
0
0
3px
#f1f1f1
);
}
@mixin
str-truncated
(
$max_width
:
82%
)
{
display
:
inline-block
;
overflow
:
hidden
;
...
...
@@ -94,23 +70,6 @@
}
}
@mixin
input-big
{
height
:
36px
;
padding
:
5px
10px
;
font-size
:
16px
;
line-height
:
24px
;
color
:
#7f8fa4
;
background-color
:
#fff
;
border-color
:
#e7e9ed
;
}
@mixin
btn-big
{
height
:
36px
;
padding
:
5px
10px
;
font-size
:
16px
;
line-height
:
24px
;
}
@mixin
bulleted-list
{
>
ul
{
list-style-type
:
disc
;
...
...
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