mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
remove div.handle from checkbox
This commit is contained in:
@ -4,46 +4,56 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: ($checkbox-height / 4) ($checkbox-width / 4);
|
padding: ($checkbox-height / 4) ($checkbox-width / 4);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
input {
|
.checkbox input {
|
||||||
display: none;
|
position: relative;
|
||||||
}
|
width: $checkbox-width;
|
||||||
|
height: $checkbox-height;
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
cursor: pointer;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
|
||||||
/* what the checkbox looks like when its not checked */
|
&:before {
|
||||||
.handle {
|
/* what the checkbox looks like when its not checked */
|
||||||
width: $checkbox-width;
|
display: table;
|
||||||
height: $checkbox-height;
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
border: $checkbox-border-width solid $checkbox-off-border-color;
|
border: $checkbox-border-width solid $checkbox-off-border-color;
|
||||||
border-radius: $checkbox-border-radius;
|
border-radius: $checkbox-border-radius;
|
||||||
background: $checkbox-off-bg-color;
|
background: $checkbox-off-bg-color;
|
||||||
|
content: ' ';
|
||||||
transition: background-color .1s ease-in-out;
|
transition: background-color .1s ease-in-out;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* the checkmark within the box */
|
/* the checkmark within the box */
|
||||||
.handle:after {
|
.checkbox input:after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 37%;
|
top: 37%;
|
||||||
left: $checkbox-width / 2;
|
left: 26%;
|
||||||
width: $checkbox-width / 2;
|
display: table;
|
||||||
height: $checkbox-width / 4;
|
width: $checkbox-width / 2;
|
||||||
border: $checkbox-check-width solid $checkbox-check-color;
|
height: $checkbox-width / 4;
|
||||||
border-top: none;
|
border: $checkbox-check-width solid $checkbox-check-color;
|
||||||
border-right: none;
|
border-top: none;
|
||||||
content: '';
|
border-right: none;
|
||||||
opacity: 0;
|
content: ' ';
|
||||||
transition: opacity .05s ease-in-out;
|
opacity: 0;
|
||||||
|
transition: opacity .05s ease-in-out;
|
||||||
|
|
||||||
-webkit-transform: rotate(-45deg);
|
-webkit-transform: rotate(-45deg);
|
||||||
transform: rotate(-45deg);
|
transform: rotate(-45deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* what it looks like when it is checked */
|
/* what the background looks like when its checked */
|
||||||
input:checked + .handle {
|
.checkbox input:checked:before {
|
||||||
background: $checkbox-on-bg-color;
|
border: 0;
|
||||||
|
background: $checkbox-on-bg-color;
|
||||||
|
}
|
||||||
|
|
||||||
&:after {
|
/* what the checkmark looks like when its checked */
|
||||||
opacity: 1;
|
.checkbox input:checked:after {
|
||||||
}
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@ -20,17 +20,15 @@
|
|||||||
<ul class="list">
|
<ul class="list">
|
||||||
<li class="list-item">
|
<li class="list-item">
|
||||||
Airplane Mode
|
Airplane Mode
|
||||||
<label class="checkbox" id="airplaneMode">
|
<div class="checkbox" id="airplaneMode">
|
||||||
<input type="checkbox" name="airplaneMode">
|
<input type="checkbox" name="airplaneMode">
|
||||||
<div class="handle"></div>
|
</div>
|
||||||
</label>
|
|
||||||
</li>
|
</li>
|
||||||
<li class="list-item">
|
<li class="list-item">
|
||||||
Do Not Disturb
|
Do Not Disturb
|
||||||
<label class="checkbox" id="doNotDisturb">
|
<div class="checkbox" id="doNotDisturb">
|
||||||
<input type="checkbox" name="doNotDisturb" checked="checked">
|
<input type="checkbox" name="doNotDisturb" checked="checked">
|
||||||
<div class="handle"></div>
|
</div>
|
||||||
</label>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@ -38,5 +36,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script src="../dist/js/ionic.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user