Arc-theme: Graphical glitch in elementaryOS Photos' app

Created on 17 Oct 2016  路  2Comments  路  Source: horst3180/arc-theme

Perfectly described here.

mnxrk

I have the same issue in Loki (gnome 3.18) with Arc theme version 20161005 (manually installed).

bug

Most helpful comment

pantheon-photos IS elementary OS "Photos".
Adding this snippet from the elementary theme (gtk3/apps.css) to both gtk.css and gtk-dark.css in the gtk-3.18 subfolder solved it for me for all Arc (based) themes. I'm on elementary OS 0.4.1 with GTK+ 3.18.9. I placed the snippet after the first closing curly bracket.

... }


    /**********
     * Photos *
     *********/

    .checkerboard-layout {
        background-color: #383e41;
        background-image:
            linear-gradient(
                45deg,
                alpha (
                    #000,
                    0.1
                ) 25%,
                transparent 25%,
                transparent 75%,
                alpha (
                    #000,
                    0.1
                ) 75%,
                alpha (
                    #000,
                    0.1
                )
            ),
            linear-gradient(
                45deg,
                alpha (
                    #000,
                    0.1
                ) 25%,
                transparent 25%,
                transparent 75%,
                alpha (
                    #000,
                    0.1
                ) 75%,
                alpha (
                    #000,
                    0.1
                )
            );
        background-size: 24px 24px;
        background-position: 0 0, 12px 12px;
    }

    .checkboard-layout .item {
        background-color: #eee;
    }

    /* end Photos snippet */

All 2 comments

I'm experiencing this exact same issue with pantheon-photos

pantheon-photos IS elementary OS "Photos".
Adding this snippet from the elementary theme (gtk3/apps.css) to both gtk.css and gtk-dark.css in the gtk-3.18 subfolder solved it for me for all Arc (based) themes. I'm on elementary OS 0.4.1 with GTK+ 3.18.9. I placed the snippet after the first closing curly bracket.

... }


    /**********
     * Photos *
     *********/

    .checkerboard-layout {
        background-color: #383e41;
        background-image:
            linear-gradient(
                45deg,
                alpha (
                    #000,
                    0.1
                ) 25%,
                transparent 25%,
                transparent 75%,
                alpha (
                    #000,
                    0.1
                ) 75%,
                alpha (
                    #000,
                    0.1
                )
            ),
            linear-gradient(
                45deg,
                alpha (
                    #000,
                    0.1
                ) 25%,
                transparent 25%,
                transparent 75%,
                alpha (
                    #000,
                    0.1
                ) 75%,
                alpha (
                    #000,
                    0.1
                )
            );
        background-size: 24px 24px;
        background-position: 0 0, 12px 12px;
    }

    .checkboard-layout .item {
        background-color: #eee;
    }

    /* end Photos snippet */
Was this page helpful?
0 / 5 - 0 ratings

Related issues

phpbugcn picture phpbugcn  路  5Comments

martinrotter picture martinrotter  路  6Comments

EmyrB picture EmyrB  路  7Comments

ElvisPresly picture ElvisPresly  路  6Comments

cbcoutinho picture cbcoutinho  路  3Comments