mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
5e4b0852c4
(merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41961 467b73ca-7a2a-4603-9d3b-597d59a354a9
118 lines
1.4 KiB
CSS
118 lines
1.4 KiB
CSS
*
|
|
{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.clickBox
|
|
{
|
|
width: 7px;
|
|
height: 7px;
|
|
background-color: red;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
}
|
|
.leftUpperClickBox
|
|
{
|
|
cursor: nw-resize;
|
|
}
|
|
|
|
.leftMiddleClickBox
|
|
{
|
|
cursor: e-resize;
|
|
}
|
|
|
|
.leftLowerClickBox
|
|
{
|
|
cursor: ne-resize;
|
|
}
|
|
|
|
.rightUpperClickBox
|
|
{
|
|
cursor: ne-resize;
|
|
}
|
|
|
|
.rightMiddleClickBox
|
|
{
|
|
cursor: w-resize;
|
|
}
|
|
|
|
.rightLowerClickBox
|
|
{
|
|
cursor: nw-resize;
|
|
}
|
|
|
|
.upperMiddleClickBox
|
|
{
|
|
cursor: n-resize;
|
|
}
|
|
|
|
.lowerMiddleClickBox
|
|
{
|
|
cursor: n-resize;
|
|
}
|
|
.inline
|
|
{
|
|
display: inline;
|
|
}
|
|
.displayNone
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
#imageContainer
|
|
{
|
|
position: absolute;
|
|
}
|
|
#menuBarContainer
|
|
{
|
|
border-bottom: 1px solid;
|
|
height: 100px;
|
|
}
|
|
#image
|
|
{
|
|
display: block;
|
|
}
|
|
.floatRight
|
|
{
|
|
float: right;
|
|
}
|
|
#loadingIndicatorContainer
|
|
{
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 1000;
|
|
}
|
|
#fakeImg
|
|
{
|
|
display: none;
|
|
}
|
|
#cropBox
|
|
{
|
|
position: absolute;
|
|
display: inline;
|
|
}
|
|
.greyBox
|
|
{
|
|
background-color: black;
|
|
position: absolute;
|
|
opacity: .5;
|
|
filter: alpha(opacity=50);
|
|
overflow:hidden;
|
|
}
|
|
body
|
|
{
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
#mainContainer
|
|
{
|
|
position: absolute;
|
|
border-color: black;
|
|
border-style: solid;
|
|
height: 40%;
|
|
width: 98%;
|
|
left: 1%;
|
|
top: 1%;
|
|
background-color: white;
|
|
} |