From 5e1adc10bb53696bbcbaab88024c5e0030da312e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 8 Jul 2014 17:30:11 -0700 Subject: Bring back button info --- docs/dist/css/bootstrap-theme.css | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) (limited to 'docs/dist/css/bootstrap-theme.css') diff --git a/docs/dist/css/bootstrap-theme.css b/docs/dist/css/bootstrap-theme.css index 11ee092f5..8d52f43e2 100644 --- a/docs/dist/css/bootstrap-theme.css +++ b/docs/dist/css/bootstrap-theme.css @@ -4,7 +4,7 @@ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -.btn-secondary, +.btn-default, .btn-primary, .btn-success, .btn-warning, @@ -13,12 +13,12 @@ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); } -.btn-secondary:active, +.btn-default:active, .btn-primary:active, .btn-success:active, .btn-warning:active, .btn-danger:active, -.btn-secondary.active, +.btn-default.active, .btn-primary.active, .btn-success.active, .btn-warning.active, @@ -82,6 +82,31 @@ background-color: #e0e0e0; background-image: none; } +.btn-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #28a4c9; +} +.btn-info:hover, +.btn-info:focus { + background-color: #2aabd2; + background-position: 0 -15px; +} +.btn-info:active, +.btn-info.active { + background-color: #2aabd2; + border-color: #28a4c9; +} +.btn-info:disabled, +.btn-info[disabled] { + background-color: #2aabd2; + background-image: none; +} .btn-success { background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); -- cgit v1.2.3