bootstrap之button样式

一、前言现在开始介绍bootstrap的button模块样式,包括buttons.less、button-groups.less。二、源码1、buttons.less1.1、buttons.less源码 // // Buttons(按钮) // -------------------------------------------------- // Base styles(基础样式) //
摘要由CSDN通过智能技术生成

一、前言

现在开始介绍bootstrap的button模块样式,包括buttons.less、button-groups.less。

二、源码

1、buttons.less
1.1、buttons.less源码
 //
 // Buttons(按钮)
 // --------------------------------------------------

 // Base styles(基础样式)
 // --------------------------------------------------
 .btn {
   display: inline-block;
   margin-bottom: 0; // For input.btn
   font-weight: @btn-font-weight;
   text-align: center;
   vertical-align: middle;
   touch-action: manipulation;
   cursor: pointer;
   background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
   border: 1px solid transparent;
   white-space: nowrap;
   .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
   .user-select(none);

   &,
   &:active,
   &.active {
     &:focus,
     &.focus {
       .tab-focus();
     }
   }

   &:hover,
   &:focus,
   &.focus {
     color: @btn-default-color;
     text-decoration: none;
   }

   &:active,
   &.active {
     outline: 0;
     background-image: none;
     .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
   }

   &.disabled,
   &[disabled],
   fieldset[disabled] & {
     cursor: @cursor-disabled;
     .opacity(.65);
     .box-shadow(none);
   }

   a& {
     &.disabled,
     fieldset[disabled] & {
       pointer-events: none; // Future-proof disabling of clicks on `<a>` elements
     }
   }
 }

 // Alternate buttons(交互式按钮)
 // --------------------------------------------------
 .btn-default {
   .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
 }
 .btn-primary {
   .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
 }
 // Success appears as green
 .btn-success {
   .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
 }
 // Info appears as blue-green
 .btn-info {
   .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
 }
 // Warning appears as orange
 .btn-warning {
   .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
 }
 // Danger and error appear as red
 .btn-danger {
   .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
 }

 // Link buttons(链接按钮)
 // -------------------------
 // Make a button look and behave like a link
 .btn-link {
   color: @link-color;
   font-weight: normal;
   border-radius: 0;

   &,
   &:active,
   &.active,
   &[disabled],
   fieldset[disabled] & {
     background-color: transparent;
     .box-shadow(none);
   }
   &,
   &:hover,
   &:focus,
   &:active {
     border-color: transparent;
   }
   &:hover,
   &:focus {
     color: @link-hover-color;
     text-decoration: @link-hover-decoration;
     background-color: transparent;
   }
   &[disabled],
   fieldset[disabled] & {
     &:hover,
     &:focus {
       color: @btn-link-disabled-color;
       text-decoration: none;
     }
   }
 }

 // Button Sizes(按钮大小)
 // --------------------------------------------------
 .btn-lg {
   // line-height: ensure even-numbered height of button next to large input
   .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值