fix some details

This commit is contained in:
bechi 2015-04-15 16:50:59 -03:00
commit 0d57e02403
3 changed files with 33 additions and 46 deletions

View file

@ -468,8 +468,9 @@ input[type=number]::-webkit-outer-spin-button {
.label.gray {background-color: #4B6178;}
.history .label {
width: 69px;
width: 57px;
text-align: center;
font-size: 65%;
}
.bg-alert {
@ -639,14 +640,6 @@ button.secondary:focus,
border-radius: 3px;
}
button.disabled.secondary,
button[disabled].secondary,
.button.disabled.secondary,
.button[disabled].secondary {
background-color: #E4E8EC;
color: #A5B2BF;
}
/* PRIMARY */
button.primary,
button.primary:hover,
@ -659,14 +652,6 @@ button.primary:focus,
border-radius: 3px;
}
button.disabled.primary,
button[disabled].primary,
.button.disabled.primary,
.button[disabled].primary {
background-color: #95a5a6;
color: #E6E6E6;
}
/* WARNING */
button.warning,
.button.warning,
@ -679,14 +664,6 @@ button.warning:focus,
border-radius: 3px;
}
button.disabled.warning,
button[disabled].warning,
.button.disabled.warning,
.button[disabled].warning {
background-color: #95a5a6;
color: #E6E6E6;
}
/* WHITE */
button.white,
.button.white {
@ -694,14 +671,6 @@ button.white,
color: #2C3E50;
}
button.disabled.white,
button[disabled].white,
.button.disabled.white,
.button[disabled].white {
background-color: #95a5a6;
color: #E6E6E6;
}
/* BLACK */
button.black,
.button.black {
@ -709,14 +678,6 @@ button.black,
color: #fff;
}
button.disabled.black,
button[disabled].black,
.button.disabled.black,
.button[disabled].black {
background-color: #95a5a6;
color: #E6E6E6;
}
/* GRAY */
button.gray,
.button.gray {
@ -724,6 +685,31 @@ button.gray,
color: #2C3E50;
}
button.disabled.black,
button[disabled].black,
.button.disabled.black,
.button[disabled].black,
button.disabled.white,
button[disabled].white,
.button.disabled.white,
.button[disabled].white,
button.disabled.warning,
button[disabled].warning,
.button.disabled.warning,
.button[disabled].warning,
button.disabled.primary,
button[disabled].primary,
.button.disabled.primary,
.button[disabled].primary,
button.disabled.secondary,
button[disabled].secondary,
.button.disabled.secondary,
.button[disabled].secondary {
background-color: #A5B2BF !important;
color: #fff;
}
.button, button {
text-transform: uppercase;
}