Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
6c3cd6fd
Commit
6c3cd6fd
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
fixes
#5212
: text emphasis classes only get hover with links
parent
a6206c98
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/assets/css/bootstrap.css
+4
-4
docs/assets/css/bootstrap.css
less/type.less
+11
-24
less/type.less
with
15 additions
and
28 deletions
+15
-28
docs/assets/css/bootstrap.css
+
4
-
4
View file @
6c3cd6fd
...
@@ -618,7 +618,7 @@ cite {
...
@@ -618,7 +618,7 @@ cite {
color
:
#c09853
;
color
:
#c09853
;
}
}
.text-warning
:hover
{
a
.text-warning
:hover
{
color
:
#a47e3c
;
color
:
#a47e3c
;
}
}
...
@@ -626,7 +626,7 @@ cite {
...
@@ -626,7 +626,7 @@ cite {
color
:
#b94a48
;
color
:
#b94a48
;
}
}
.text-error
:hover
{
a
.text-error
:hover
{
color
:
#953b39
;
color
:
#953b39
;
}
}
...
@@ -634,7 +634,7 @@ cite {
...
@@ -634,7 +634,7 @@ cite {
color
:
#3a87ad
;
color
:
#3a87ad
;
}
}
.text-info
:hover
{
a
.text-info
:hover
{
color
:
#2d6987
;
color
:
#2d6987
;
}
}
...
@@ -642,7 +642,7 @@ cite {
...
@@ -642,7 +642,7 @@ cite {
color
:
#468847
;
color
:
#468847
;
}
}
.text-success
:hover
{
a
.text-success
:hover
{
color
:
#356635
;
color
:
#356635
;
}
}
...
...
This diff is collapsed.
Click to expand it.
less/type.less
+
11
-
24
View file @
6c3cd6fd
...
@@ -37,30 +37,17 @@ cite {
...
@@ -37,30 +37,17 @@ cite {
.muted {
.muted {
color: @grayLight;
color: @grayLight;
}
}
.text-warning {
.text-warning { color: @warningText; }
color: @warningText;
a.text-warning:hover { color: darken(@warningText, 10%); }
&:hover {
color: darken(@warningText, 10%);
.text-error { color: @errorText; }
}
a.text-error:hover { color: darken(@errorText, 10%); }
}
.text-error {
.text-info { color: @infoText; }
color: @errorText;
a.text-info:hover { color: darken(@infoText, 10%); }
&:hover {
color: darken(@errorText, 10%);
.text-success { color: @successText; }
}
a.text-success:hover { color: darken(@successText, 10%); }
}
.text-info {
color: @infoText;
&:hover {
color: darken(@infoText, 10%);
}
}
.text-success {
color: @successText;
&:hover {
color: darken(@successText, 10%);
}
}
// Headings
// Headings
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment