Merge pull request #329 from taigaio/issue/2134/form-font
Fix font size, color and form contraststable
commit
8bad281460
|
@ -5,7 +5,7 @@ section.filters
|
|||
|
||||
form
|
||||
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")
|
||||
|
||||
div.filters-step-cat
|
||||
|
|
|
@ -8,7 +8,7 @@ section.filters
|
|||
|
||||
form
|
||||
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")
|
||||
h2
|
||||
a.hidden(href="", title="cat-name")
|
||||
|
|
|
@ -4,7 +4,7 @@ section.filters
|
|||
span.title filters
|
||||
form
|
||||
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")
|
||||
div.filters-step-cat
|
||||
div.filters-applied
|
||||
|
|
|
@ -19,15 +19,14 @@ input[type="date"],
|
|||
input[type="password"],
|
||||
select,
|
||||
textarea {
|
||||
@extend %title;
|
||||
background: $whitish;
|
||||
background: $very-light-gray;
|
||||
border: 1px solid $gray-light;
|
||||
color: $grayer;
|
||||
margin: 0;
|
||||
padding: 8px;
|
||||
width: 100%;
|
||||
@include placeholder {
|
||||
color: $gray-light;
|
||||
color: darken($gray-light, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
}
|
||||
}
|
||||
.editable-attachment-comment {
|
||||
@extend %medium;
|
||||
@extend %small;
|
||||
}
|
||||
.attachment-settings {
|
||||
flex-basis: 15%;
|
||||
|
|
|
@ -212,6 +212,7 @@
|
|||
max-width: 600px;
|
||||
}
|
||||
.last-sprint-name {
|
||||
@extend %small;
|
||||
color: $gray;
|
||||
opacity: 1;
|
||||
position: absolute;
|
||||
|
|
|
@ -24,13 +24,15 @@
|
|||
transition: opacity 1s linear;
|
||||
}
|
||||
input {
|
||||
@extend %text;
|
||||
@extend %medium;
|
||||
background: $grayer;
|
||||
color: $whitish;
|
||||
@include placeholder {
|
||||
color: $gray-light;
|
||||
}
|
||||
}
|
||||
&.loading {
|
||||
.loading {
|
||||
margin: 0;
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
|
|
Loading…
Reference in New Issue