mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-12 09:13:14 +00:00
beginning styling of stream menus
This commit is contained in:
parent
2a485e499e
commit
67b0ffd09c
4 changed files with 103 additions and 48 deletions
|
|
@ -10,6 +10,8 @@ For example, they don't assume the presence of a 'delete' button - it's up to th
|
|||
var self = {};
|
||||
self.prefix = prefix;
|
||||
self.container = $('#' + self.prefix + '-container');
|
||||
self.menu = $('.stream-menu', self.container);
|
||||
|
||||
var indexField = $('#' + self.prefix + '-order');
|
||||
|
||||
self.delete = function() {
|
||||
|
|
@ -28,6 +30,7 @@ For example, they don't assume the presence of a 'delete' button - it's up to th
|
|||
self.container.fadeOut();
|
||||
};
|
||||
self._markAdded = function() {
|
||||
self.menu.addClass('closed');
|
||||
self.container.hide();
|
||||
self.container.slideDown();
|
||||
};
|
||||
|
|
|
|||
|
|
@ -12,6 +12,14 @@
|
|||
listMemberTemplates[childBlock.name] = template;
|
||||
}
|
||||
|
||||
$('.stream-menu').addClass('stream-menu-closed');
|
||||
$(document).on('mouseover','.stream-menu',function(){
|
||||
$(this).removeClass('stream-menu-closed');
|
||||
}).on('mouseout', '.stream-menu', function(){
|
||||
$(this).addClass('stream-menu-closed')
|
||||
});
|
||||
|
||||
|
||||
return function(elementPrefix) {
|
||||
var sequence = Sequence({
|
||||
'prefix': elementPrefix,
|
||||
|
|
|
|||
|
|
@ -192,74 +192,116 @@
|
|||
padding-left:0;
|
||||
padding-right:0;
|
||||
}
|
||||
|
||||
/* Object controls */
|
||||
.stream-controls{
|
||||
position:absolute;
|
||||
z-index:1;
|
||||
right:1em;
|
||||
top:1em;
|
||||
color:white;
|
||||
overflow:hidden;
|
||||
@include border-radius(2px);
|
||||
|
||||
li{
|
||||
background-color: $color-teal;
|
||||
float:left;
|
||||
cursor:pointer;
|
||||
margin-right:1px;
|
||||
|
||||
&:last-child{
|
||||
margin-right:0;
|
||||
}
|
||||
}
|
||||
|
||||
.disabled{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.fields > li > .field > label{
|
||||
display:none;
|
||||
}
|
||||
.sequence{
|
||||
position:relative;
|
||||
@include clearfix;
|
||||
margin:1em 0;
|
||||
border:1px solid lighten($color-grey-4, 3%);
|
||||
padding:0 1.5em;
|
||||
|
||||
.sequence{ /* YUK! */
|
||||
padding:0 1.5em;
|
||||
margin:1em 0;
|
||||
border:1px solid lighten($color-grey-4, 3%);
|
||||
}
|
||||
}
|
||||
|
||||
.sequence-inner{
|
||||
overflow:hidden;
|
||||
|
||||
.sequence-inner{ /* YUK! */
|
||||
@include column(10);
|
||||
}
|
||||
}
|
||||
|
||||
.sequence-member{
|
||||
@include clearfix;
|
||||
position:relative;
|
||||
padding:1em 1.5em;
|
||||
border-bottom:1px solid lighten($color-grey-4, 3%);
|
||||
margin:0 -1.5em;
|
||||
|
||||
.inner{
|
||||
@include clearfix;
|
||||
}
|
||||
|
||||
.inner > .struct-block > label{
|
||||
display:block;
|
||||
width:100%;
|
||||
float:none;
|
||||
}
|
||||
}
|
||||
.sequence-inner{
|
||||
@include column(10);
|
||||
|
||||
&:nth-of-type(1){
|
||||
@include column(12);
|
||||
padding:0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.struct-block > ul > li{ /* duplicates forms.scss ln.568 */
|
||||
@include clearfix();
|
||||
padding-top:0.5em;
|
||||
padding-bottom:1.2em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Object controls */
|
||||
.stream-controls{
|
||||
position:absolute;
|
||||
z-index:1;
|
||||
right:1em;
|
||||
top:1em;
|
||||
color:white;
|
||||
overflow:hidden;
|
||||
@include border-radius(2px);
|
||||
|
||||
li{
|
||||
background-color: $color-teal;
|
||||
float:left;
|
||||
cursor:pointer;
|
||||
margin-right:1px;
|
||||
|
||||
&:last-child{
|
||||
margin-right:0;
|
||||
}
|
||||
}
|
||||
|
||||
.disabled{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Menu of other blocks to be added at each position */
|
||||
.stream-menu{
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
|
||||
ul{
|
||||
@include clearfix;
|
||||
padding:1em;
|
||||
background-color:$color-grey-5;
|
||||
}
|
||||
|
||||
&.stream-menu-closed{
|
||||
ul{
|
||||
height:0px;
|
||||
}
|
||||
|
||||
&:before{
|
||||
margin-top:-0.5em;
|
||||
font-family:wagtail;
|
||||
content:"B";
|
||||
width:2em;
|
||||
height:2em;
|
||||
display:block;
|
||||
position:relative;
|
||||
left:0;right:0;
|
||||
margin:auto;
|
||||
z-index:5;
|
||||
color:$color-teal;
|
||||
font-size:1.7em;
|
||||
line-height:2em;
|
||||
text-align:center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* special panel for the publishing fields, requires a bit more pizzazz */
|
||||
&.publishing{
|
||||
h2:before{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<ul class="stream-menu">
|
||||
{% for child_block in child_blocks %}
|
||||
<li style="display: inline;"><button type="button" id="{{ prefix }}-add-{{ child_block.name }}">{{ child_block.name }}</button></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div class="stream-menu">
|
||||
<ul>
|
||||
{% for child_block in child_blocks %}
|
||||
<li style="display: inline;"><button type="button" id="{{ prefix }}-add-{{ child_block.name }}">{{ child_block.name }}</button></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue