Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2012-12-20 10:02:57 +0400
committerMark Otto <otto@github.com>2012-12-20 10:02:57 +0400
commit7449e2e5a18d3f5d3c0ef76b0960f70b77fb47e8 (patch)
tree6631080e8d9aba8901617a21bf9ac3fde13a826f /less
parent65edc9cd6e453a7bf30ccbd6a57b3ea340e21907 (diff)
Remove @black and just use #000
Diffstat (limited to 'less')
-rw-r--r--less/close.less4
-rw-r--r--less/dropdowns.less4
-rw-r--r--less/modals.less2
-rw-r--r--less/variables.less1
4 files changed, 5 insertions, 6 deletions
diff --git a/less/close.less b/less/close.less
index 24689fd9d0..d0403f93ed 100644
--- a/less/close.less
+++ b/less/close.less
@@ -8,11 +8,11 @@
font-size: 20px;
font-weight: bold;
line-height: @line-height-base;
- color: @black;
+ color: #000;
text-shadow: 0 1px 0 rgba(255,255,255,1);
.opacity(20);
&:hover {
- color: @black;
+ color: #000;
text-decoration: none;
cursor: pointer;
.opacity(40);
diff --git a/less/dropdowns.less b/less/dropdowns.less
index 33f58497ed..81f8c735c9 100644
--- a/less/dropdowns.less
+++ b/less/dropdowns.less
@@ -20,7 +20,7 @@
width: 0;
height: 0;
vertical-align: top;
- border-top: 4px solid @black;
+ border-top: 4px solid #000;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
content: "";
@@ -135,7 +135,7 @@
// Reverse the caret
.caret {
border-top: 0;
- border-bottom: 4px solid @black;
+ border-bottom: 4px solid #000;
content: "";
}
// Different positioning for bottom up menu
diff --git a/less/modals.less b/less/modals.less
index 584346e945..8da32dea9f 100644
--- a/less/modals.less
+++ b/less/modals.less
@@ -10,7 +10,7 @@
bottom: 0;
left: 0;
z-index: @zindex-modal-background;
- background-color: @black;
+ background-color: #000;
// Fade for backdrop
&.fade { opacity: 0; }
}
diff --git a/less/variables.less b/less/variables.less
index 058792eff9..9b85f3574e 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -9,7 +9,6 @@
// Grays
// -------------------------
-@black: #000;
@grayDarker: #222;
@grayDark: #333;
@gray: #555;