version 1.6.0

This commit is contained in:
Rene
2018-12-02 23:25:00 +01:00
parent fc83feb4e5
commit 7c473de528
8 changed files with 1715 additions and 1557 deletions
+8
View File
@@ -267,6 +267,14 @@ Take the table below only as a overview of all options.
<td><code>false</code></td> <td><code>false</code></td>
<td>Indiactes whether the textarea height will be dynamic (content dependent).</td> <td>Indiactes whether the textarea height will be dynamic (content dependent).</td>
</tr> </tr>
<tr>
<td></td>
<td>inheritedAttrs</td>
<td>string / array / null</td>
<td><code>["style", "class"]</code></td>
<td><b>During initialization:</b> Attributes which the generated host-element shall inherit from from the target textarea-element.<br/>
<b>During destruction:</b> Attributes which the target textarea-element shall inherit from from the generated host-element.</td>
</tr>
<tr> <tr>
<th align="left" colspan="5">}</th> <th align="left" colspan="5">}</th>
</tr> </tr>
+18 -3
View File
@@ -2,13 +2,13 @@
* OverlayScrollbars * OverlayScrollbars
* https://github.com/KingSora/OverlayScrollbars * https://github.com/KingSora/OverlayScrollbars
* *
* Version: 1.5.3 * Version: 1.6.0
* *
* Copyright KingSora. * Copyright KingSora.
* https://github.com/KingSora * https://github.com/KingSora
* *
* Released under the MIT license. * Released under the MIT license.
* Date: 07.11.2018 * Date: 02.12.2018
*/ */
/* /*
@@ -39,7 +39,7 @@ body.os-dragging * {
position: relative; position: relative;
overflow: visible !important; overflow: visible !important;
flex-direction: column; flex-direction: column;
flex-wrap: wrap; flex-wrap: nowrap;
justify-content: flex-start; justify-content: flex-start;
align-content: flex-start; align-content: flex-start;
align-items: flex-start; align-items: flex-start;
@@ -51,6 +51,21 @@ body.os-dragging * {
.os-host-flexbox > .os-padding > .os-viewport > .os-content { .os-host-flexbox > .os-padding > .os-viewport > .os-content {
display: flex; display: flex;
} }
.os-host-flexbox > .os-size-auto-observer {
height: inherit !important;
}
.os-host-flexbox > .os-content-glue {
flex-grow: 1;
flex-shrink: 0;
}
.os-host-flexbox > .os-size-auto-observer,
.os-host-flexbox > .os-content-glue {
min-height: 0;
min-width: 0;
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
}
#hs-dummy-scrollbar-size { #hs-dummy-scrollbar-size {
position: fixed; position: fixed;
opacity: 0; opacity: 0;
+3 -3
View File
File diff suppressed because one or more lines are too long
+847 -780
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
+3 -3
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "overlayscrollbars", "name": "overlayscrollbars",
"version": "1.5.3", "version": "1.6.0",
"description": "A javascript scrollbar plugin which hides the native scrollbars and provides custom styleable overlay scrollbars, but keeps the native functionality and feeling.", "description": "A javascript scrollbar plugin which hides the native scrollbars and provides custom styleable overlay scrollbars, but keeps the native functionality and feeling.",
"keywords" : [ "keywords" : [
"overlayscrollbars", "overlayscrollbars",