Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
Fixed border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
moldcraft committed Nov 29, 2014
1 parent 2e34fc8 commit 4d213b2
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
overflow: hidden;
height: 2em;
}
.adaptive-switch,
.adaptive-switch .switch-inner {
-webkit-border-radius: 1000px;
-moz-border-radius: 1000px;
border-radius: 1000px;
}

.adaptive-switch label.switch-label {
display: block;;
Expand Down Expand Up @@ -82,19 +76,26 @@
display: inline-block;
}

.adaptive-switch .switch-dot,
.adaptive-switch .switch-dot div span {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.adaptive-switch .switch-dot,
.adaptive-switch .switch-switcher label.switch-label {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.adaptive-switch,
.adaptive-switch .switch-inner,
.adaptive-switch .switch-dot {
-webkit-border-radius: 1000px;
-moz-border-radius: 1000px;
border-radius: 1000px;
}
.adaptive-switch .switch-dot div span {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}

.adaptive-switch ::-moz-selection {
background: transparent;
}
Expand Down

0 comments on commit 4d213b2

Please sign in to comment.