@neo4j-ndl/base 0.5.2 → 0.6.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, 01 Jul 2022 10:44:25 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -661,6 +661,39 @@ h6,
|
|
|
661
661
|
letter-spacing: 0px;
|
|
662
662
|
line-height: 20px;
|
|
663
663
|
}
|
|
664
|
+
.n-container{
|
|
665
|
+
width: 100%;
|
|
666
|
+
}
|
|
667
|
+
@media (min-width: 450px){
|
|
668
|
+
.n-container{
|
|
669
|
+
max-width: 450px;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
@media (min-width: 640px){
|
|
673
|
+
.n-container{
|
|
674
|
+
max-width: 640px;
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
@media (min-width: 768px){
|
|
678
|
+
.n-container{
|
|
679
|
+
max-width: 768px;
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
@media (min-width: 1024px){
|
|
683
|
+
.n-container{
|
|
684
|
+
max-width: 1024px;
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
@media (min-width: 1280px){
|
|
688
|
+
.n-container{
|
|
689
|
+
max-width: 1280px;
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
@media (min-width: 1536px){
|
|
693
|
+
.n-container{
|
|
694
|
+
max-width: 1536px;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
664
697
|
/**
|
|
665
698
|
*
|
|
666
699
|
* Copyright (c) "Neo4j"
|
|
@@ -2908,6 +2941,96 @@ a.ndl-btn{
|
|
|
2908
2941
|
--tw-bg-opacity: 1;
|
|
2909
2942
|
background-color: rgb(237 18 82 / var(--tw-bg-opacity));
|
|
2910
2943
|
}
|
|
2944
|
+
/**
|
|
2945
|
+
*
|
|
2946
|
+
* Copyright (c) "Neo4j"
|
|
2947
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
2948
|
+
*
|
|
2949
|
+
* This file is part of Neo4j.
|
|
2950
|
+
*
|
|
2951
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
2952
|
+
* it under the terms of the GNU General Public License as published by
|
|
2953
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
2954
|
+
* (at your option) any later version.
|
|
2955
|
+
*
|
|
2956
|
+
* This program is distributed in the hope that it will be useful,
|
|
2957
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
2958
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
2959
|
+
* GNU General Public License for more details.
|
|
2960
|
+
*
|
|
2961
|
+
* You should have received a copy of the GNU General Public License
|
|
2962
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
2963
|
+
*/
|
|
2964
|
+
.ndl-dropdown{
|
|
2965
|
+
display: inline-flex;
|
|
2966
|
+
flex-direction: column;
|
|
2967
|
+
row-gap: 5px;
|
|
2968
|
+
}
|
|
2969
|
+
.ndl-dropdown.fluid{
|
|
2970
|
+
display: flex;
|
|
2971
|
+
}
|
|
2972
|
+
.ndl-dropdown label{
|
|
2973
|
+
--tw-text-opacity: 1;
|
|
2974
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
2975
|
+
font-size: var(--font-size-body-medium);
|
|
2976
|
+
font-weight: var(--font-weight-normal);
|
|
2977
|
+
letter-spacing: 0.25px;
|
|
2978
|
+
line-height: 20px;
|
|
2979
|
+
}
|
|
2980
|
+
.ndl-dropdown .sub-text{
|
|
2981
|
+
--tw-text-opacity: 1;
|
|
2982
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
2983
|
+
font-size: var(--font-size-body-small);
|
|
2984
|
+
font-weight: var(--font-weight-normal);
|
|
2985
|
+
letter-spacing: 0.25px;
|
|
2986
|
+
line-height: 20px;
|
|
2987
|
+
}
|
|
2988
|
+
.ndl-dropdown .error-text{
|
|
2989
|
+
--tw-text-opacity: 1;
|
|
2990
|
+
color: rgb(204 37 75 / var(--tw-text-opacity));
|
|
2991
|
+
}
|
|
2992
|
+
.ndl-dropdown.large label {
|
|
2993
|
+
font-size: var(--font-size-body-large);
|
|
2994
|
+
font-weight: var(--font-weight-normal);
|
|
2995
|
+
letter-spacing: 0.25px;
|
|
2996
|
+
line-height: 24px;
|
|
2997
|
+
}
|
|
2998
|
+
.ndl-dropdown.large .sub-text {
|
|
2999
|
+
font-size: var(--font-size-body-medium);
|
|
3000
|
+
font-weight: var(--font-weight-normal);
|
|
3001
|
+
letter-spacing: 0.25px;
|
|
3002
|
+
line-height: 20px;
|
|
3003
|
+
}
|
|
3004
|
+
.ndl-dropdown .dropdown-icon.small {
|
|
3005
|
+
width: 20px;
|
|
3006
|
+
height: 20px;
|
|
3007
|
+
}
|
|
3008
|
+
.ndl-dropdown .dropdown-icon.large {
|
|
3009
|
+
width: 24px;
|
|
3010
|
+
height: 24px;
|
|
3011
|
+
}
|
|
3012
|
+
.ndl-dropdown .dropdown-icon{
|
|
3013
|
+
--tw-text-opacity: 1;
|
|
3014
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
3015
|
+
}
|
|
3016
|
+
.ndl-dropdown .indicator {
|
|
3017
|
+
width: 1px;
|
|
3018
|
+
height: 100%;
|
|
3019
|
+
--tw-bg-opacity: 1;
|
|
3020
|
+
background-color: rgb(196 200 205 / var(--tw-bg-opacity));
|
|
3021
|
+
}
|
|
3022
|
+
.ndl-dropdown .error-icon.small {
|
|
3023
|
+
width: 20px;
|
|
3024
|
+
height: 20px;
|
|
3025
|
+
}
|
|
3026
|
+
.ndl-dropdown .error-icon.large {
|
|
3027
|
+
width: 24px;
|
|
3028
|
+
height: 24px;
|
|
3029
|
+
}
|
|
3030
|
+
.ndl-dropdown .error-icon{
|
|
3031
|
+
--tw-text-opacity: 1;
|
|
3032
|
+
color: rgb(204 37 75 / var(--tw-text-opacity));
|
|
3033
|
+
}
|
|
2911
3034
|
.n-sr-only{
|
|
2912
3035
|
position: absolute;
|
|
2913
3036
|
width: 1px;
|
|
@@ -2996,6 +3119,9 @@ a.ndl-btn{
|
|
|
2996
3119
|
.n-h-12{
|
|
2997
3120
|
height: 3rem;
|
|
2998
3121
|
}
|
|
3122
|
+
.n-h-7{
|
|
3123
|
+
height: 1.75rem;
|
|
3124
|
+
}
|
|
2999
3125
|
.n-h-36{
|
|
3000
3126
|
height: 9rem;
|
|
3001
3127
|
}
|
|
@@ -3070,9 +3196,15 @@ a.ndl-btn{
|
|
|
3070
3196
|
.n-justify-between{
|
|
3071
3197
|
justify-content: space-between;
|
|
3072
3198
|
}
|
|
3199
|
+
.n-gap-3{
|
|
3200
|
+
gap: 0.75rem;
|
|
3201
|
+
}
|
|
3073
3202
|
.n-gap-2{
|
|
3074
3203
|
gap: 0.5rem;
|
|
3075
3204
|
}
|
|
3205
|
+
.n-gap-1{
|
|
3206
|
+
gap: 0.25rem;
|
|
3207
|
+
}
|
|
3076
3208
|
.n-gap-6{
|
|
3077
3209
|
gap: 1.5rem;
|
|
3078
3210
|
}
|
package/lib/tokens/js/tokens.js
CHANGED