diff options
-rw-r--r-- | view/theme/redbasic/css/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e00fee521..4878cd23f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2321,20 +2321,20 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .onoffswitch-inner:before { content: attr(data-on); padding-right: 21px; - background-color: #EEEEEE; + background-color: $item_colour; text-align: right; } .onoffswitch-inner:after { content: attr(data-off); padding-left: 21px; - background-color: #EEEEEE; color: #999999; + background-color: $item_colour; color: #ccc; text-align: left; } .onoffswitch-switch { display: block; width: 15px; margin:4px; - background: #A1A1A1; + background: #ccc; border-radius: 10px; position: absolute; top: 0; bottom: 0; right: 36px; -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s; |