Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
masonstrap
Commits
664fea08
Commit
664fea08
authored
Jan 27, 2013
by
Thomas Park
Browse files
spruce: fix color on control-label states
parent
489a0d37
Changes
3
Hide whitespace changes
Inline
Side-by-side
spruce/bootstrap.css
View file @
664fea08
...
...
@@ -5503,7 +5503,11 @@ select {
-moz-border-radius
:
4px
;
border-radius
:
4px
;
}
.control-group.error
label
,
.control-group.warning
.control-label
,
.control-group.error
.control-label
,
.control-group.success
.control-label
{
color
:
#555555
;
}
.control-group.error
.help-block
,
.control-group.error
.help-inline
{
color
:
#d14432
;
...
...
@@ -5514,7 +5518,6 @@ select {
border
:
1px
solid
#d14432
;
color
:
#555555
;
}
.control-group.success
label
,
.control-group.success
.help-block
,
.control-group.success
.help-inline
{
color
:
#015b4e
;
...
...
@@ -5525,7 +5528,6 @@ select {
border
:
1px
solid
#015b4e
;
color
:
#555555
;
}
.control-group.warning
label
,
.control-group.warning
.help-block
,
.control-group.warning
.help-inline
{
color
:
#f26522
;
...
...
spruce/bootstrap.min.css
View file @
664fea08
...
...
@@ -913,11 +913,12 @@ label,.help-block,input[type="file"]{color:#333333;}
input
,
textarea
,
select
{
color
:
#555555
;}
.uneditable-input
{
color
:
#555555
;}
.form-actions
{
border-top
:
none
;
-webkit-border-radius
:
4px
;
-moz-border-radius
:
4px
;
border-radius
:
4px
;}
.control-group.error
label
,
.control-group.error
.help-block
,
.control-group.error
.help-inline
{
color
:
#d14432
;}
.control-group.warning
.control-label
,
.control-group.error
.control-label
,
.control-group.success
.control-label
{
color
:
#555555
;}
.control-group.error
.help-block
,
.control-group.error
.help-inline
{
color
:
#d14432
;}
.control-group.error
input
,
.control-group.error
select
,
.control-group.error
textarea
{
border
:
1px
solid
#d14432
;
color
:
#555555
;}
.control-group.success
label
,
.control-group.success
.help-block
,
.control-group.success
.help-inline
{
color
:
#015b4e
;}
.control-group.success
.help-block
,
.control-group.success
.help-inline
{
color
:
#015b4e
;}
.control-group.success
input
,
.control-group.success
select
,
.control-group.success
textarea
{
border
:
1px
solid
#015b4e
;
color
:
#555555
;}
.control-group.warning
label
,
.control-group.warning
.help-block
,
.control-group.warning
.help-inline
{
color
:
#f26522
;}
.control-group.warning
.help-block
,
.control-group.warning
.help-inline
{
color
:
#f26522
;}
.control-group.warning
input
,
.control-group.warning
select
,
.control-group.warning
textarea
{
border
:
1px
solid
#f26522
;
color
:
#555555
;}
.alert
{
text-shadow
:
none
;
border
:
none
;}
.alert
h1
,
.alert
h2
,
.alert
h3
,
.alert
h4
,
.alert
h5
,
.alert
h6
{
font-weight
:
bold
;
color
:
#ffffff
;}
.alert-heading
{
font-family
:
Georgia
,
"Times New Roman"
,
Times
,
serif
;
color
:
inherit
;}
...
...
spruce/bootswatch.less
View file @
664fea08
...
...
@@ -499,9 +499,22 @@ input, textarea, select {
.border-radius(4px);
}
.control-group {
&.warning,
&.error,
&.success {
.control-label {
color: @textColor;
}
}
}
.control-group.error {
label, .help-block, .help-inline {
.help-block,
.help-inline {
color: @red;
}
...
...
@@ -513,7 +526,8 @@ input, textarea, select {
.control-group.success {
label, .help-block, .help-inline {
.help-block,
.help-inline {
color: @green;
}
...
...
@@ -525,7 +539,8 @@ input, textarea, select {
.control-group.warning {
label, .help-block, .help-inline {
.help-block,
.help-inline {
color: @orange;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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