Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icon request: icon-print-preview #640

Closed
themiacat opened this issue Jan 7, 2013 · 56 comments
Closed

Icon request: icon-print-preview #640

themiacat opened this issue Jan 7, 2013 · 56 comments

Comments

@themiacat
Copy link

One for print preview, another for previewing a electronic draft of something that usually does not get printed onto a paper.

Love Font Awesome.

@davegandy
Copy link
Member

Have any images to use as an example?

@themiacat
Copy link
Author

PrintPreview for previewing before printing.

Preview to preview something that usually does not get printed (i.e. previewing an online survey you've created to see how your users will see them). Or maybe an icon like this
PreviewDocument

Thanks!

@davegandy
Copy link
Member

I'll see if I can get this to read at 14px. I like the idea.

@twisk
Copy link

twisk commented Jun 25, 2013

I like the idea of the preview icon (second example): https://f.cloud.github.com/assets/2192887/60616/0a74e4da-5c18-11e2-919c-7e63c821839c.jpg

👍

@roelvanduijnhoven
Copy link

Could surely use this in my project as well! The icon I use now is not understood by everyone.

@Danthar
Copy link

Danthar commented Mar 27, 2014

This gets my +1

@TheSisb
Copy link

TheSisb commented Oct 22, 2014

+1 here - kind of surprised this simple icon isn't already part of the package heh

@ruvenss
Copy link

ruvenss commented Nov 26, 2014

👍

9 similar comments
@scofield-ua
Copy link

👍

@ruckc
Copy link

ruckc commented Dec 19, 2014

+1

@stepev
Copy link

stepev commented Feb 2, 2015

👍

@jhubert
Copy link

jhubert commented Apr 3, 2015

👍

@lorencs
Copy link

lorencs commented Jul 7, 2015

+1

@hybopressthemes
Copy link

+1

@LuisCDias
Copy link

+1

@Psychokrameur
Copy link

+1

@Slayer95
Copy link

Slayer95 commented Aug 7, 2015

+1

@robbytaylor
Copy link

+1 for a preview icon

@ghost
Copy link

ghost commented Aug 12, 2015

+1

2 similar comments
@mansimransingh
Copy link

+1

@jkarr
Copy link

jkarr commented Aug 24, 2015

+1

@enkodellc
Copy link

+1

-css hack

.fa-lower-right {
  left: 4px !important;
  top: 2px !important;
}
.fa-upper-left {
  left: -2px !important;
  top: -2px !important;
}

code

        <span class="fa-stack" tooltip="Preview" tooltip-popup-delay="750">
                  <i class="fa fa-search fa-stack-1x fa-lower-right"></i>
                  <i class="fa fa-file-o fa-stack-1x fa-upper-left"></i>
                </span>

@MrLonely14
Copy link

+1

@marchrius
Copy link

+1 for request and +1 @enkodellc for hack!

Edit: this is my revision of the above code from ernkodellc to fit a width similary to fa-fw
CSS

.fa-lower-right {
    left: 6px !important;
    top: -10px !important;
}
.fa-upper-left {
    left: 0px !important;
    top: -12px !important;
}
.fa-stack-15x {
    font-size: 1.5em;
}

.fa-stack-15 {
    height: inherit;
}

HTML

<span class="fa-stack fa-stack-15" tooltip="Info utente" tooltip-popup-delay="750">
<i class="fa fa-search fa-stack-1x fa-lower-right"></i>
<i class="fa fa-file-o fa-stack-2x fa-stack-15x fa-upper-left"></i>
</span>

prev

@zendre4
Copy link

zendre4 commented Nov 14, 2015

+1

@balasankarc
Copy link

@davegandy Hi, just a reminder about this issue. Any idea when this will get implemented?

@lrasmus
Copy link

lrasmus commented Sep 15, 2016

+1

8 similar comments
@vascop
Copy link

vascop commented Nov 6, 2016

+1

@erhanfirat
Copy link

+1

@sergii-golik
Copy link

+1

@gvensan
Copy link

gvensan commented Mar 21, 2017

+1

@CaitlinMurphy
Copy link

+1

@ghost
Copy link

ghost commented Jun 21, 2017

+1

@KazakovVS
Copy link

+1

@hicklin-james
Copy link

+1

@darrell-aevum
Copy link

Almost 5 years later, apparently +1 doesn't mean anything.

@adil9
Copy link

adil9 commented Nov 9, 2017

@dareel-aevum exactly, I just keep getting notifications of all these +1 for apparent no reason.

@ColdHeat
Copy link

ColdHeat commented Dec 5, 2017

I'm amazed that the open source community hasn't simply combined fa-search and fa-file-o into one icon. This is going on 5 years old.

@mervinva
Copy link

mervinva commented Dec 28, 2017

+1
@davegandy

@Roy-Orbison
Copy link

A cheaper workaround that doesn't need extra markup:

.fa-preview:before {
    content: "\f016";
}
.fa-preview:after {
    content: "\f002";
    display: inline-block;
    font-size: 65%;
    margin-left: -22%;
}

Renders as
image

@sensibleworld sensibleworld self-assigned this Apr 1, 2018
@sensibleworld sensibleworld removed their assignment May 11, 2018
@sensibleworld sensibleworld self-assigned this Dec 18, 2018
@sensibleworld sensibleworld added this to the 5.7.0 milestone Jan 29, 2019
@sensibleworld
Copy link
Member

We added a new print-search icon to the latest Font Awesome Release: https://fontawesome.com/icons/print-search?style=solid

I'll keep this issue open until we get the file-search icon added.

@tagliala tagliala removed this from the 5.7.0 milestone Feb 2, 2019
@TimShilov
Copy link

And here's my workaround. Maybe someone will like it.
CSS:

.fa-file-preview {
    position: relative;
}

.fa-file-preview:before {
    content: '\f016';
}

.fa-file-preview:after {
    content: '\f002';
    font-size: 0.6em;
    position: absolute;
    top: 0.5em;
    right: -0.1em;
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff,
        0.5px 0.5px #fff, -0.5px -0.5px 0 #fff, 0.5px -0.5px 0 #fff,
        -0.5px 0.5px 0 #fff;
}

HTML:

<i class="fa fa-file-preview"></i>

Renders as:
SharedScreenshot jpg

@sensibleworld
Copy link
Member

Okay! We've finally added a file-search icon as well. Check it out here: https://fontawesome.com/icons/file-search?style=solid

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests