Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wordpress-plugin-cellframe-explorer
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
wordpress-plugin-cellframe-explorer
Merge requests
!1
Features 4674
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Features 4674
features-4674
into
master
Overview
0
Commits
7
Pipelines
0
Changes
52
Merged
Mira
requested to merge
features-4674
into
master
3 years ago
Overview
0
Commits
7
Pipelines
0
Changes
5
Expand
Update Circulating Supply
👍
0
👎
0
Merge request reports
Viewing commit
a8daf76a
Prev
Next
Show latest version
5 files
+
215
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
a8daf76a
[+] Added switcher between Event explorer and Transaction explorer.
· a8daf76a
alexey.stratulat
authored
3 years ago
css/tabs.css
0 → 100644
+
76
−
0
Options
.wrapper
{
min-width
:
600px
;
max-width
:
900px
;
margin
:
0
auto
;
}
.tabs
{
display
:
table
;
table-layout
:
fixed
;
width
:
100%
;
-webkit-transform
:
translateY
(
5px
);
transform
:
translateY
(
5px
);
}
.tabs
>
li
{
transition-duration
:
0.25s
;
display
:
table-cell
;
list-style
:
none
;
text-align
:
center
;
padding
:
20px
20px
25px
20px
;
position
:
relative
;
overflow
:
hidden
;
cursor
:
pointer
;
color
:
black
;
}
.tabs
>
li
:before
{
z-index
:
-1
;
position
:
absolute
;
content
:
""
;
width
:
100%
;
height
:
120%
;
top
:
0
;
left
:
0
;
background-color
:
rgba
(
255
,
255
,
255
,
0.3
);
-webkit-transform
:
translateY
(
100%
);
transform
:
translateY
(
100%
);
transition-duration
:
0.25s
;
border-radius
:
5px
5px
0
0
;
}
.tabs
>
li
:hover:before
{
-webkit-transform
:
translateY
(
70%
);
transform
:
translateY
(
70%
);
}
.tabs
>
li
.active
{
color
:
#50555a
;
border-style
:
inset
;
}
.tabs
>
li
.active
:before
{
transition-duration
:
0.5s
;
background-color
:
white
;
-webkit-transform
:
translateY
(
0
);
transform
:
translateY
(
0
);
}
.tab__content
{
background-color
:
white
;
position
:
relative
;
width
:
100%
;
border-radius
:
5px
;
}
.tab__content
>
li
{
width
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
;
display
:
none
;
list-style
:
none
;
}
.tab__content
>
li
.content__wrapper
{
text-align
:
center
;
border-radius
:
5px
;
width
:
100%
;
padding
:
45px
40px
40px
40px
;
background-color
:
white
;
}
Loading