Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JUNCA24 RevealJS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PGI15-Teaching
JUNCA24 RevealJS
Commits
03fe25c1
Unverified
Commit
03fe25c1
authored
1 year ago
by
Hakim El Hattab
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #3464 from t-fritsch/fix-dracula-theme-li-marker-colors
fix dracula li markers
parents
680cf5ed
81ea1162
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
css/theme/source/dracula.scss
+16
-42
16 additions, 42 deletions
css/theme/source/dracula.scss
dist/theme/dracula.css
+2
-33
2 additions, 33 deletions
dist/theme/dracula.css
with
18 additions
and
75 deletions
css/theme/source/dracula.scss
+
16
−
42
View file @
03fe25c1
...
...
@@ -86,47 +86,21 @@ $codeFont: "Fira Code", $systemFontsMono;
--r-list-bullet-color
:
#{
$listBulletColor
}
;
}
.reveal
strong
,
.reveal
b
{
color
:
var
(
--
r-bold-color
);
.reveal
{
strong
,
b
{
color
:
var
(
--
r-bold-color
);
}
em
,
i
,
blockquote
{
color
:
var
(
--
r-italic-color
);
}
code
{
color
:
var
(
--
r-inline-code-color
);
}
// Dracula colored list bullets and numbers
ul
,
ol
{
li
:
:
marker
{
color
:
var
(
--
r-list-bullet-color
);
}
}
}
.reveal
em
,
.reveal
i
,
.reveal
blockquote
{
color
:
var
(
--
r-italic-color
);
}
.reveal
code
{
color
:
var
(
--
r-inline-code-color
);
}
// Dracula colored list bullets and numbers
.reveal
ul
{
list-style
:
none
;
}
.
reveal
ul
li
:
:
before
{
content
:
"•"
;
color
:
var
(
--
r-list-bullet-color
);
display
:
inline-block
;
width
:
1em
;
margin-left
:
-1em
}
.reveal
ol
{
list-style
:
none
;
counter-reset
:
li
;
}
.
reveal
ol
li
:
:
before
{
content
:
counter
(
li
)
"."
;
color
:
var
(
--
r-list-bullet-color
);
display
:
inline-block
;
width
:
2em
;
margin-left
:
-2
.5em
;
margin-right
:
0
.5em
;
text-align
:
right
;
}
.reveal
ol
li
{
counter-increment
:
li
}
This diff is collapsed.
Click to expand it.
dist/theme/dracula.css
+
2
−
33
View file @
03fe25c1
@charset
"UTF-8"
;
/**
* Dracula Dark theme for reveal.js.
* Based on https://draculatheme.com
...
...
@@ -373,42 +372,12 @@ section.has-light-background, section.has-light-background h1, section.has-light
.reveal
strong
,
.reveal
b
{
color
:
var
(
--r-bold-color
);
}
.reveal
em
,
.reveal
i
,
.reveal
blockquote
{
color
:
var
(
--r-italic-color
);
}
.reveal
code
{
color
:
var
(
--r-inline-code-color
);
}
.reveal
ul
li
{
list-style
:
none
;
}
.reveal
ul
li
::before
{
content
:
"•"
;
.reveal
ul
li
::marker
,
.reveal
ol
li
::marker
{
color
:
var
(
--r-list-bullet-color
);
display
:
inline-block
;
width
:
1em
;
margin-left
:
-1em
;
}
.reveal
ol
{
list-style
:
none
;
counter-reset
:
li
;
}
.reveal
ol
li
::before
{
content
:
counter
(
li
)
"."
;
color
:
var
(
--r-list-bullet-color
);
display
:
inline-block
;
width
:
2em
;
margin-left
:
-2.5em
;
margin-right
:
0.5em
;
text-align
:
right
;
}
.reveal
ol
li
{
counter-increment
:
li
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment