2015-05-14 16:45:37 +03:00
|
|
|
/* Buttons
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* Base button style */
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Should only be applied to <a> tags */
|
|
|
|
.gh-btn {
|
2015-08-27 13:14:59 +03:00
|
|
|
display: inline-block;
|
2017-02-16 22:50:05 +03:00
|
|
|
outline: none;
|
2019-06-18 13:47:21 +03:00
|
|
|
background: var(--white);
|
|
|
|
box-shadow: 0 2px 5px -3px rgba(0,0,0,.12);
|
|
|
|
color: color-mod(var(--midgrey) l(-7%));
|
2017-02-16 22:50:05 +03:00
|
|
|
text-decoration: none !important;
|
|
|
|
user-select: none;
|
2019-06-18 13:47:21 +03:00
|
|
|
fill: color-mod(var(--midgrey) l(-7%));
|
|
|
|
border: 1px solid color-mod(var(--midgrey) l(+35%) s(+10%));
|
2017-02-17 17:10:02 +03:00
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 0.2s ease;
|
2019-06-18 13:47:21 +03:00
|
|
|
transition-property: color, border-color, background, width, height, box-shadow;
|
2017-02-16 22:50:05 +03:00
|
|
|
|
|
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ALL buttons must have a span for content */
|
|
|
|
.gh-btn span {
|
|
|
|
display: block;
|
2017-04-11 15:09:09 +03:00
|
|
|
overflow: hidden;
|
2019-06-18 13:47:21 +03:00
|
|
|
padding: 0 11px;
|
2019-06-21 14:52:39 +03:00
|
|
|
height: 33px;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
line-height: 33px;
|
2017-02-16 22:50:05 +03:00
|
|
|
font-weight: 400;
|
2015-05-14 16:45:37 +03:00
|
|
|
text-align: center;
|
2017-02-16 22:50:05 +03:00
|
|
|
letter-spacing: 0.2px;
|
2017-02-17 17:10:02 +03:00
|
|
|
border-radius: 4px;
|
2017-04-11 15:09:09 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2017-02-17 17:10:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn:hover {
|
2019-06-18 13:47:21 +03:00
|
|
|
color: var(--darkgrey);
|
|
|
|
box-shadow: 0 3px 4px -3px rgba(0,0,0,.13);
|
|
|
|
border-color: color-mod(var(--midgrey) l(+25%) s(+10%));
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* When disabled */
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn.disabled,
|
|
|
|
.gh-btn[disabled],
|
|
|
|
fieldset[disabled] .gh-btn {
|
2015-05-16 14:43:12 +03:00
|
|
|
box-shadow: none;
|
2017-02-16 22:50:05 +03:00
|
|
|
opacity: 0.8;
|
2015-05-14 16:45:37 +03:00
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-btn svg {
|
2017-03-07 20:28:52 +03:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-08-24 16:14:36 +03:00
|
|
|
|
2017-02-17 17:10:02 +03:00
|
|
|
/* Button highlights
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.gh-btn-hover-blue:hover {
|
|
|
|
color: var(--blue);
|
2019-06-18 13:47:21 +03:00
|
|
|
border-color: var(--blue);
|
2017-02-17 17:10:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-hover-green:hover {
|
|
|
|
color: var(--green);
|
2019-06-18 13:47:21 +03:00
|
|
|
border-color: var(--green);
|
2017-02-17 17:10:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-hover-red:hover {
|
|
|
|
color: var(--red);
|
2019-06-18 13:47:21 +03:00
|
|
|
border-color: var(--red);
|
2017-02-17 17:10:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-08 16:55:35 +03:00
|
|
|
/* Grey button - First so that other colors will override
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* The background of the button creates 1px gradient border */
|
|
|
|
.gh-btn-grey {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
|
|
|
fill: var(--darkgrey);
|
|
|
|
transition: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-grey span {
|
2019-06-18 13:47:21 +03:00
|
|
|
background: color-mod(var(--lightgrey) l(-5%));
|
2017-03-08 16:55:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-grey:active,
|
|
|
|
.gh-btn-grey:focus {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--midgrey) l(+25%));
|
2017-03-08 16:55:35 +03:00
|
|
|
}
|
|
|
|
.gh-btn-grey:active span,
|
|
|
|
.gh-btn-grey:focus span {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--lightgrey) l(+15%));
|
2017-03-08 16:55:35 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Blue button
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* The background of the button creates 1px gradient border */
|
2019-06-18 13:47:21 +03:00
|
|
|
.gh-btn-blue,
|
|
|
|
.gh-btn-blue:hover {
|
2019-06-21 14:52:39 +03:00
|
|
|
border: 1px solid color-mod(var(--blue) s(-5%));
|
2017-02-16 22:50:05 +03:00
|
|
|
color: #fff;
|
|
|
|
fill: #fff;
|
2019-06-18 13:47:21 +03:00
|
|
|
box-shadow: none;
|
|
|
|
transition-property: box-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-blue:hover {
|
2019-06-21 14:52:39 +03:00
|
|
|
box-shadow: none;
|
2015-08-13 11:04:45 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-blue span {
|
2019-06-18 13:47:21 +03:00
|
|
|
background: linear-gradient(color-mod(var(--blue) l(+6%) s(-1%)), color-mod(var(--blue) l(-6%) saturation(-8%)));
|
|
|
|
font-weight: 500;
|
2019-06-21 14:52:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-blue:hover span {
|
|
|
|
background: linear-gradient(color-mod(var(--blue) l(+9%) s(-1%)), color-mod(var(--blue) l(-3%) saturation(-3%)));
|
2016-05-08 16:15:04 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-blue:active,
|
|
|
|
.gh-btn-blue:focus {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--blue) l(-20%) saturation(-15%));
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
|
|
|
.gh-btn-blue:active span,
|
|
|
|
.gh-btn-blue:focus span {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--blue) l(-7%) saturation(-10%));
|
2017-02-16 22:50:05 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Green button
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the button creates 1px gradient border */
|
2019-06-18 13:47:21 +03:00
|
|
|
.gh-btn-green,
|
|
|
|
.gh-btn-green:hover {
|
2019-06-21 14:52:39 +03:00
|
|
|
border: 1px solid color-mod(var(--green) s(-5%));
|
2015-05-16 14:43:12 +03:00
|
|
|
color: #fff;
|
2017-02-16 22:50:05 +03:00
|
|
|
fill: #fff;
|
2019-06-18 13:47:21 +03:00
|
|
|
box-shadow: none;
|
|
|
|
transition-property: box-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-green:hover {
|
2019-06-21 14:52:39 +03:00
|
|
|
box-shadow: none;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-green span {
|
2019-06-21 14:52:39 +03:00
|
|
|
background: linear-gradient(color-mod(var(--green) l(+6%) s(-2%)), color-mod(var(--green) l(-8%) s(+5%)));
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 500;
|
2019-06-21 14:52:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-green:hover span {
|
|
|
|
background: linear-gradient(color-mod(var(--green) l(+9%) s(-1%)), color-mod(var(--green) l(-3%) saturation(-3%)));
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-green:active,
|
|
|
|
.gh-btn-green:focus {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--green) l(-9%) saturation(-9%));
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
|
|
|
.gh-btn-green:active span,
|
|
|
|
.gh-btn-green:focus span {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--green) l(-3%) saturation(-7%));
|
2017-02-16 22:50:05 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-15 23:18:24 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
|
|
|
|
/* Red button
|
2015-05-15 23:18:24 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the button creates 1px gradient border */
|
2019-06-18 13:47:21 +03:00
|
|
|
.gh-btn-red,
|
|
|
|
.gh-btn-red:hover {
|
2019-06-21 14:52:39 +03:00
|
|
|
border: 1px solid color-mod(var(--red) s(-5%));
|
2015-05-16 14:43:12 +03:00
|
|
|
color: #fff;
|
2017-02-16 22:50:05 +03:00
|
|
|
fill: #fff;
|
2019-06-18 13:47:21 +03:00
|
|
|
box-shadow: none;
|
|
|
|
transition-property: box-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-red:hover {
|
2019-06-21 14:52:39 +03:00
|
|
|
box-shadow: none;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-red span {
|
|
|
|
background: linear-gradient(
|
2018-04-03 13:52:18 +03:00
|
|
|
color-mod(var(--red) whiteness(+7%)),
|
|
|
|
color-mod(var(--red) l(-7%) saturation(-10%)) 60%,
|
|
|
|
color-mod(var(--red) l(-7%) saturation(-10%)) 90%,
|
|
|
|
color-mod(var(--red) l(-4%) saturation(-10%))
|
2017-02-16 22:50:05 +03:00
|
|
|
);
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 500;
|
2019-06-21 14:52:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-red:hover span {
|
|
|
|
background: linear-gradient(color-mod(var(--red) l(+7%) s(-1%)), color-mod(var(--red) l(-5%) saturation(-3%)));
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-red:active,
|
|
|
|
.gh-btn-red:focus {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--red) l(-20%) saturation(-15%));
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
|
|
|
.gh-btn-red:active span,
|
|
|
|
.gh-btn-red:focus span {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--red) l(-7%) saturation(-10%));
|
2017-02-16 22:50:05 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-15 23:18:24 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Black button
|
2015-05-15 23:18:24 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the button creates 1px gradient border */
|
2019-06-18 13:47:21 +03:00
|
|
|
.gh-btn-black,
|
|
|
|
.gh-btn-black:hover {
|
2017-02-16 22:50:05 +03:00
|
|
|
border: 0;
|
2015-05-16 14:43:12 +03:00
|
|
|
color: #fff;
|
2017-02-16 22:50:05 +03:00
|
|
|
fill: #fff;
|
2019-06-18 13:47:21 +03:00
|
|
|
box-shadow: none;
|
|
|
|
transition-property: box-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-black:hover {
|
|
|
|
box-shadow: 0 4px 5px -3px rgba(0,0,0,.1);
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-black span {
|
|
|
|
background: linear-gradient(
|
2018-04-03 13:52:18 +03:00
|
|
|
color-mod(var(--darkgrey) whiteness(+7%)),
|
|
|
|
color-mod(var(--darkgrey) l(-7%) saturation(-10%)) 60%,
|
|
|
|
color-mod(var(--darkgrey) l(-7%) saturation(-10%)) 90%,
|
|
|
|
color-mod(var(--darkgrey) l(-4%) saturation(-10%))
|
2017-02-16 22:50:05 +03:00
|
|
|
);
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 500;
|
2019-06-21 14:52:39 +03:00
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-black:active,
|
|
|
|
.gh-btn-black:focus {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--darkgrey) l(-20%) saturation(-15%));
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
|
|
|
.gh-btn-black:active span,
|
|
|
|
.gh-btn-black:focus span {
|
2018-04-03 13:52:18 +03:00
|
|
|
background: color-mod(var(--darkgrey) l(-7%) saturation(-10%));
|
2017-02-16 22:50:05 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-15 23:18:24 +03:00
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Special Buttons
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-white {
|
2019-06-18 13:47:21 +03:00
|
|
|
border: none;
|
|
|
|
background: var(--white);
|
|
|
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-white:hover {
|
|
|
|
background: var(--white);
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
2017-04-07 18:23:45 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-white span {
|
2019-06-21 14:52:39 +03:00
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
2019-06-18 13:47:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-strong {
|
|
|
|
border-color: color-mod(var(--midgrey) l(+25%));
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-icon span {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-04-07 18:23:45 +03:00
|
|
|
justify-content: center;
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
2017-04-07 18:23:45 +03:00
|
|
|
|
2017-04-11 18:44:37 +03:00
|
|
|
.gh-btn-icon svg,
|
|
|
|
.gh-btn-block svg {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin-right: 0.5em;
|
2017-04-15 16:12:52 +03:00
|
|
|
fill: #fff;
|
2017-04-07 18:23:45 +03:00
|
|
|
}
|
|
|
|
|
2017-06-13 12:01:20 +03:00
|
|
|
.gh-btn-icon svg.gh-spinner {
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-icon svg.gh-spinner rect {
|
2018-04-03 13:52:18 +03:00
|
|
|
fill: color-mod(var(--midgrey) l(+15%));
|
2017-06-13 12:01:20 +03:00
|
|
|
}
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
.gh-btn-icon-right svg,
|
|
|
|
svg.gh-btn-icon-right {
|
2017-04-11 18:44:37 +03:00
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-15 16:12:52 +03:00
|
|
|
.gh-btn-icon svg path {
|
|
|
|
stroke: #fff;
|
|
|
|
}
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
.gh-btn-icon-no-margin {
|
2017-04-14 18:16:52 +03:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2019-11-07 07:09:47 +03:00
|
|
|
.gh-btn-icon-grey svg {
|
|
|
|
fill: var(--midgrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-icon-grey svg path {
|
|
|
|
stroke: var(--midgrey);
|
|
|
|
}
|
|
|
|
|
2019-11-22 19:17:29 +03:00
|
|
|
.gh-btn-text,
|
|
|
|
.gh-btn-text:hover {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-text span {
|
|
|
|
height: unset;
|
|
|
|
line-height: unset;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-text.regular span {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
color: var(--darkgrey);
|
|
|
|
}
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/*
|
|
|
|
/* Button Variations
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.gh-btn-block {
|
2015-05-14 16:45:37 +03:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* Vertically space out multiple block buttons */
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-block + .gh-btn-block {
|
2015-05-14 16:45:37 +03:00
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* Specificity overrides */
|
2017-02-16 22:50:05 +03:00
|
|
|
input[type="submit"].gh-btn-block,
|
|
|
|
input[type="reset"].gh-btn-block,
|
|
|
|
input[type="button"].gh-btn-block {
|
2015-05-14 16:45:37 +03:00
|
|
|
width: 100%;
|
|
|
|
}
|
2015-08-10 18:43:49 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
/* Button Groups
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
|
|
|
|
Usage: CTA buttons grouped together horizontally.
|
|
|
|
|
|
|
|
<div class="gh-btn-group">
|
|
|
|
<a class="gh-btn gh-btn-green" href="#"><span>Button 1</span></a>
|
|
|
|
<a class="gh-btn gh-btn-white" href="#"><span>Button 2</span></a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.gh-btn-group .gh-btn {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
2019-08-27 16:51:31 +03:00
|
|
|
.gh-btn-group .gh-btn {
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 0 0 0 0;
|
|
|
|
border: none;
|
|
|
|
border-left: 1px solid var(--whitegrey);
|
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-group .gh-btn:first-of-type {
|
2019-08-27 16:51:31 +03:00
|
|
|
border-radius: 5px 0 0 5px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-group .gh-btn:last-of-type {
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-group .gh-btn-group-selected span {
|
|
|
|
color: var(--blue);
|
|
|
|
font-weight: 500;
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-block + .gh-btn-block {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2017-02-17 08:50:07 +03:00
|
|
|
.gh-btn-link {
|
2017-06-12 18:13:10 +03:00
|
|
|
border: none;
|
2019-06-18 13:47:21 +03:00
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-link:hover {
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
2017-02-17 08:50:07 +03:00
|
|
|
}
|
|
|
|
|
2017-03-08 16:08:20 +03:00
|
|
|
|
2015-08-10 18:43:49 +03:00
|
|
|
/* Spin Buttons!
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
.spinner {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: -2px 0;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
border: rgba(0,0,0,0.2) solid 4px;
|
|
|
|
border-radius: 100px;
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 6px;
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
background: rgba(0,0,0,0.6);
|
|
|
|
border-radius: 100px;
|
|
|
|
}
|