mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
46 lines
797 B
CSS
46 lines
797 B
CSS
.gQuickEdit {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
border: none !important;
|
|
}
|
|
|
|
#gQuickEditPane {
|
|
background: #fff;
|
|
opacity: 0.8;
|
|
border-bottom: 1px dashed #000;
|
|
}
|
|
|
|
#gQuickEditPane div {
|
|
background-color: red;
|
|
float: right;
|
|
display: inline;
|
|
cursor: pointer;
|
|
margin: 8px;
|
|
}
|
|
|
|
#gQuickEditPane .rotate-clockwise {
|
|
background: url('../images/arrow_rotate_clockwise.png');
|
|
width: 16px;
|
|
height: 16px;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
}
|
|
|
|
#gQuickEditPane .rotate-clockwise span {
|
|
display: none;
|
|
}
|
|
|
|
#gQuickEditPane .rotate-counter-clockwise {
|
|
background: url('../images/arrow_rotate_anticlockwise.png');
|
|
width: 16px;
|
|
height: 16px;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
|
|
#gQuickEditPane .rotate-counter-clockwise span {
|
|
display: none;
|
|
}
|