mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-30 10:50:08 +00:00
added corner mark style, still not decided which to use...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
0ccf460334
commit
a895ed85fe
@ -56,6 +56,7 @@
|
|||||||
width: 300px;
|
width: 300px;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
background: black;
|
background: black;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -66,8 +67,7 @@
|
|||||||
background: red;
|
background: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX this misbehaves... (happens with page zoom)
|
/* dot mark... */
|
||||||
...this is not uniform circle for some reason... */
|
|
||||||
.marked.image:after {
|
.marked.image:after {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -75,8 +75,8 @@
|
|||||||
font-size: 0pt;
|
font-size: 0pt;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
width: 5px;
|
width: 15px;
|
||||||
height: 5px;
|
height: 15px;
|
||||||
|
|
||||||
bottom: 5px;
|
bottom: 5px;
|
||||||
right: 5px;
|
right: 5px;
|
||||||
@ -85,6 +85,30 @@
|
|||||||
background: blue;
|
background: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* corner mark... (a-la bookmarks in PortableMag) */
|
||||||
|
/*
|
||||||
|
.marked.image:after {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
font-size: 0pt;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
|
||||||
|
top: -15px;
|
||||||
|
right: -15px;
|
||||||
|
|
||||||
|
background: blue;
|
||||||
|
|
||||||
|
-webkit-transform: rotate(45deg);
|
||||||
|
-moz-transform: rotate(45deg);
|
||||||
|
-o-transform: rotate(45deg);
|
||||||
|
-ms-transform: rotate(45deg);
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user