mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
2d9b089e16
Fix inconsistent use of tabs and spaces in less files GitOrigin-RevId: c69667f0dc6bc70ea3623890e2b2b741e358d454
58 lines
1.1 KiB
Text
58 lines
1.1 KiB
Text
.contact-us-modal {
|
|
textarea {
|
|
height: 120px;
|
|
}
|
|
}
|
|
|
|
.contact-suggestions {
|
|
margin: 0 -20px 10px;
|
|
padding: 10px 0;
|
|
color: @gray-dark;
|
|
background-color: @gray-lightest;
|
|
border-top: solid 1px @gray-lighter;
|
|
border-bottom: solid 1px @gray-lighter;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.contact-suggestion-label {
|
|
margin-bottom: 10px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.contact-suggestion-list {
|
|
.list-unstyled();
|
|
background-color: #fff;
|
|
border-top: solid 1px @gray-lighter;
|
|
border-bottom: solid 1px @gray-lighter;
|
|
margin: 0;
|
|
|
|
li:last-child .contact-suggestion-list-item {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.contact-suggestion-list-item {
|
|
display: table;
|
|
width: 100%;
|
|
color: @dropdown-link-color;
|
|
padding: 10px 20px;
|
|
border-bottom: solid 1px lighten(@gray-lighter, 10%);
|
|
cursor: pointer;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
text-decoration: none;
|
|
color: @dropdown-link-hover-color!important;
|
|
background-color: @dropdown-link-hover-bg;
|
|
|
|
.fa {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.fa {
|
|
display: table-cell;
|
|
text-align: right;
|
|
color: @gray-lighter;
|
|
}
|
|
}
|