mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 21:56:23 +00:00
User can now specify a custom vacation subject. For Sieve servers
implementing the variables extension, one can write ${subject} to insert
the original subject in the auto reply.
SOGoDefaultVacationSubject is a new domain defaults parameter used when
the user doesn't specify a custom subject.
Fixes #685, #1447
55 lines
1.1 KiB
SCSS
55 lines
1.1 KiB
SCSS
/// input.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
|
|
@import 'extends';
|
|
|
|
md-input-container {
|
|
&.md-input-number {
|
|
flex-grow: 0;
|
|
width: 4em;
|
|
input {
|
|
text-align: center;
|
|
}
|
|
}
|
|
&.md-no-flex {
|
|
flex: none !important;
|
|
}
|
|
.md-errors-spacer {
|
|
// Temporary fix for https://github.com/angular/material/issues/6214
|
|
min-height: 0 !important;
|
|
}
|
|
.sg-hint {
|
|
@extend .md-char-counter;
|
|
@include rtl(text-align, left, right);
|
|
}
|
|
}
|
|
|
|
//md-input-container .bgroup {
|
|
// display: block;
|
|
//}
|
|
//.bgroup b {
|
|
// left-margin: -1.25em;
|
|
//}
|
|
|
|
md-autocomplete .sg-input-no-message [md-floating-label] {
|
|
md-input-container {
|
|
// See .md-input-has-messages
|
|
padding-bottom: $input-container-padding;
|
|
}
|
|
}
|
|
|
|
.PseudoField input {
|
|
flex: 1;
|
|
order: 2;
|
|
display: block;
|
|
|
|
background: none;
|
|
padding-top: $input-padding-top;
|
|
padding-bottom: 0;
|
|
border-width: 0 0 $input-border-width-default 0;
|
|
line-height: $input-line-height;
|
|
-ms-flex-preferred-size: $input-line-height; //IE fix
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|