#163361 by dvessel: fix hidden textareas in Opera and remove gap between textarea and grippie in Firefox/Safari
parent
f2448fe718
commit
b3d3e39c47
|
@ -10,7 +10,7 @@ Drupal.behaviors.textarea = function(context) {
|
||||||
.parent().append($('<div class="grippie"></div>').mousedown(startDrag));
|
.parent().append($('<div class="grippie"></div>').mousedown(startDrag));
|
||||||
|
|
||||||
// Inherit visibility
|
// Inherit visibility
|
||||||
if ($(this).is(':hidden')) {
|
if ($(this).is('[@disabled]')) {
|
||||||
$(this).parent().hide();
|
$(this).parent().hide();
|
||||||
$(this).show();
|
$(this).show();
|
||||||
}
|
}
|
||||||
|
|
|
@ -381,6 +381,7 @@ html.js fieldset.collapsible .fieldset-wrapper {
|
||||||
html.js .resizable-textarea textarea {
|
html.js .resizable-textarea textarea {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue