Skip to content

How to make bespoke-bullets classes instances visible on printing? #4

@pmalek

Description

@pmalek

I have found out that when I print, bespoke-bullet classes instances are not printed (visible) on the pdf.

After I go through the whole presentation I can print them and they will be visible on the pdf but not before that.

I have tried adding the following to the main.styl stylus stylesheet

.bespoke-bullet
  -webkit-transition: all 0.3s ease
  -moz-transition: all 0.3s ease
  -o-transition: all 0.3s ease
  transition: all 0.3s ease
  @media print
    opacity: 1
    -ms-filter: none
    filter: none

.bespoke-bullet-inactive
  opacity: 0
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
  @media print
    opacity: 1
    -ms-filter: none
    filter: none

li.bespoke-bullet-inactive
  -webkit-transform: translateX(16px)
  -moz-transform: translateX(16px)
  -o-transform: translateX(16px)
  -ms-transform: translateX(16px)
  transform: translateX(16px)
  @media print
    opacity: 1
    -ms-filter: none
    filter: none

.bespoke-bullet-active
  opacity: 1
  -ms-filter: none
  filter: none

but this won't help.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions