Asteroid Zoo Talk

Classifying page modding, Cursor & Markers. (Chrome + Stylebot)

  • MvGulik by MvGulik

    Just something for those that have, and can, use it.
    (Stylebot, or other similar browser extension required)

    -- Changing marking cursor to a simple crosshair. kinda like the default browser crosshair, but bigger and with a open center (blocked center being the biggest issue of the current used cursor in my view.).

    .classifier .surfaces-container {  
        cursor:url(./images/cursor.png) 16 15, auto;  
    }  
    

    -- Changing the transparency on committed markers. (seems to be implemented, but not in a working state.)

    .marking-tool-root {  
        opacity: 0.66;  
    }  
    .marking-tool-root.selected {  
        opacity: 1;  
    }

    Posted

  • MvGulik by MvGulik

    Just some experiment.

    .asteroid-subject-viewer .images-container img {
    	padding: 10% 0% 0% 10%;
    	background-image:
    		repeating-linear-gradient(0deg, transparent, transparent 8.8%, #000 8.8%, transparent 9.09%),
    		repeating-linear-gradient(-90deg, transparent, transparent 8.8%, #000 8.8%, transparent 9.09%);
    }
    

    Notes:

    • Is Html CSS 3.
    • Not very useful on its own. (just test case)

    Posted