Browse Source

Fix bug where a.button style from managesieve plugin could impact other elements (#5800)

pull/5890/head
Aleksander Machniak 8 years ago
parent
commit
c608d063af
  1. 1
      CHANGELOG
  2. 14
      plugins/managesieve/skins/larry/managesieve.css

1
CHANGELOG

@ -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
-------------

14
plugins/managesieve/skins/larry/managesieve.css

@ -58,7 +58,7 @@
#filtersetslist tbody tr.disabled td
{
color: #87A3AA;
text-decoration: line-through;
text-decoration: line-through;
}
#filtersetslist tbody td
@ -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;
@ -295,7 +295,7 @@ 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;
@ -303,7 +303,7 @@ a.button.del
display: inline-block;
}
a.button.disabled
#filter-form a.button.disabled
{
opacity: 0.35;
filter: alpha(opacity=35);
@ -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 {

Loading…
Cancel
Save