Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
prototype
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
prototype
Merge requests
!74
#3395030
- Dropdown menu ids fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
#3395030
- Dropdown menu ids fix
issue/prototype-3395030:3395030-dropdown-menu-ids
into
5.x
Overview
0
Commits
3
Pipelines
2
Changes
18
Merged
Jennifer Dust
requested to merge
issue/prototype-3395030:3395030-dropdown-menu-ids
into
5.x
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
18
Expand
Fixing dropdown menu id's
#3395030
0
0
Merge request reports
Compare
5.x
version 3
df5067ec
1 year ago
version 2
fbfd780d
1 year ago
version 1
2cf35bd9
1 year ago
5.x (base)
and
latest version
latest version
df5067ec
3 commits,
1 year ago
version 3
df5067ec
3 commits,
1 year ago
version 2
fbfd780d
2 commits,
1 year ago
version 1
2cf35bd9
1 commit,
1 year ago
18 files
+
115
−
370
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
components/accordion-item/accordion-item.css
+
9
−
46
Options
@@ -3,16 +3,12 @@
}
.c-accordion-item
.c-accordion-item__wrapper
{
position
:
relative
;
display
:
-webkit-box
;
display
:
flex
;
-webkit-box-orient
:
vertical
;
-webkit-box-direction
:
normal
;
flex-direction
:
column
;
flex-direction
:
column
;
padding
:
0
;
}
.c-accordion-item
.c-accordion-item__header
{
-webkit-box-ordinal-group
:
2
;
order
:
1
;
order
:
1
;
width
:
100%
;
}
.c-accordion-item
.c-accordion-item__title
{
@@ -23,12 +19,9 @@
padding
:
0
;
border
:
none
;
background
:
none
;
display
:
-webkit-inline-box
;
display
:
inline-flex
;
-webkit-box-align
:
center
;
align-items
:
center
;
-webkit-box-pack
:
start
;
justify-content
:
flex-start
;
align-items
:
center
;
justify-content
:
flex-start
;
position
:
relative
;
text-align
:
left
;
border-radius
:
0
;
@@ -46,62 +39,36 @@
position
:
absolute
;
top
:
50%
;
left
:
50%
;
-webkit-transform-origin
:
0
0
;
-ms-transform-origin
:
0
0
;
transform-origin
:
0
0
;
-webkit-transition
:
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transform-origin
:
0
0
;
transition
:
transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
}
.c-accordion-item
.c-accordion-item__button
.c-accordion-item__button-icon
.plus
{
-webkit-transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
-ms-transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
opacity
:
1
;
}
.c-accordion-item
.c-accordion-item__button
.c-accordion-item__button-icon
.minus
{
-webkit-transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
-ms-transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
opacity
:
0
;
}
.c-accordion-item
.c-accordion-item__button
[
aria-expanded
=
true
]
.c-accordion-item__button-icon
.plus
{
-webkit-transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
-ms-transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
90deg
)
translate
(
-50%
,
-50%
);
opacity
:
0
;
-webkit-transition
:
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
transform
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
transform
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
transform
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
250ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
}
.c-accordion-item
.c-accordion-item__button
[
aria-expanded
=
true
]
.c-accordion-item__button-icon
.minus
{
-webkit-transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
-ms-transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
transform
:
rotate
(
0deg
)
translate
(
-50%
,
-50%
);
opacity
:
1
;
-webkit-transition
:
opacity
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
opacity
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
opacity
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
),
-webkit-transform
350ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
}
.c-accordion-item
.c-accordion-item__button-text
{
margin
:
0
0
0
0.75rem
;
}
.c-accordion-item
.c-accordion-item__content
{
-webkit-transition
:
max-height
850ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
max-height
850ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
max-height
850ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
max-height
:
400vh
;
}
.c-accordion-item
.c-accordion-item__content
.c-accordion-item__content-inner-wrapper
{
opacity
:
1
;
-webkit-transition
:
opacity
750ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
opacity
750ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
opacity
750ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
margin
:
0.75rem
0
0
0
;
margin
:
1.25rem
0
0
0
;
@@ -109,13 +76,9 @@
.c-accordion-item
.c-accordion-item__content
[
aria-hidden
=
true
]
{
max-height
:
0
;
overflow
:
hidden
;
-webkit-transition
:
max-height
650ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
max-height
650ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
max-height
650ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
}
.c-accordion-item
.c-accordion-item__content
[
aria-hidden
=
true
]
.c-accordion-item__content-inner-wrapper
{
opacity
:
0
;
-webkit-transition
:
opacity
550ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
-o-transition
:
opacity
550ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
transition
:
opacity
550ms
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
}
\ No newline at end of file
Loading