holygrail2 1.1.90 → 1.1.92
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/package.json +1 -1
- package/scss/base/_helpers.scss +10 -16
- package/scss/elements/_buttons.scss +32 -28
package/package.json
CHANGED
package/scss/base/_helpers.scss
CHANGED
|
@@ -936,23 +936,17 @@ strong {
|
|
|
936
936
|
text-transform: none;
|
|
937
937
|
}
|
|
938
938
|
}
|
|
939
|
-
[lang^="zh"]
|
|
940
|
-
|
|
941
|
-
[lang^="ko"],
|
|
942
|
-
//coreano ko-KR
|
|
939
|
+
[lang^="zh"],//chino
|
|
940
|
+
[lang^="zn"],//chino
|
|
941
|
+
[lang^="ko"], //coreano ko-KR
|
|
943
942
|
[lang^="vi"],
|
|
944
|
-
[lang^="el"]
|
|
945
|
-
|
|
946
|
-
[lang^="
|
|
947
|
-
|
|
948
|
-
[lang^="
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
//serbio
|
|
952
|
-
[lang^="uk"],
|
|
953
|
-
//ukraniano
|
|
954
|
-
[lang^="bg"],
|
|
955
|
-
//bulgaro
|
|
943
|
+
[lang^="el"],//griego
|
|
944
|
+
[lang^="tr"],// turco
|
|
945
|
+
[lang^="ru"],//ruso
|
|
946
|
+
[lang^="sr"],//serbio
|
|
947
|
+
[lang^="uk"],//ukraniano
|
|
948
|
+
[lang^="bg"],//bulgaro
|
|
949
|
+
|
|
956
950
|
[lang^="ar"] //arab emirates, egipto ,jordania, israel ,qatar , bahrain ,arabia saudi
|
|
957
951
|
{
|
|
958
952
|
body {
|
|
@@ -81,7 +81,6 @@ button {
|
|
|
81
81
|
align-items: center;
|
|
82
82
|
justify-content: space-between;
|
|
83
83
|
padding: 8px 32px;
|
|
84
|
-
|
|
85
84
|
&.btn--mini,
|
|
86
85
|
&.btn--small {
|
|
87
86
|
width: max-content;
|
|
@@ -148,8 +147,7 @@ button {
|
|
|
148
147
|
}
|
|
149
148
|
}
|
|
150
149
|
.btn--mini {
|
|
151
|
-
padding: $padding-global * 1 + 2px $padding-global * 3 $padding-global * 1
|
|
152
|
-
$padding-global * 3;
|
|
150
|
+
padding: $padding-global * 1 + 2px $padding-global * 3 $padding-global * 1 $padding-global * 3;
|
|
153
151
|
font-size: $btn-text-mini;
|
|
154
152
|
min-width: 50px;
|
|
155
153
|
padding-left: $padding-global;
|
|
@@ -335,13 +333,11 @@ button {
|
|
|
335
333
|
background-color: $c-white;
|
|
336
334
|
border: 1px solid $c-primary;
|
|
337
335
|
svg {
|
|
338
|
-
g {
|
|
339
|
-
}
|
|
336
|
+
g {}
|
|
340
337
|
circle {
|
|
341
338
|
stroke: $c-primary;
|
|
342
339
|
}
|
|
343
|
-
path {
|
|
344
|
-
}
|
|
340
|
+
path {}
|
|
345
341
|
}
|
|
346
342
|
&:focus,
|
|
347
343
|
&.focus,
|
|
@@ -743,13 +739,11 @@ button {
|
|
|
743
739
|
.btn-social {
|
|
744
740
|
height: 40px;
|
|
745
741
|
cursor: pointer;
|
|
746
|
-
|
|
747
742
|
display: flex;
|
|
748
743
|
flex-direction: row;
|
|
749
744
|
justify-content: center;
|
|
750
745
|
align-items: center;
|
|
751
746
|
position: relative;
|
|
752
|
-
|
|
753
747
|
svg-icon,
|
|
754
748
|
svg-icon2 {
|
|
755
749
|
display: flex;
|
|
@@ -783,7 +777,6 @@ button {
|
|
|
783
777
|
background-color: $c-white;
|
|
784
778
|
color: $c-primary;
|
|
785
779
|
border: var(--line-width) solid $c-primary;
|
|
786
|
-
|
|
787
780
|
&:focus,
|
|
788
781
|
&.focus,
|
|
789
782
|
&:hover,
|
|
@@ -924,7 +917,7 @@ button {
|
|
|
924
917
|
.btn-group {
|
|
925
918
|
position: relative;
|
|
926
919
|
display: flex;
|
|
927
|
-
|
|
920
|
+
&> :not(:first-child, :last-child) {
|
|
928
921
|
border-radius: 0;
|
|
929
922
|
margin-left: -1px;
|
|
930
923
|
}
|
|
@@ -952,12 +945,10 @@ button {
|
|
|
952
945
|
}
|
|
953
946
|
}
|
|
954
947
|
}
|
|
955
|
-
|
|
956
948
|
.btn-selector {
|
|
957
949
|
position: relative;
|
|
958
950
|
display: flex;
|
|
959
|
-
|
|
960
|
-
& > :not(:first-child, :last-child) {
|
|
951
|
+
&> :not(:first-child, :last-child) {
|
|
961
952
|
border-radius: 0;
|
|
962
953
|
margin-left: -1px;
|
|
963
954
|
}
|
|
@@ -1005,14 +996,11 @@ button {
|
|
|
1005
996
|
z-index: 10;
|
|
1006
997
|
}
|
|
1007
998
|
}
|
|
1008
|
-
|
|
1009
|
-
.btn-selector-wrap{
|
|
1010
|
-
|
|
999
|
+
.btn-selector-wrap {
|
|
1011
1000
|
display: flex;
|
|
1012
|
-
flex-wrap: nowrap;
|
|
1013
|
-
overflow-x: auto;
|
|
1014
|
-
white-space: nowrap;
|
|
1015
|
-
|
|
1001
|
+
flex-wrap: nowrap;
|
|
1002
|
+
overflow-x: auto;
|
|
1003
|
+
white-space: nowrap;
|
|
1016
1004
|
&.btn-selector .btn {
|
|
1017
1005
|
border-radius: 0;
|
|
1018
1006
|
white-space: normal;
|
|
@@ -1022,15 +1010,31 @@ button {
|
|
|
1022
1010
|
padding-inline: 4px;
|
|
1023
1011
|
min-width: 50px;
|
|
1024
1012
|
word-wrap: break-word;
|
|
1025
|
-
overflow-wrap: break-word;
|
|
1026
|
-
text-align: center;
|
|
1027
|
-
display: inline-block;
|
|
1028
|
-
vertical-align: middle;
|
|
1029
|
-
|
|
1013
|
+
overflow-wrap: break-word;
|
|
1014
|
+
text-align: center;
|
|
1015
|
+
display: inline-block;
|
|
1016
|
+
vertical-align: middle;
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
[lang^="zh"],//chino
|
|
1020
|
+
[lang^="zn"],//chino
|
|
1021
|
+
[lang^="ko"] //coreano ko-KR
|
|
1022
|
+
{
|
|
1023
|
+
.btn-selector-wrap {
|
|
1024
|
+
display: flex;
|
|
1025
|
+
flex-wrap: nowrap;
|
|
1026
|
+
overflow-x: auto;
|
|
1027
|
+
white-space: nowrap;
|
|
1028
|
+
&.btn-selector .btn {
|
|
1029
|
+
font-family: Helvetica,Arial,sans-serif !important;
|
|
1030
|
+
font-weight: 500;
|
|
1031
|
+
font-size: 12px;
|
|
1032
|
+
}
|
|
1030
1033
|
}
|
|
1031
1034
|
}
|
|
1032
1035
|
|
|
1033
|
-
|
|
1036
|
+
|
|
1037
|
+
.btn-group>.btn {
|
|
1034
1038
|
flex: 1;
|
|
1035
1039
|
}
|
|
1036
1040
|
.btn-group-inline {
|
|
@@ -1286,4 +1290,4 @@ button {
|
|
|
1286
1290
|
margin-left: -1px;
|
|
1287
1291
|
margin-top: -1px;
|
|
1288
1292
|
}
|
|
1289
|
-
}
|
|
1293
|
+
}
|