summaryrefslogtreecommitdiff
path: root/cosmo/bootswatch.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2014-07-02 01:50:53 -0400
committerThomas Park <thomas@thomaspark.me>2014-07-02 01:50:53 -0400
commit655f3e5ef192bd40e08b481807a974d53dee30a3 (patch)
tree0767fedaaea0bf038447c0fe7901eb0a72292def /cosmo/bootswatch.less
parent6921252055a1490921eac01caf583ba26b0e4b2e (diff)
fixes invisible close buttons, closes #272
Diffstat (limited to 'cosmo/bootswatch.less')
-rw-r--r--cosmo/bootswatch.less46
1 files changed, 35 insertions, 11 deletions
diff --git a/cosmo/bootswatch.less b/cosmo/bootswatch.less
index 593caa9b..9fc87e14 100644
--- a/cosmo/bootswatch.less
+++ b/cosmo/bootswatch.less
@@ -135,27 +135,26 @@ table,
// Indicators =================================================================
-.alert {
- border: none;
-
- .alert-link {
- text-decoration: underline;
- color: #fff;
- }
-}
-
.close {
- color: #fff;
text-decoration: none;
+ text-shadow: none;
opacity: 0.4;
&:hover,
&:focus {
- color: #fff;
opacity: 1;
}
}
+.alert {
+ border: none;
+
+ .alert-link {
+ text-decoration: underline;
+ color: #fff;
+ }
+}
+
.label {
border-radius: 0;
}
@@ -179,4 +178,29 @@ table,
border-top-right-radius: 0;
border-top-left-radius: 0;
}
+
+ &-default {
+ .close {
+ color: @text-color;
+ }
+ }
+}
+
+.modal {
+
+ &-content {
+ border: none;
+ }
+
+ &-header {
+ background-color: @navbar-default-bg;
+ color: #fff;
+ }
+
+ &-body,
+ &-footer {
+ .close {
+ color: @text-color;
+ }
+ }
}