1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/styles/components/splitbuttons.css
Aileen Nowak 750d55737f 🎨 No more icon font: {{inline-svg}} (#605)
refs TryGhost/Ghost#8107
- Replaces icon font with `{{inline-svg}}` helper incl. necessary style adjustments.
2017-04-07 16:23:45 +01:00

73 lines
1.5 KiB
CSS

/* Splitbuttons
/* ---------------------------------------------------------- */
.splitbtn {
position: relative;
display: inline-block;
vertical-align: middle;
/* Flatten out the right side */
/* Flatten out the left side */
}
.splitbtn .gh-btn {
position: relative;
float: left;
/* Prevent double border between buttons */
/* Make sure the hovered element is always on
// top so overlap from .gh-btn + btn. invisible */
}
.splitbtn .gh-btn + .gh-btn {
margin-left: -1px;
}
.splitbtn .gh-btn:hover,
.splitbtn .gh-btn:focus,
.splitbtn .gh-btn:active,
.splitbtn .gh-btn.active {
z-index: 2;
}
.splitbtn .gh-btn:first-child {
margin-left: 0;
}
.splitbtn .gh-btn:first-child:not(:last-child):not(.dropdown-toggle) {
height: 31px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.splitbtn .dropdown-toggle {
padding-right: 12px;
padding-left: 12px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
/* This is the additional dropdown arrow, to the right of the button. */
}
.splitbtn .dropdown-toggle.gh-btn-sm {
padding-right: 10px;
padding-left: 10px;
height: 31px;
}
.splitbtn .dropdown-toggle.gh-btn-lg {
padding-right: 16px;
padding-left: 16px;
}
.splitbtn .dropdown-toggle .options {
color: #fff;
text-align: center;
}
.splitbtn .dropdown-toggle svg {
height: 10px;
fill: #fff;
}
.splitbtn .dropdown-toggle svg path {
stroke: #fff;
stroke-width: 2px;
}