##// END OF EJS Templates
old style: adjust css for buttons to how ui-btn was renamed to btn to match bootstrap
Mads Kiilerich -
r4143:f6a012c2 rhodecode-2.2.5-gpl
parent child Browse files
Show More
@@ -3571,7 +3571,7 b' div.gravatar img {'
3571 3571 border: 1px solid #316293;
3572 3572 }
3573 3573
3574 .ui-btn {
3574 .btn {
3575 3575 color: #515151;
3576 3576 background-color: #DADADA;
3577 3577 background-repeat: repeat-x;
@@ -3600,23 +3600,42 b' div.gravatar img {'
3600 3600
3601 3601 }
3602 3602
3603 .ui-btn.badge {
3603 /* make .btn inputs and buttons and divs look the same */
3604 button.btn,
3605 input.btn {
3606 font-family: inherit;
3607 font-size: inherit;
3608 line-height: inherit;
3609 }
3610
3611 .btn::-moz-focus-inner {
3612 border: 0;
3613 padding: 0;
3614 }
3615
3616 .btn.badge {
3604 3617 cursor: default !important;
3605 3618 }
3606 3619
3607 .ui-btn.disabled {
3620 .btn.disabled {
3608 3621 color: #999;
3609 3622 }
3610 3623
3611 .ui-btn.xsmall {
3612 padding: 1px 2px 1px 1px;
3613 }
3614
3615 .ui-btn.large {
3616 padding: 6px 12px;
3617 }
3618
3619 .ui-btn.clone {
3624 .btn.btn-danger.disabled {
3625 color: #eee;
3626 background-color: #c77;
3627 border-color: #b66
3628 }
3629
3630 .btn.btn-small {
3631 padding: 2px 6px;
3632 }
3633
3634 .btn.btn-mini {
3635 padding: 0px 4px;
3636 }
3637
3638 .btn.clone {
3620 3639 padding: 5px 2px 6px 1px;
3621 3640 margin: 0px 0px 3px -4px;
3622 3641 -webkit-border-radius: 0px 4px 4px 0px !important;
@@ -3628,26 +3647,26 b' div.gravatar img {'
3628 3647 position: relative;
3629 3648 top: -2px;
3630 3649 }
3631 .ui-btn:focus {
3650 .btn:focus {
3632 3651 outline: none;
3633 3652 }
3634 .ui-btn:hover {
3653 .btn:hover {
3635 3654 background-position: 0 -100px;
3636 3655 text-decoration: none;
3637 3656 color: #515151;
3638 3657 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important;
3639 3658 }
3640 .ui-btn.badge:hover {
3659 .btn.badge:hover {
3641 3660 box-shadow: none !important;
3642 3661 }
3643 .ui-btn.disabled:hover {
3662 .btn.disabled:hover {
3644 3663 background-position: 0;
3645 3664 color: #999;
3646 3665 text-decoration: none;
3647 3666 box-shadow: none !important;
3648 3667 }
3649 3668
3650 .ui-btn.red {
3669 .btn.red {
3651 3670 color: #fff;
3652 3671 background-color: #c43c35;
3653 3672 background-repeat: repeat-x;
@@ -3664,7 +3683,7 b' div.gravatar img {'
3664 3683 }
3665 3684
3666 3685
3667 .ui-btn.blue {
3686 .btn.blue {
3668 3687 color: #fff;
3669 3688 background-color: #339bb9;
3670 3689 background-repeat: repeat-x;
@@ -3680,7 +3699,7 b' div.gravatar img {'
3680 3699 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3681 3700 }
3682 3701
3683 .ui-btn.green {
3702 .btn.green {
3684 3703 color: #fff;
3685 3704 background-color: #57a957;
3686 3705 background-repeat: repeat-x;
@@ -3696,7 +3715,7 b' div.gravatar img {'
3696 3715 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3697 3716 }
3698 3717
3699 .ui-btn.yellow {
3718 .btn.yellow {
3700 3719 color: #fff;
3701 3720 background-color: #faa732;
3702 3721 background-repeat: repeat-x;
@@ -3716,11 +3735,11 b' label.disabled {'
3716 3735 color: #aaa;
3717 3736 }
3718 3737
3719 .ui-btn.blue.hidden {
3738 .btn.blue.hidden {
3720 3739 display: none;
3721 3740 }
3722 3741
3723 .ui-btn.active {
3742 .btn.active {
3724 3743 font-weight: bold;
3725 3744 }
3726 3745
General Comments 0
You need to be logged in to leave comments. Login now