58 lines
No EOL
1.1 KiB
CSS
58 lines
No EOL
1.1 KiB
CSS
.django-ace-widget {
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.django-ace-widget > div {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.django-ace-widget.loading {
|
|
display: none;
|
|
}
|
|
|
|
.django-ace-toolbar {
|
|
font-size: 12px;
|
|
text-align: left;
|
|
color: #555;
|
|
text-shadow: 0 1px 0 #fff;
|
|
border-bottom: 1px solid #d8d8d8;
|
|
background-color: #eaeaea;
|
|
background-image: -moz-linear-gradient(#fafafa, #eaeaea);
|
|
background-image: -webkit-linear-gradient(#fafafa, #eaeaea);
|
|
background-image: linear-gradient(#fafafa, #eaeaea);
|
|
background-repeat: repeat-x;
|
|
clear: both;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.django-ace-max_min {
|
|
float: right;
|
|
padding: 5px;
|
|
|
|
background: url(img/expand.png) no-repeat 5px 5px;
|
|
display: block;
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
.django-ace-editor {
|
|
position: relative;
|
|
}
|
|
|
|
.django-ace-editor-fullscreen {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.django-ace-editor-fullscreen .django-ace-max_min {
|
|
background-image: url(img/contract.png);
|
|
} |