Merge branch 'css_fixes' into 'master'
Small CSS fixes and typo correction. See merge request !5
This commit is contained in:
commit
fde460f83c
|
@ -14,7 +14,7 @@ a:hover {
|
||||||
.btn-default:hover,
|
.btn-default:hover,
|
||||||
.btn-default:focus {
|
.btn-default:focus {
|
||||||
color: #333;
|
color: #333;
|
||||||
text-shadow: none; /* Prevent inheritence from `body` */
|
text-shadow: none; /* Prevent inheritance from `body` */
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ a.classic:focus {
|
||||||
.input-field .big-prefix ~ div.select-wrapper {
|
.input-field .big-prefix ~ div.select-wrapper {
|
||||||
margin-left: 6rem;
|
margin-left: 6rem;
|
||||||
width: 92%;
|
width: 92%;
|
||||||
width: calc(100% - 6rem); }
|
width: calc(100% - 6rem);
|
||||||
}
|
}
|
||||||
@media only screen and (max-width : 992px) {
|
@media only screen and (max-width : 992px) {
|
||||||
.input-field .big-prefix ~ input {
|
.input-field .big-prefix ~ input {
|
||||||
|
@ -72,16 +72,16 @@ a.classic:focus {
|
||||||
line-height: 36px;
|
line-height: 36px;
|
||||||
}
|
}
|
||||||
.textarea-hidden {
|
.textarea-hidden {
|
||||||
position: 'fixed';
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: '2em';
|
width: 2em;
|
||||||
height: '2em';
|
height: 2em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 'none';
|
border: none;
|
||||||
outline: 'none';
|
outline: none;
|
||||||
boxShadow: 'none';
|
box-shadow: none;
|
||||||
background: 'transparent';
|
background: transparent;
|
||||||
}
|
}
|
||||||
.hiddendiv.common {
|
.hiddendiv.common {
|
||||||
min-height: 170px;
|
min-height: 170px;
|
||||||
|
|
Loading…
Reference in New Issue