diff options
author | Thomas Park <thomas@thomaspark.me> | 2012-03-17 17:24:06 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2012-03-17 17:24:06 -0400 |
commit | 50a1df71e0eec41b6df2063b82086f784c237b23 (patch) | |
tree | 7dd1ef432f11ac355ed7c3879c9de734fd23a0eb | |
parent | 780e34daf74e02a7112bc65dc431567848f8b35c (diff) |
cyborg: modal support
-rw-r--r-- | cyborg/bootstrap.css | 17 | ||||
-rw-r--r-- | cyborg/bootstrap.min.css | 3 | ||||
-rwxr-xr-x | cyborg/bootswatch.less | 20 |
3 files changed, 40 insertions, 0 deletions
diff --git a/cyborg/bootstrap.css b/cyborg/bootstrap.css index b15779a6..3abf73aa 100644 --- a/cyborg/bootstrap.css +++ b/cyborg/bootstrap.css @@ -4491,6 +4491,23 @@ select:focus { footer.footer { border-top: 1px solid #222; } +.modal { + border-top: solid 1px rgba(256, 256, 256, 0.3); + background-color: #282828; +} +.modal-header { + border-bottom: 1px solid #222; +} +.modal-footer { + background-color: #282828; + border-top: 1px solid #222; + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} .table, .well, .prettyprint, diff --git a/cyborg/bootstrap.min.css b/cyborg/bootstrap.min.css index 4dc31590..2d1ea029 100644 --- a/cyborg/bootstrap.min.css +++ b/cyborg/bootstrap.min.css @@ -755,6 +755,9 @@ input:focus,textarea:focus,input.focused,textarea.focused{border-color:#52a8ec;o input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .form-actions{background:transparent;} .form-actions,footer.footer{border-top:1px solid #222;} +.modal{border-top:solid 1px rgba(256, 256, 256, 0.3);background-color:#282828;} +.modal-header{border-bottom:1px solid #222;} +.modal-footer{background-color:#282828;border-top:1px solid #222;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .table,.well,.prettyprint,input,textarea,select{-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;} code,pre,pre.prettyprint{background-color:#eeeeee;} .well,.hero-unit{background-color:#131517;border-top:solid 1px rgba(256, 256, 256, 0.1);-webkit-box-shadow:0 2px 4px rgba(0, 0, 0, 0.8);-moz-box-shadow:0 2px 4px rgba(0, 0, 0, 0.8);box-shadow:0 2px 4px rgba(0, 0, 0, 0.8);} diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less index 8a986400..37c2c2b2 100755 --- a/cyborg/bootswatch.less +++ b/cyborg/bootswatch.less @@ -382,6 +382,24 @@ select:focus { border-top: 1px solid #222; } +// MODALS +// ----------------------------------------------------- + +.modal { + border-top: solid 1px rgba(256,256,256,.3); + background-color: @grayDark; +} + +.modal-header { + border-bottom: 1px solid #222; +} + +.modal-footer { + background-color: @grayDark; + border-top: 1px solid #222; + .border-radius(0 0 6px 6px); + .box-shadow(none); +} // MISCELLANEOUS // ----------------------------------------------------- @@ -446,3 +464,5 @@ code, pre, pre.prettyprint { text-shadow: none; border: none; } + + |