mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
fix button to only assign et2_button_text class, if we really have a text in the button and style it correctly for nextmatch
This commit is contained in:
parent
3a00764669
commit
d2e26f6e10
@ -99,7 +99,7 @@ var et2_button = et2_baseWidget.extend([et2_IInput, et2_IDetachedDOM],
|
||||
if (!this.options.readonly)
|
||||
{
|
||||
this.btn = $j(document.createElement("button"))
|
||||
.addClass("et2_button et2_button_text")
|
||||
.addClass("et2_button")
|
||||
.attr({type:"button"});
|
||||
this.setDOMNode(this.btn[0]);
|
||||
}
|
||||
@ -290,6 +290,11 @@ var et2_button = et2_baseWidget.extend([et2_IInput, et2_IDetachedDOM],
|
||||
this.label = _value;
|
||||
|
||||
this.btn.text(_value);
|
||||
|
||||
if (_value && !this.image)
|
||||
this.btn.addClass('et2_button_text');
|
||||
else
|
||||
this.btn.removeClass('et2_button_text');
|
||||
}
|
||||
if(this.image)
|
||||
{
|
||||
|
@ -549,8 +549,7 @@ for printing
|
||||
div.et2_file {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
margin-left: 8px;
|
||||
vertical-align: top;
|
||||
margin-top: 0;
|
||||
}
|
||||
.et2_file .progress_dropDown_fileList {
|
||||
@ -626,13 +625,12 @@ span.et2_file_span{
|
||||
cursor: pointer;
|
||||
height: 15px;
|
||||
text-align: left;
|
||||
text-indent: 18px;
|
||||
text-indent: 22px;
|
||||
white-space: nowrap;
|
||||
margin-top:0;
|
||||
}
|
||||
div.et2_file input.et2_file_upload{
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
cursor: pointer;
|
||||
width: 98%;
|
||||
opacity: 0;
|
||||
@ -1630,7 +1628,7 @@ div.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button {
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image, .nextmatch_header_row button.et2_button {
|
||||
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image, .nextmatch_header_row .et2_button {
|
||||
width: 24px;
|
||||
background-position: center;
|
||||
background-size: 16px 16px;
|
||||
@ -1638,10 +1636,12 @@ div.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button {
|
||||
padding-left: 0;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image.et2_toolbar_hasCaption {
|
||||
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image.et2_toolbar_hasCaption, .nextmatch_header_row .et2_button_text {
|
||||
width:auto;
|
||||
background-position: 6px center;
|
||||
padding-left: 30px;
|
||||
padding-left: 26px;
|
||||
padding-right: 5px;
|
||||
color: #5B5B5B;
|
||||
}
|
||||
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image.et2_toolbar_onlyCaption {
|
||||
vertical-align: top;
|
||||
@ -2313,7 +2313,6 @@ td.avatar {
|
||||
.et2_searchbox {
|
||||
position: relative;
|
||||
padding: 0 0 0 0px;
|
||||
z-index: 500;
|
||||
}
|
||||
.et2_searchbox .flex.overlay input {
|
||||
position: absolute;
|
||||
|
Loading…
Reference in New Issue
Block a user