Merge pull request #329 from taigaio/issue/2134/form-font

Fix font size, color and form contrast
stable
Juanfran 2015-02-10 05:41:37 -08:00
commit 8bad281460
7 changed files with 10 additions and 8 deletions

View File

@ -5,7 +5,7 @@ section.filters
form form
fieldset fieldset
input(type="text", placeholder="Search by subject or reference...", ng-model="filtersQ") input(type="text", placeholder="Subject or reference", ng-model="filtersQ")
a.icon.icon-search(href="", title="search") a.icon.icon-search(href="", title="search")
div.filters-step-cat div.filters-step-cat

View File

@ -8,7 +8,7 @@ section.filters
form form
fieldset fieldset
input(type="text", placeholder="Search by subject or reference...", ng-model="filtersQ") input(type="text", placeholder="Subject or reference", ng-model="filtersQ")
a.icon.icon-search(href="", title="search") a.icon.icon-search(href="", title="search")
h2 h2
a.hidden(href="", title="cat-name") a.hidden(href="", title="cat-name")

View File

@ -4,7 +4,7 @@ section.filters
span.title filters span.title filters
form form
fieldset fieldset
input(type="text", placeholder="Search by subject or reference...", ng-model="filtersQ") input(type="text", placeholder="Subject or reference", ng-model="filtersQ")
a.icon.icon-search(href="", title="search") a.icon.icon-search(href="", title="search")
div.filters-step-cat div.filters-step-cat
div.filters-applied div.filters-applied

View File

@ -19,15 +19,14 @@ input[type="date"],
input[type="password"], input[type="password"],
select, select,
textarea { textarea {
@extend %title; background: $very-light-gray;
background: $whitish;
border: 1px solid $gray-light; border: 1px solid $gray-light;
color: $grayer; color: $grayer;
margin: 0; margin: 0;
padding: 8px; padding: 8px;
width: 100%; width: 100%;
@include placeholder { @include placeholder {
color: $gray-light; color: darken($gray-light, 10%);
} }
} }

View File

@ -84,7 +84,7 @@
} }
} }
.editable-attachment-comment { .editable-attachment-comment {
@extend %medium; @extend %small;
} }
.attachment-settings { .attachment-settings {
flex-basis: 15%; flex-basis: 15%;

View File

@ -212,6 +212,7 @@
max-width: 600px; max-width: 600px;
} }
.last-sprint-name { .last-sprint-name {
@extend %small;
color: $gray; color: $gray;
opacity: 1; opacity: 1;
position: absolute; position: absolute;

View File

@ -24,13 +24,15 @@
transition: opacity 1s linear; transition: opacity 1s linear;
} }
input { input {
@extend %text;
@extend %medium;
background: $grayer; background: $grayer;
color: $whitish; color: $whitish;
@include placeholder { @include placeholder {
color: $gray-light; color: $gray-light;
} }
} }
&.loading { .loading {
margin: 0; margin: 0;
padding: 8px; padding: 8px;
text-align: center; text-align: center;