12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @import "build.less";
- @zindexDropdown: 1000;
- @grayDark: #333;
- @baseLineHeight: 20px;
- @tableBackground: transparent;
- @dropdownBackground: @white;
- @dropdownBorder: rgba(0,0,0,.2);
- @dropdownLinkColor: @grayDark;
- @dropdownLinkColorHover: @white;
- @dropdownLinkBackgroundHover: @linkColor;
- .box-shadow(@shadow) {
- -webkit-box-shadow: @shadow;
- -moz-box-shadow: @shadow;
- box-shadow: @shadow;
- }
- .datepicker{
- &.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: @zindexDropdown;
- float: left;
- display: none;
- min-width: 160px;
- list-style: none;
- background-color: @dropdownBackground;
- border: 1px solid #ccc;
- border: 1px solid rgba(0,0,0,.2);
- .border-radius(5px);
- .box-shadow(0 5px 10px rgba(0,0,0,.2));
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
- *border-right-width: 2px;
- *border-bottom-width: 2px;
-
- color: #333333;
- font-size:13px;
- line-height: @baseLineHeight;
- }
- &.dropdown-menu, &.datepicker-inline {
- th, td {
- padding: 4px 5px;
- }
- }
- }
|