12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .form-control {
- &.input-sm,
- .input-group-sm &,
- .form-group-sm & {
- line-height: normal;
- font-size: 12px;
- padding: 2px 4px;
- height: 24px;
- &:focus {
- border: 1px solid #5bc0de;
- outline: none;
- }
- }
- }
- .input-sm + .form-control-feedback,
- .input-group-sm + .form-control-feedback,
- .form-group-sm .form-control + .form-control-feedback {
- width: 1em;
- height: 1em;
- line-height: normal;
- top: 5px;
- right: 20px;
- }
- .has-feedback {
- .form-control {
- padding-right: 20px;
- }
- }
- .nav, .nav-pills {
- font-size: 13px;
- font-weight: 600;
- > li {
- > a {
- &:hover,
- &:focus,
- &:active {
- background-color: @brand-primary;
- color: #fff;
- }
- background-color: #FFF;
- color: @brand-primary;
- text-align: center;
- padding: 5px 10px;
- }
- }
- > li.active {
- > a {
- background-color: @brand-primary;
- color: #fff;
- &:hover,
- &:focus,
- &:active {
- background-color: @brand-primary;
- color: #fff;
- }
- }
- }
- }
- /*&.btn {
- &.btn-primary,
- &.btn-success {
- &:hover,&:focus {
- outline: none;
- background: #5bc0de;
- border: #5bc0de;
- }
- &:active, .open>.dropdown-toggle.btn-primary{
- border: none;
- outline: none;
- background-color: #439BB2;
- border-color: #439BB2;
- }
- }
- }*/
|