Skip to content

Commit

Permalink
Fix bug where a.button style from managesieve plugin could impact oth…
Browse files Browse the repository at this point in the history
…er elements (#5800)
  • Loading branch information
alecpl committed Jun 28, 2017
1 parent b7fe41d commit c608d06
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ CHANGELOG Roundcube Webmail
- Fix uninitialized string offset in rcube_utils::bin2ascii() and make sure rcube_utils::random_bytes() result has always requested length (#5788)
- Fix bug where HTML messages with @media styles could moddify style of page body (#5811)
- Fix style issue on selected and unfocused message that is part of a thread (#5798)
- Fix bug where a.button style from managesieve plugin could impact other elements (#5800)

RELEASE 1.3.0
-------------
Expand Down
14 changes: 7 additions & 7 deletions plugins/managesieve/skins/larry/managesieve.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
#filtersetslist tbody tr.disabled td
{
color: #87A3AA;
text-decoration: line-through;
text-decoration: line-through;
}

#filtersetslist tbody td
Expand Down Expand Up @@ -280,13 +280,13 @@ span.sieve.error
background-color: #eee;
}

a.button
#filter-form a.button
{
margin: 0;
padding: 0;
}

a.button.add
#filter-form a.button.add
{
background: url(images/add.png?v=a165.280) no-repeat;
width: 30px;
Expand All @@ -295,15 +295,15 @@ a.button.add
display: inline-block;
}

a.button.del
#filter-form a.button.del
{
background: url(images/del.png?v=3c27.247) no-repeat;
width: 30px;
height: 20px;
display: inline-block;
}

a.button.disabled
#filter-form a.button.disabled
{
opacity: 0.35;
filter: alpha(opacity=35);
Expand Down Expand Up @@ -419,8 +419,8 @@ body.iframe.mail #filter-form
/* vacation form */
#settings-sections .vacation a {
background-image: url(images/vacation_icons.png?v=e738.767);
background-repeat: no-repeat;
background-position: 7px 1px;
background-repeat: no-repeat;
background-position: 7px 1px;
}

#settings-sections .vacation.selected a {
Expand Down

0 comments on commit c608d06

Please sign in to comment.