@ryannerd/ember-toggle-button
Version:
Ember CLI ember-toggle-button component add-on.
34 lines (32 loc) • 670 B
CSS
.toggle-right:before
{
height: 22px;
width: 20px;
display: block;
text-align: center;
content: "\25C0";
transition: .15s ease;
z-index: 2000;
cursor: pointer;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
position: absolute;
border-left: 1px solid #D4D4D4;
box-shadow: 1px 0px 8px rgba(0, 0, 0, 0.175);
}
.toggle-left:before
{
height: 22px;
width: 20px;
display: block;
text-align: center;
content: "\25b6";
transition: .15s ease;
z-index: 2000;
cursor: pointer;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
position: absolute;
border-left: 1px solid #D4D4D4;
box-shadow: 1px 0px 8px rgba(0, 0, 0, 0.175);
}