@neo4j-ndl/base 0.7.1 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -420,7 +420,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
420
420
|
*/
|
|
421
421
|
/**
|
|
422
422
|
* Do not edit directly
|
|
423
|
-
* Generated on
|
|
423
|
+
* Generated on Fri, 09 Sep 2022 08:09:08 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -3388,6 +3388,60 @@ a.ndl-btn{
|
|
|
3388
3388
|
min-height: 20px;
|
|
3389
3389
|
width: 2px;
|
|
3390
3390
|
}
|
|
3391
|
+
/**
|
|
3392
|
+
*
|
|
3393
|
+
* Copyright (c) "Neo4j"
|
|
3394
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
3395
|
+
*
|
|
3396
|
+
* This file is part of Neo4j.
|
|
3397
|
+
*
|
|
3398
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
3399
|
+
* it under the terms of the GNU General Public License as published by
|
|
3400
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
3401
|
+
* (at your option) any later version.
|
|
3402
|
+
*
|
|
3403
|
+
* This program is distributed in the hope that it will be useful,
|
|
3404
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
3405
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
3406
|
+
* GNU General Public License for more details.
|
|
3407
|
+
*
|
|
3408
|
+
* You should have received a copy of the GNU General Public License
|
|
3409
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
3410
|
+
*/
|
|
3411
|
+
.ndl-code-block-container{
|
|
3412
|
+
height: 100%;
|
|
3413
|
+
overflow: hidden;
|
|
3414
|
+
border-radius: 4px;
|
|
3415
|
+
--tw-bg-opacity: 1;
|
|
3416
|
+
background-color: rgb(245 247 250 / var(--tw-bg-opacity));
|
|
3417
|
+
}
|
|
3418
|
+
.ndl-code-block-container .highlight-wrapper{
|
|
3419
|
+
margin-top: 1rem;
|
|
3420
|
+
}
|
|
3421
|
+
.ndl-code-block-container .highlight-wrapper.has-header{
|
|
3422
|
+
height: calc(100% - 3.5em);
|
|
3423
|
+
}
|
|
3424
|
+
.ndl-code-block-container .highlight-wrapper:not(.has-header){
|
|
3425
|
+
height: 100%;
|
|
3426
|
+
}
|
|
3427
|
+
.ndl-code-block-container .highlight-wrapper.focused{
|
|
3428
|
+
overflow-y: auto;
|
|
3429
|
+
}
|
|
3430
|
+
.ndl-code-block-container .highlight-wrapper:not(.focused){
|
|
3431
|
+
overflow-y: hidden;
|
|
3432
|
+
}
|
|
3433
|
+
/* Component's title */
|
|
3434
|
+
.ndl-code-block-container .ndl-code-block-title{
|
|
3435
|
+
margin-left: 1rem;
|
|
3436
|
+
margin-right: 1rem;
|
|
3437
|
+
margin-top: 1rem;
|
|
3438
|
+
display: flex;
|
|
3439
|
+
align-items: center;
|
|
3440
|
+
justify-content: space-between;
|
|
3441
|
+
}
|
|
3442
|
+
.ndl-code-block-container .ndl-code-block-title.disabled{
|
|
3443
|
+
opacity: 0.5;
|
|
3444
|
+
}
|
|
3391
3445
|
.n-sr-only{
|
|
3392
3446
|
position: absolute;
|
|
3393
3447
|
width: 1px;
|
|
@@ -3479,6 +3533,9 @@ a.ndl-btn{
|
|
|
3479
3533
|
.n-h-4{
|
|
3480
3534
|
height: 1rem;
|
|
3481
3535
|
}
|
|
3536
|
+
.n-h-80{
|
|
3537
|
+
height: 20rem;
|
|
3538
|
+
}
|
|
3482
3539
|
.n-h-10{
|
|
3483
3540
|
height: 2.5rem;
|
|
3484
3541
|
}
|
package/lib/tokens/js/tokens.js
CHANGED