mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-08 22:24:14 +08:00
Merge branch 'master' into sieveparser
This commit is contained in:
commit
e7da264f4b
4 changed files with 41 additions and 45 deletions
4
.cmds
4
.cmds
|
@ -15,5 +15,5 @@ webpack --color --watch
|
|||
|
||||
#
|
||||
gpg --import x
|
||||
gpg --detach-sign --armor --openpgp -u 87DA4591 x
|
||||
for ff in `ls *.zip`; do gpg --detach-sign --armor --openpgp -u 87DA4591 $ff; done
|
||||
gpg --detach-sign --armor --openpgp -u 87DA4591 --passphrase ?? x
|
||||
for ff in `ls ./build/dist/releases/**/**/*.zip | xargs`; do gpg --detach-sign --no-tty --yes --armor --openpgp -u 87DA4591 --passphrase ?? $ff; done
|
||||
|
|
|
@ -60,10 +60,10 @@
|
|||
data-bind="value: filterRaw, valueUpdate: 'afterkeydown'"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div data-bind="visible: inited() && (!filterRaw.active() || !filterRaw.active())">
|
||||
<div class="filters-list-top-padding"></div>
|
||||
<table class="table table-hover list-table filters-list g-ui-user-select-none"
|
||||
data-bind="visible: inited() && (!filterRaw.active() || !filterRaw.active()), i18nUpdate: filters">
|
||||
data-bind="i18nUpdate: filters">
|
||||
<colgroup>
|
||||
<col style="width: 30px" />
|
||||
<col style="width: 16px" />
|
||||
|
@ -103,4 +103,3 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -19,7 +19,7 @@ const config = {
|
|||
cleanPath: '',
|
||||
zipSrcPath: '',
|
||||
zipFile: '',
|
||||
zipFileShort: '',
|
||||
// zipFileShort: '',
|
||||
|
||||
paths: {}
|
||||
};
|
||||
|
|
3
vendors/bootstrap/less/code.less
vendored
3
vendors/bootstrap/less/code.less
vendored
|
@ -31,9 +31,6 @@ pre {
|
|||
margin: 0 0 @baseLineHeight / 2;
|
||||
font-size: @baseFontSize - 1; // 14px to 13px
|
||||
line-height: @baseLineHeight;
|
||||
word-break: break-all;
|
||||
word-wrap: break-word;
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
background-color: #f5f5f5;
|
||||
border: 1px solid rgba(0,0,0,.15);
|
||||
|
|
Loading…
Add table
Reference in a new issue