cyborg: modal support
authorThomas Park <thomas@thomaspark.me>
Sat, 17 Mar 2012 21:24:06 +0000 (17:24 -0400)
committerThomas Park <thomas@thomaspark.me>
Sat, 17 Mar 2012 21:24:06 +0000 (17:24 -0400)
cyborg/bootstrap.css
cyborg/bootstrap.min.css
cyborg/bootswatch.less

index b15779a..3abf73a 100644 (file)
@@ -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,
index 4dc3159..2d1ea02 100644 (file)
@@ -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);}
index 8a98640..37c2c2b 100755 (executable)
@@ -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;
 }
+
+