Skip to content

Commit 1d50fa7

Browse files
committed
adding quick and dirty favicons and touch icons for iOS
1 parent bc2ae90 commit 1d50fa7

File tree

9 files changed

+14
-6
lines changed

9 files changed

+14
-6
lines changed

bootstrap-1.3.0.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* http://www.apache.org/licenses/LICENSE-2.0
77
*
88
* Designed and built with all the love in the world @twitter by @mdo and @fat.
9-
* Date: Mon Sep 12 22:15:45 PDT 2011
9+
* Date: Tue Sep 13 09:06:02 PDT 2011
1010
*/
1111
/* Reset.less
1212
* 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).
@@ -94,6 +94,9 @@ html {
9494
a:focus {
9595
outline: thin dotted;
9696
}
97+
a:hover, a:active {
98+
outline: 0;
99+
}
97100
article,
98101
aside,
99102
details,

bootstrap-1.3.0.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/css/docs.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ section > .row {
2323
-------------------------------------------------- */
2424
.jumbotron {
2525
padding-top: 40px;
26-
overflow: hidden;
2726
}
2827
.jumbotron .inner {
2928
background: transparent url(../img/grid-18px.png) top center;
6.67 KB
Loading
3.83 KB
Loading
4.79 KB
Loading

docs/assets/ico/favicon.ico

1.12 KB
Binary file not shown.

docs/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
<script src="assets/js/application.js"></script>
2828

2929
<!-- Le fav and touch icons -->
30-
<link rel="shortcut icon" href="images/favicon.ico">
31-
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
32-
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
33-
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
30+
<link rel="shortcut icon" type="image/x-icon" href="assets/ico/favicon.ico">
31+
<link rel="apple-touch-icon" href="assets/ico/bootstrap-apple-57x57.png">
32+
<link rel="apple-touch-icon" sizes="72x72" href="assets/ico/bootstrap-apple-72x72.png">
33+
<link rel="apple-touch-icon" sizes="114x114" href="assets/ico/bootstrap-apple-114x114.png">
3434
</head>
3535

3636
<body>

lib/reset.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ html {
3030
a:focus {
3131
outline: thin dotted;
3232
}
33+
// Hover & Active
34+
a:hover,
35+
a:active {
36+
outline: 0;
37+
}
3338

3439
// Display in IE6-9 and FF3
3540
// -------------------------

0 commit comments

Comments
 (0)