Перевернутая эллиптическая граница на кнопке со значком [дубликат]


На этот вопрос уже есть ответ здесь:

У меня есть следующая кнопка с отсутствующей границей слева сторона:

Кнопка Добавить в корзину

Как добавить недостающую границу в левой части кнопки?

Это кнопка со значком Font-awesome и прямоугольником-тенью. (В этом примере значок был заменен на "X".)

Есть ли простой способ решить эту проблему?

.button.addcart {
    position: relative;
    padding: 0 29px 0 55px;
    font: 700 16px/40px 'Quattrocento Sans',sans-serif;
    text-decoration: none;
    color: #555;
    border-radius: 20px 0 0 20px;
    border: 2px solid #222;
    line-height: 48px!important;
    text-transform: uppercase;
    cursor: pointer;
}
.button.addcart:before {
    position: absolute;
    box-sizing: border-box;
    content: "X";
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: #555;
    margin: 3px 0;
    box-shadow: 0 0 0 3px #555, 0 0 0 9px #fff;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 26px;
    padding: 7px 0 0;
}
<button class="button addcart" id="add_to_cart689427" type="submit" name="addtocart" value="" title="add to cart">add to cart</button>
2 2

2 ответа:

Вы можете попробовать radial-gradient создать круг в качестве фона поверх цвета фона, затем вы можете настроить его размер и положение, чтобы заполнить недостающую границу:

.button.addcart {
    position: relative;
    padding: 0 20px 0 65px;
    font: 700 16px/40px 'Quattrocento Sans',sans-serif;
    text-decoration: none;
    color: #555;
    border-radius: 20px 0 0 20px;
    border: 2px solid #222;
    line-height: 48px!important;
    text-transform: uppercase;
    cursor: pointer;
    background: radial-gradient(circle at left,transparent 22%,#222 23%, #222 25%,transparent 25%) 19px 0px/131px 48px no-repeat,#ddd;
}
.button.addcart:before {
    position: absolute;
    box-sizing: border-box;
    content: "X";
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: #555;
    margin: 3px 0;
    box-shadow: 0 0 0 3px #555, 0 0 0 9px #fff;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 26px;
    padding: 7px 0 0;
}
<button class="button addcart" id="add_to_cart689427" type="submit" name="addtocart" value="" title="add to cart">add to cart</button>

В основном

  • Добавить вставку box-shadow к кнопке
  • Добавить третью box-shadow к кругу

(+следующие изменения в заполнении, полях и т. д.:)

.button.addcart {
    font: 700 16px/48px 'Quattrocento Sans',sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    
    position: relative;
    overflow: hidden;
    padding-right: 28px;
    color: #555;
    border-radius: 80px 0 0 80px;
    /*border: 2px solid #222; NO, we need an inset box-shadow instead */
    border: 0;
    box-shadow: inset 0 0 0 2px #222;

}
.button.addcart:before {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    content: "\2714";
    margin-left: -3px;
    width: 43px;
    height: 43px;
    border-radius: 50%; /* 50% */
    margin-right: 28px;
    box-shadow: 0 0 0 3px #555, 0 0 0 9px #fff, 0 0 0 12px #222; /* add 3rd shadow */
    font: 18px/42px FontAwesome;
}
<button class="button addcart" id="add_to_cart689427" type="submit" name="addtocart" value="" title="add to cart"><span></span>add to cart</button>