diff --git a/source/Ox.UI/css/Ox.UI.css b/source/Ox.UI/css/Ox.UI.css index f594ab98..81003973 100644 --- a/source/Ox.UI/css/Ox.UI.css +++ b/source/Ox.UI/css/Ox.UI.css @@ -222,7 +222,7 @@ Calendar .OxCalendar .OxLine > .OxEvent.OxDate { background: -moz-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9)); background: -o-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9)); - background: -webkit-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9)); + background: -webkit-linear-gradient(top, rgba(96, 96, 255, 0.9), rgba(64, 64, 224, 0.9)); } .OxCalendar .OxLine > .OxEvent.OxPlace { background: -moz-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9)); @@ -263,7 +263,7 @@ Calendar cursor: ew-resize; } .OxCalendar .OxOverlay div:nth-child(even) { - height: 14px; + border-radius: 4px; } .OxCalendar .OxRange .OxArrow { diff --git a/source/Ox.UI/themes/classic/css/classic.css b/source/Ox.UI/themes/classic/css/classic.css index 17a383e7..8fdc9a49 100644 --- a/source/Ox.UI/themes/classic/css/classic.css +++ b/source/Ox.UI/themes/classic/css/classic.css @@ -119,11 +119,11 @@ Calendar } .OxThemeClassic .OxCalendar .OxOverlay div:nth-child(even) { - border-top: 1px solid rgba(0, 0, 0, 0.5); - border-bottom: 1px solid rgba(0, 0, 0, 0.5); + background-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 0 2px rgb(0, 0, 0); } .OxThemeClassic .OxCalendar .OxOverlay div:nth-child(odd) { - background-color: rgba(255, 255, 255, 0.5); + background-color: rgba(255, 255, 255, 0.25); } /* diff --git a/source/Ox.UI/themes/modern/css/modern.css b/source/Ox.UI/themes/modern/css/modern.css index 6af8e43e..6bcd4784 100644 --- a/source/Ox.UI/themes/modern/css/modern.css +++ b/source/Ox.UI/themes/modern/css/modern.css @@ -118,11 +118,11 @@ Calendar } .OxThemeModern .OxCalendar .OxOverlay div:nth-child(even) { - border-top: 1px solid rgba(255, 255, 255, 0.5); - border-bottom: 1px solid rgba(255, 255, 255, 0.5); + background-color: rgba(255, 255, 255, 0.25); + box-shadow: inset 0 0 2px rgb(255, 255, 255); } .OxThemeModern .OxCalendar .OxOverlay div:nth-child(odd) { - background-color: rgba(0, 0, 0, 0.5); + background-color: rgba(0, 0, 0, 0.25); }