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