[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/libraries/bootstrap/js/eternicode-bootstrap-datepicker/build/ -> build_standalone.less (source)

   1  // Datepicker standalone .less buildfile.  Includes all necessary mixins/variables/rules from bootstrap
   2  // and imports the included datepicker.less to output a minimal standalone datepicker.css
   3  //
   4  // Usage:
   5  //     lessc build_standalone.less datepicker.css
   6  //
   7  // Variables, mixins, and rules copied from bootstrap 2.0.2
   8  
   9  @import "build.less";
  10  
  11  // Dropdown css
  12  
  13  @zindexDropdown:                1000;
  14  @grayDark:                      #333;
  15  @baseLineHeight:                18px;
  16  @tableBackground:               transparent; // overall background-color
  17  @dropdownBackground:            @white;
  18  @dropdownBorder:                rgba(0,0,0,.2);
  19  @dropdownLinkColor:             @grayDark;
  20  @dropdownLinkColorHover:        @white;
  21  @dropdownLinkBackgroundHover:   @linkColor;
  22  
  23  // Drop shadows
  24  .box-shadow(@shadow) {
  25    -webkit-box-shadow: @shadow;
  26       -moz-box-shadow: @shadow;
  27            box-shadow: @shadow;
  28  }
  29  
  30  // The dropdown menu (ul)
  31  // ----------------------
  32  .datepicker.dropdown-menu {
  33    position: absolute;
  34    top: 100%;
  35    left: 0;
  36    z-index: @zindexDropdown;
  37    float: left;
  38    display: none; // none by default, but block on "open" of the menu
  39    min-width: 160px;
  40    list-style: none;
  41    background-color: @dropdownBackground;
  42    border: 1px solid #ccc;
  43    border: 1px solid rgba(0,0,0,.2);
  44    .border-radius(5px);
  45    .box-shadow(0 5px 10px rgba(0,0,0,.2));
  46    -webkit-background-clip: padding-box;
  47       -moz-background-clip: padding;
  48            background-clip: padding-box;
  49    *border-right-width: 2px;
  50    *border-bottom-width: 2px;
  51  
  52    // Normally inherited from bootstrap's `body`
  53    color: #333333;
  54    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  55    font-size:13px;
  56    line-height: @baseLineHeight;
  57  
  58    th, td {
  59      padding: 4px 5px;
  60    }
  61  }
  62  
  63  // Alternative arrows
  64  // May require `charset="UTF-8"` in your `<link>` tag
  65  .datepicker {
  66    .prev, .next {font-style:normal;}
  67    .prev:after {content:"«";}
  68    .next:after {content:"»";}
  69  }


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1