Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
74e7316c
Commit
74e7316c
authored
Jul 14, 2019
by
Nick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: details + summary tag styles
parent
59dc6fde
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
app.scss
client/themes/default/scss/app.scss
+44
-0
No files found.
client/themes/default/scss/app.scss
View file @
74e7316c
...
...
@@ -574,4 +574,48 @@
}
}
// ---------------------------------
// DETAILS
// ---------------------------------
details
{
background-color
:
mc
(
'grey'
,
'50'
);
margin
:
1rem
2rem
;
border
:
1px
solid
mc
(
'grey'
,
'300'
);
border-radius
:
7px
;
>
p
{
padding-left
:
0
;
}
summary
{
border-radius
:
7px
;
background-color
:
mc
(
'grey'
,
'50'
);
cursor
:
pointer
;
height
:
40px
;
display
:
flex
;
align-items
:
center
;
padding
:
0
1rem
;
transition
:
background-color
.4s
ease
;
&
:focus
{
outline
:
none
;
background-color
:
mc
(
'grey'
,
'100'
);
}
}
&
[
open
]
{
padding
:
1rem
;
summary
{
background-color
:
mc
(
'grey'
,
'100'
);
border-bottom
:
1px
solid
mc
(
'grey'
,
'300'
);
border-bottom-left-radius
:
0
;
border-bottom-right-radius
:
0
;
margin
:
-1rem
-1rem
1rem
-1rem
;
}
}
}
}
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