mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Fix gradient in schedule page in Firefox. fix #748
This commit is contained in:
parent
ed0f55c45f
commit
1efdcdc4cf
1 changed files with 11 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ background-image: -webkit-gradient(
|
|||
}
|
||||
|
||||
#schedule td.event:hover
|
||||
{
|
||||
{
|
||||
background-image: linear-gradient(bottom, rgb(247,250,242) 24%, rgb(83,171,74) 97%, rgb(83,171,74) 100%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(83,171,74) 97%, rgb(83,171,74) 100%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(83,171,74) 97%, rgb(83,171,74) 100%);
|
||||
|
|
@ -65,3 +65,13 @@ a.unstyled-link {
|
|||
color: #333333;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
#schedule td.event {
|
||||
background-image: linear-gradient(to top, #f7faf2 24%, #c2e8be 97%,
|
||||
#c2e8be 100%);
|
||||
}
|
||||
|
||||
#schedule td.event:hover {
|
||||
background-image: linear-gradient(to top, #f7faf2 24%, #53ab4a 97%,
|
||||
#53ab4a 100%);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue