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
7b09a27e
Commit
7b09a27e
authored
Aug 29, 2016
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove prefixes from transition CSS property
parent
4de9e727
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
11 deletions
+4
-11
CHANGELOG
CHANGELOG
+1
-0
app/assets/stylesheets/framework/mixins.scss
app/assets/stylesheets/framework/mixins.scss
+0
-8
app/assets/stylesheets/framework/selects.scss
app/assets/stylesheets/framework/selects.scss
+1
-1
app/assets/stylesheets/pages/search.scss
app/assets/stylesheets/pages/search.scss
+2
-2
No files found.
CHANGELOG
View file @
7b09a27e
...
...
@@ -18,6 +18,7 @@ v 8.12.0 (unreleased)
- Add `wiki_page_events` to project hook APIs (Ben Boeckel)
- Remove Gitorious import
- Fix inconsistent background color for filter input field (ClemMakesApps)
- Remove prefixes from transition CSS property (ClemMakesApps)
- Add Sentry logging to API calls
- Automatically expand hidden discussions when accessed by a permalink !5585 (Mike Greiling)
- Remove unused mixins (ClemMakesApps)
...
...
app/assets/stylesheets/framework/mixins.scss
View file @
7b09a27e
...
...
@@ -9,14 +9,6 @@
border-radius
:
$radius
;
}
@mixin
transition
(
$transition
)
{
-webkit-transition
:
$transition
;
-moz-transition
:
$transition
;
-ms-transition
:
$transition
;
-o-transition
:
$transition
;
transition
:
$transition
;
}
/**
* Prefilled mixins
* Mixins with fixed values
...
...
app/assets/stylesheets/framework/selects.scss
View file @
7b09a27e
...
...
@@ -151,7 +151,7 @@
background-position
:
right
0
bottom
6px
;
border
:
1px
solid
$input-border
;
@include
border-radius
(
$border-radius-default
);
@include
transition
(
border-color
ease-in-out
.15s
,
box-shadow
ease-in-out
.15s
)
;
transition
:
border-color
ease-in-out
0
.15s
,
box-shadow
ease-in-out
0
.15s
;
&
:focus
{
border-color
:
$input-border-focus
;
...
...
app/assets/stylesheets/pages/search.scss
View file @
7b09a27e
...
...
@@ -80,7 +80,7 @@
.search-icon
{
@extend
.fa-search
;
@include
transition
(
color
.15s
)
;
transition
:
color
0
.15s
;
-webkit-user-select
:
none
;
-moz-user-select
:
none
;
-ms-user-select
:
none
;
...
...
@@ -125,7 +125,7 @@
}
.location-badge
{
@include
transition
(
all
.15s
)
;
transition
:
all
0
.15s
;
background-color
:
$location-badge-active-bg
;
color
:
$white-light
;
}
...
...
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