单击时,在Bootstrap 3按钮顶部删除内部渐变

时间:2014-06-13 20:37:21

标签: twitter-bootstrap twitter-bootstrap-3

当用户点击按钮时,您能告诉我如何从Bootstrap 3按钮中删除渐变:如下图所示:

enter image description here

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

3 个答案:

答案 0 :(得分:13)

在按钮的:活动状态期间应用了一个框阴影。

试试这个:

.btn:active
{
    box-shadow:none;
}

答案 1 :(得分:2)

当按钮处于box-shadow状态(正在按下)时,您要执行的操作是删除active。以下是与浏览器兼容的方法:

.btn:active{
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
}

答案 2 :(得分:0)

将位置相对设置为。

button:active {
  position: relative;
  top: -1px;
  left: -1px;
}