Skip to content

Commit

Permalink
Merge branch 'kriansa-patch1' into dev
Browse files Browse the repository at this point in the history
Conflicts:
	bootstrap.css
  • Loading branch information
mdo committed Nov 1, 2011
2 parents a21363a + 602919a commit 5c86074
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
19 changes: 11 additions & 8 deletions bootstrap.css
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Mon Oct 31 23:21:58 PDT 2011
* Date: Mon Oct 31 23:27:57 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -1815,6 +1815,10 @@ footer {
.alert-message.info:hover {
color: #ffffff;
}
.btn .close, .alert-message .close {
font-family: Arial, sans-serif;
line-height: 18px;
}
.btn.danger,
.alert-message.danger,
.btn.error,
Expand Down Expand Up @@ -1973,10 +1977,10 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
font-weight: bold;
line-height: 13.5px;
text-shadow: 0 1px 0 #ffffff;
filter: alpha(opacity=20);
-khtml-opacity: 0.2;
-moz-opacity: 0.2;
opacity: 0.2;
filter: alpha(opacity=25);
-khtml-opacity: 0.25;
-moz-opacity: 0.25;
opacity: 0.25;
}
.close:hover {
color: #000000;
Expand Down Expand Up @@ -2015,9 +2019,8 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.alert-message .close {
*margin-top: 3px;
/* IE7 spacing */

margin-top: 1px;
*margin-top: 0;
}
.alert-message a {
font-weight: bold;
Expand Down
5 changes: 3 additions & 2 deletions bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions lib/patterns.less
Expand Up @@ -520,6 +520,11 @@ footer {
&.info:hover {
color: @white
}
// Sets the close button to the middle of message
.close{
font-family: Arial, sans-serif;
line-height: 18px;
}
// Danger and error appear as red
&.danger,
&.error {
Expand Down Expand Up @@ -632,7 +637,7 @@ input[type=submit].btn {
font-weight: bold;
line-height: @baseline * .75;
text-shadow: 0 1px 0 rgba(255,255,255,1);
.opacity(20);
.opacity(25);
&:hover {
color: @black;
text-decoration: none;
Expand All @@ -659,7 +664,8 @@ input[type=submit].btn {

// Adjust close icon
.close {
*margin-top: 3px; /* IE7 spacing */
margin-top: 1px;
*margin-top: 0; // For IE7
}

// Make links same color as text and stand out more
Expand Down

0 comments on commit 5c86074

Please sign in to comment.