Skip to content

Commit

Permalink
Added support for modals and popovers.
Browse files Browse the repository at this point in the history
  • Loading branch information
danneu committed Feb 3, 2013
1 parent 1a8dab1 commit 961bc1b
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,10 @@
Screenshots are from OSX.

# v0.9.1
# v0.9.2 (2 Feb 2013)

* Added support for modals and popovers.

# v0.9.1 (2 Feb 2013)

* Removed .scss file to avoid confusion.
* Darkstrap.css versioning now happens in the file instead of on the filename.
Expand Down
50 changes: 49 additions & 1 deletion darkstrap.css
@@ -1,5 +1,5 @@
/*
* Darkstrap v0.9.1
* Darkstrap v0.9.2
* By danneu (http://github.com/danneu/darkstrap)
* Based off Twitter Bootstrap v2.2.2
*/
Expand Down Expand Up @@ -910,3 +910,51 @@ select::-webkit-scrollbar-thumb {
border: 2px solid #202020;
background-color: rgba(0, 0, 0, 0.5);
}

.modal {
background-color: #444;
}

.modal-header {
border-bottom: 1px solid #222222;
}

.modal-body p {
color: #c6c6c6;
}

.modal-footer {
background-color: #373737;
border-top: 1px solid #222222;
-moz-box-shadow: 0 1px 0 #333333 inset;
-webkit-box-shadow: 0 1px 0 #333333 inset;
-o-box-shadow: 0 1px 0 #333333 inset;
box-shadow: 0 1px 0 #333333 inset;
}

.popover {
background: #444;
border: 1px solid rgba(0, 0, 0, 0.5);
border: 1px solid black;
}

.popover-title {
background: #373737;
border-bottom-color: #222;
}

.popover.top .arrow:after {
border-top-color: #444;
}

.popover.right .arrow:after {
border-right-color: #444;
}

.popover.bottom .arrow:after {
border-bottom-color: #444;
}

.popover.left .arrow:after {
border-left-color: #444;
}

0 comments on commit 961bc1b

Please sign in to comment.