mirror of
https://github.com/Noratrieb/slides.git
synced 2026-01-15 17:05:06 +01:00
invert colors of controls based on current background
This commit is contained in:
parent
ce4537f883
commit
69c72b9e08
2 changed files with 23 additions and 5 deletions
|
|
@ -365,9 +365,9 @@ body {
|
|||
width: $length;
|
||||
height: $thickness;
|
||||
border-radius: $thickness/2;
|
||||
background: #fff;
|
||||
background-color: #fff;
|
||||
|
||||
transition: all 0.15s ease;
|
||||
transition: all 0.15s ease, background-color 0.8s ease;
|
||||
transform-origin: $thickness/2 50%;
|
||||
}
|
||||
|
||||
|
|
@ -453,6 +453,16 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
.reveal.has-dark-background .controls[data-controls-type="edges"] button:after,
|
||||
.reveal.has-dark-background .controls[data-controls-type="edges"] button:before {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.reveal.has-light-background .controls[data-controls-type="edges"] button:after,
|
||||
.reveal.has-light-background .controls[data-controls-type="edges"] button:before {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
|
||||
/*********************************************
|
||||
* PROGRESS BAR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue