@unlk/keymaster 1.2.5 → 1.2.7
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/CHANGELOG.md +10 -0
- package/dist/css/keymaster.css +382 -17
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +1 -1
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +16 -43
- package/dist/js/keymaster.js.map +1 -1
- package/dist/js/keymaster.min.js +6 -6
- package/dist/js/keymaster.min.js.map +1 -1
- package/js/video-modal.js +20 -41
- package/package.json +1 -1
- package/scss/theme/_buttons.scss +74 -3
- package/scss/theme/mixins/_buttons.scss +66 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.2.7] - 2025-11-13
|
|
6
|
+
|
|
7
|
+
### Add
|
|
8
|
+
- Icon and Icon Outline Button
|
|
9
|
+
|
|
10
|
+
## [1.2.6] - 2025-11-10
|
|
11
|
+
|
|
12
|
+
### Update
|
|
13
|
+
- Video Modal JS
|
|
14
|
+
|
|
5
15
|
## [1.2.5] - 2025-11-05
|
|
6
16
|
|
|
7
17
|
### Update
|
package/dist/css/keymaster.css
CHANGED
|
@@ -35746,23 +35746,6 @@ textarea.form-control-lg {
|
|
|
35746
35746
|
margin-left: 0.5rem;
|
|
35747
35747
|
}
|
|
35748
35748
|
|
|
35749
|
-
.btn-link-action {
|
|
35750
|
-
--bs-btn-color: rgb(19.3, 19.7, 20.4);
|
|
35751
|
-
--bs-btn-bg: transparent;
|
|
35752
|
-
--bs-btn-border-color: transparent;
|
|
35753
|
-
--bs-btn-hover-color: rgb(19.3, 19.7, 20.4);
|
|
35754
|
-
--bs-btn-hover-bg: rgb(229.5, 232.9, 255);
|
|
35755
|
-
--bs-btn-hover-border-color: transparent;
|
|
35756
|
-
--bs-btn-active-bg: rgb(0, 20.4, 153);
|
|
35757
|
-
--bs-btn-active-color: #fff;
|
|
35758
|
-
--bs-btn-active-border-color: transparent;
|
|
35759
|
-
--bs-btn-disabled-bg: transparent;
|
|
35760
|
-
--bs-btn-disabled-color: rgb(217.8, 220.2, 224.4);
|
|
35761
|
-
--bs-btn-disabled-border-color: transparent;
|
|
35762
|
-
--bs-btn-focus-shadow-rgb: 65, 65, 105;
|
|
35763
|
-
text-decoration: none;
|
|
35764
|
-
}
|
|
35765
|
-
|
|
35766
35749
|
.btn-primary {
|
|
35767
35750
|
--bs-btn-color: #fff;
|
|
35768
35751
|
--bs-btn-bg: #1f1f4f;
|
|
@@ -35780,6 +35763,47 @@ textarea.form-control-lg {
|
|
|
35780
35763
|
--bs-btn-disabled-border-color: #1f1f4f;
|
|
35781
35764
|
}
|
|
35782
35765
|
|
|
35766
|
+
.btn-icon-primary {
|
|
35767
|
+
width: 2.5rem;
|
|
35768
|
+
height: 2.5rem;
|
|
35769
|
+
line-height: 1;
|
|
35770
|
+
text-align: center;
|
|
35771
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35772
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35773
|
+
--bs-btn-color: #fff;
|
|
35774
|
+
--bs-btn-bg: #1f1f4f;
|
|
35775
|
+
--bs-btn-border-color: #1f1f4f;
|
|
35776
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35777
|
+
--bs-btn-hover-color: #fff;
|
|
35778
|
+
--bs-btn-hover-bg: rgb(24.8, 24.8, 63.2);
|
|
35779
|
+
--bs-btn-hover-border-color: rgb(24.8, 24.8, 63.2);
|
|
35780
|
+
--bs-btn-active-color: #fff;
|
|
35781
|
+
--bs-btn-active-bg: rgb(18.6, 18.6, 47.4);
|
|
35782
|
+
--bs-btn-active-border-color: rgb(18.6, 18.6, 47.4);
|
|
35783
|
+
--bs-btn-disabled-color: #fff;
|
|
35784
|
+
--bs-btn-disabled-border-color: #1f1f4f;
|
|
35785
|
+
}
|
|
35786
|
+
|
|
35787
|
+
.btn-icon-outline-primary {
|
|
35788
|
+
width: 2.5rem;
|
|
35789
|
+
height: 2.5rem;
|
|
35790
|
+
line-height: 1;
|
|
35791
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35792
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35793
|
+
--bs-btn-color: #1f1f4f;
|
|
35794
|
+
--bs-btn-bg: transparent;
|
|
35795
|
+
--bs-btn-border-color: #1f1f4f;
|
|
35796
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35797
|
+
--bs-btn-hover-color: #fff;
|
|
35798
|
+
--bs-btn-hover-bg: #1f1f4f;
|
|
35799
|
+
--bs-btn-hover-border-color: #1f1f4f;
|
|
35800
|
+
--bs-btn-active-color: #fff;
|
|
35801
|
+
--bs-btn-active-bg: rgb(18.6, 18.6, 47.4);
|
|
35802
|
+
--bs-btn-active-border-color: rgb(18.6, 18.6, 47.4);
|
|
35803
|
+
--bs-btn-disabled-color: #fff;
|
|
35804
|
+
--bs-btn-disabled-border-color: #1f1f4f;
|
|
35805
|
+
}
|
|
35806
|
+
|
|
35783
35807
|
.btn-secondary {
|
|
35784
35808
|
--bs-btn-color: rgb(19.3, 19.7, 20.4);
|
|
35785
35809
|
--bs-btn-bg: #fbcd18;
|
|
@@ -35797,6 +35821,47 @@ textarea.form-control-lg {
|
|
|
35797
35821
|
--bs-btn-disabled-border-color: #fbcd18;
|
|
35798
35822
|
}
|
|
35799
35823
|
|
|
35824
|
+
.btn-icon-secondary {
|
|
35825
|
+
width: 2.5rem;
|
|
35826
|
+
height: 2.5rem;
|
|
35827
|
+
line-height: 1;
|
|
35828
|
+
text-align: center;
|
|
35829
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35830
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35831
|
+
--bs-btn-color: #000;
|
|
35832
|
+
--bs-btn-bg: #fbcd18;
|
|
35833
|
+
--bs-btn-border-color: #fbcd18;
|
|
35834
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35835
|
+
--bs-btn-hover-color: #000;
|
|
35836
|
+
--bs-btn-hover-bg: rgb(251.8, 215, 70.2);
|
|
35837
|
+
--bs-btn-hover-border-color: rgb(251.8, 215, 70.2);
|
|
35838
|
+
--bs-btn-active-color: #000;
|
|
35839
|
+
--bs-btn-active-bg: rgb(252.6, 225, 116.4);
|
|
35840
|
+
--bs-btn-active-border-color: rgb(252.6, 225, 116.4);
|
|
35841
|
+
--bs-btn-disabled-color: rgb(19.3, 19.7, 20.4);
|
|
35842
|
+
--bs-btn-disabled-border-color: #fbcd18;
|
|
35843
|
+
}
|
|
35844
|
+
|
|
35845
|
+
.btn-icon-outline-secondary {
|
|
35846
|
+
width: 2.5rem;
|
|
35847
|
+
height: 2.5rem;
|
|
35848
|
+
line-height: 1;
|
|
35849
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35850
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35851
|
+
--bs-btn-color: #fbcd18;
|
|
35852
|
+
--bs-btn-bg: transparent;
|
|
35853
|
+
--bs-btn-border-color: #fbcd18;
|
|
35854
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35855
|
+
--bs-btn-hover-color: #000;
|
|
35856
|
+
--bs-btn-hover-bg: #fbcd18;
|
|
35857
|
+
--bs-btn-hover-border-color: #fbcd18;
|
|
35858
|
+
--bs-btn-active-color: #000;
|
|
35859
|
+
--bs-btn-active-bg: rgb(150.6, 123, 14.4);
|
|
35860
|
+
--bs-btn-active-border-color: rgb(150.6, 123, 14.4);
|
|
35861
|
+
--bs-btn-disabled-color: #fff;
|
|
35862
|
+
--bs-btn-disabled-border-color: #fbcd18;
|
|
35863
|
+
}
|
|
35864
|
+
|
|
35800
35865
|
.btn-success {
|
|
35801
35866
|
--bs-btn-color: #000;
|
|
35802
35867
|
--bs-btn-bg: #09cc8b;
|
|
@@ -35814,6 +35879,64 @@ textarea.form-control-lg {
|
|
|
35814
35879
|
--bs-btn-disabled-border-color: #09cc8b;
|
|
35815
35880
|
}
|
|
35816
35881
|
|
|
35882
|
+
.btn-icon-success {
|
|
35883
|
+
width: 2.5rem;
|
|
35884
|
+
height: 2.5rem;
|
|
35885
|
+
line-height: 1;
|
|
35886
|
+
text-align: center;
|
|
35887
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35888
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35889
|
+
--bs-btn-color: #000;
|
|
35890
|
+
--bs-btn-bg: #09cc8b;
|
|
35891
|
+
--bs-btn-border-color: #09cc8b;
|
|
35892
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35893
|
+
--bs-btn-hover-color: #000;
|
|
35894
|
+
--bs-btn-hover-bg: rgb(7.2, 163.2, 111.2);
|
|
35895
|
+
--bs-btn-hover-border-color: rgb(7.2, 163.2, 111.2);
|
|
35896
|
+
--bs-btn-active-color: #fff;
|
|
35897
|
+
--bs-btn-active-bg: rgb(5.4, 122.4, 83.4);
|
|
35898
|
+
--bs-btn-active-border-color: rgb(5.4, 122.4, 83.4);
|
|
35899
|
+
--bs-btn-disabled-color: #fff;
|
|
35900
|
+
--bs-btn-disabled-border-color: #09cc8b;
|
|
35901
|
+
}
|
|
35902
|
+
|
|
35903
|
+
.btn-icon-outline-success {
|
|
35904
|
+
width: 2.5rem;
|
|
35905
|
+
height: 2.5rem;
|
|
35906
|
+
line-height: 1;
|
|
35907
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35908
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35909
|
+
--bs-btn-color: #09cc8b;
|
|
35910
|
+
--bs-btn-bg: transparent;
|
|
35911
|
+
--bs-btn-border-color: #09cc8b;
|
|
35912
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35913
|
+
--bs-btn-hover-color: #000;
|
|
35914
|
+
--bs-btn-hover-bg: #09cc8b;
|
|
35915
|
+
--bs-btn-hover-border-color: #09cc8b;
|
|
35916
|
+
--bs-btn-active-color: #fff;
|
|
35917
|
+
--bs-btn-active-bg: rgb(5.4, 122.4, 83.4);
|
|
35918
|
+
--bs-btn-active-border-color: rgb(5.4, 122.4, 83.4);
|
|
35919
|
+
--bs-btn-disabled-color: #fff;
|
|
35920
|
+
--bs-btn-disabled-border-color: #09cc8b;
|
|
35921
|
+
}
|
|
35922
|
+
|
|
35923
|
+
.btn-link-action {
|
|
35924
|
+
--bs-btn-color: rgb(19.3, 19.7, 20.4);
|
|
35925
|
+
--bs-btn-bg: transparent;
|
|
35926
|
+
--bs-btn-border-color: transparent;
|
|
35927
|
+
--bs-btn-hover-color: rgb(19.3, 19.7, 20.4);
|
|
35928
|
+
--bs-btn-hover-bg: rgb(229.5, 232.9, 255);
|
|
35929
|
+
--bs-btn-hover-border-color: transparent;
|
|
35930
|
+
--bs-btn-active-bg: rgb(0, 20.4, 153);
|
|
35931
|
+
--bs-btn-active-color: #fff;
|
|
35932
|
+
--bs-btn-active-border-color: transparent;
|
|
35933
|
+
--bs-btn-disabled-bg: transparent;
|
|
35934
|
+
--bs-btn-disabled-color: rgb(217.8, 220.2, 224.4);
|
|
35935
|
+
--bs-btn-disabled-border-color: transparent;
|
|
35936
|
+
--bs-btn-focus-shadow-rgb: 65, 65, 105;
|
|
35937
|
+
text-decoration: none;
|
|
35938
|
+
}
|
|
35939
|
+
|
|
35817
35940
|
.btn-action {
|
|
35818
35941
|
--bs-btn-color: #fff;
|
|
35819
35942
|
--bs-btn-bg: #02f;
|
|
@@ -35831,6 +35954,47 @@ textarea.form-control-lg {
|
|
|
35831
35954
|
--bs-btn-disabled-border-color: #0022ff;
|
|
35832
35955
|
}
|
|
35833
35956
|
|
|
35957
|
+
.btn-icon-action {
|
|
35958
|
+
width: 2.5rem;
|
|
35959
|
+
height: 2.5rem;
|
|
35960
|
+
line-height: 1;
|
|
35961
|
+
text-align: center;
|
|
35962
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35963
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35964
|
+
--bs-btn-color: #fff;
|
|
35965
|
+
--bs-btn-bg: #02f;
|
|
35966
|
+
--bs-btn-border-color: #02f;
|
|
35967
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35968
|
+
--bs-btn-hover-color: #fff;
|
|
35969
|
+
--bs-btn-hover-bg: rgb(0, 27.2, 204);
|
|
35970
|
+
--bs-btn-hover-border-color: rgb(0, 27.2, 204);
|
|
35971
|
+
--bs-btn-active-color: #fff;
|
|
35972
|
+
--bs-btn-active-bg: rgb(0, 20.4, 153);
|
|
35973
|
+
--bs-btn-active-border-color: rgb(0, 20.4, 153);
|
|
35974
|
+
--bs-btn-disabled-color: #fff;
|
|
35975
|
+
--bs-btn-disabled-border-color: #0022ff;
|
|
35976
|
+
}
|
|
35977
|
+
|
|
35978
|
+
.btn-icon-outline-action {
|
|
35979
|
+
width: 2.5rem;
|
|
35980
|
+
height: 2.5rem;
|
|
35981
|
+
line-height: 1;
|
|
35982
|
+
--bs-btn-padding-x: 0.5rem;
|
|
35983
|
+
--bs-btn-padding-y: 0.5rem;
|
|
35984
|
+
--bs-btn-color: #02f;
|
|
35985
|
+
--bs-btn-bg: transparent;
|
|
35986
|
+
--bs-btn-border-color: #02f;
|
|
35987
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
35988
|
+
--bs-btn-hover-color: #fff;
|
|
35989
|
+
--bs-btn-hover-bg: #02f;
|
|
35990
|
+
--bs-btn-hover-border-color: #02f;
|
|
35991
|
+
--bs-btn-active-color: #fff;
|
|
35992
|
+
--bs-btn-active-bg: rgb(0, 20.4, 153);
|
|
35993
|
+
--bs-btn-active-border-color: rgb(0, 20.4, 153);
|
|
35994
|
+
--bs-btn-disabled-color: #fff;
|
|
35995
|
+
--bs-btn-disabled-border-color: #0022ff;
|
|
35996
|
+
}
|
|
35997
|
+
|
|
35834
35998
|
.btn-warning {
|
|
35835
35999
|
--bs-btn-color: #000;
|
|
35836
36000
|
--bs-btn-bg: #ff6a1a;
|
|
@@ -35848,6 +36012,47 @@ textarea.form-control-lg {
|
|
|
35848
36012
|
--bs-btn-disabled-border-color: #ff6a1a;
|
|
35849
36013
|
}
|
|
35850
36014
|
|
|
36015
|
+
.btn-icon-warning {
|
|
36016
|
+
width: 2.5rem;
|
|
36017
|
+
height: 2.5rem;
|
|
36018
|
+
line-height: 1;
|
|
36019
|
+
text-align: center;
|
|
36020
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36021
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36022
|
+
--bs-btn-color: #000;
|
|
36023
|
+
--bs-btn-bg: #ff6a1a;
|
|
36024
|
+
--bs-btn-border-color: #ff6a1a;
|
|
36025
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36026
|
+
--bs-btn-hover-color: #000;
|
|
36027
|
+
--bs-btn-hover-bg: rgb(204, 84.8, 20.8);
|
|
36028
|
+
--bs-btn-hover-border-color: rgb(204, 84.8, 20.8);
|
|
36029
|
+
--bs-btn-active-color: #fff;
|
|
36030
|
+
--bs-btn-active-bg: rgb(153, 63.6, 15.6);
|
|
36031
|
+
--bs-btn-active-border-color: rgb(153, 63.6, 15.6);
|
|
36032
|
+
--bs-btn-disabled-color: #fff;
|
|
36033
|
+
--bs-btn-disabled-border-color: #ff6a1a;
|
|
36034
|
+
}
|
|
36035
|
+
|
|
36036
|
+
.btn-icon-outline-warning {
|
|
36037
|
+
width: 2.5rem;
|
|
36038
|
+
height: 2.5rem;
|
|
36039
|
+
line-height: 1;
|
|
36040
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36041
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36042
|
+
--bs-btn-color: #ff6a1a;
|
|
36043
|
+
--bs-btn-bg: transparent;
|
|
36044
|
+
--bs-btn-border-color: #ff6a1a;
|
|
36045
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36046
|
+
--bs-btn-hover-color: #000;
|
|
36047
|
+
--bs-btn-hover-bg: #ff6a1a;
|
|
36048
|
+
--bs-btn-hover-border-color: #ff6a1a;
|
|
36049
|
+
--bs-btn-active-color: #fff;
|
|
36050
|
+
--bs-btn-active-bg: rgb(153, 63.6, 15.6);
|
|
36051
|
+
--bs-btn-active-border-color: rgb(153, 63.6, 15.6);
|
|
36052
|
+
--bs-btn-disabled-color: #fff;
|
|
36053
|
+
--bs-btn-disabled-border-color: #ff6a1a;
|
|
36054
|
+
}
|
|
36055
|
+
|
|
35851
36056
|
.btn-danger {
|
|
35852
36057
|
--bs-btn-color: #fff;
|
|
35853
36058
|
--bs-btn-bg: #e4263e;
|
|
@@ -35865,6 +36070,47 @@ textarea.form-control-lg {
|
|
|
35865
36070
|
--bs-btn-disabled-border-color: #e4263e;
|
|
35866
36071
|
}
|
|
35867
36072
|
|
|
36073
|
+
.btn-icon-danger {
|
|
36074
|
+
width: 2.5rem;
|
|
36075
|
+
height: 2.5rem;
|
|
36076
|
+
line-height: 1;
|
|
36077
|
+
text-align: center;
|
|
36078
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36079
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36080
|
+
--bs-btn-color: #fff;
|
|
36081
|
+
--bs-btn-bg: #e4263e;
|
|
36082
|
+
--bs-btn-border-color: #e4263e;
|
|
36083
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36084
|
+
--bs-btn-hover-color: #fff;
|
|
36085
|
+
--bs-btn-hover-bg: rgb(182.4, 30.4, 49.6);
|
|
36086
|
+
--bs-btn-hover-border-color: rgb(182.4, 30.4, 49.6);
|
|
36087
|
+
--bs-btn-active-color: #fff;
|
|
36088
|
+
--bs-btn-active-bg: rgb(136.8, 22.8, 37.2);
|
|
36089
|
+
--bs-btn-active-border-color: rgb(136.8, 22.8, 37.2);
|
|
36090
|
+
--bs-btn-disabled-color: #fff;
|
|
36091
|
+
--bs-btn-disabled-border-color: #e4263e;
|
|
36092
|
+
}
|
|
36093
|
+
|
|
36094
|
+
.btn-icon-outline-danger {
|
|
36095
|
+
width: 2.5rem;
|
|
36096
|
+
height: 2.5rem;
|
|
36097
|
+
line-height: 1;
|
|
36098
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36099
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36100
|
+
--bs-btn-color: #e4263e;
|
|
36101
|
+
--bs-btn-bg: transparent;
|
|
36102
|
+
--bs-btn-border-color: #e4263e;
|
|
36103
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36104
|
+
--bs-btn-hover-color: #fff;
|
|
36105
|
+
--bs-btn-hover-bg: #e4263e;
|
|
36106
|
+
--bs-btn-hover-border-color: #e4263e;
|
|
36107
|
+
--bs-btn-active-color: #fff;
|
|
36108
|
+
--bs-btn-active-bg: rgb(136.8, 22.8, 37.2);
|
|
36109
|
+
--bs-btn-active-border-color: rgb(136.8, 22.8, 37.2);
|
|
36110
|
+
--bs-btn-disabled-color: #fff;
|
|
36111
|
+
--bs-btn-disabled-border-color: #e4263e;
|
|
36112
|
+
}
|
|
36113
|
+
|
|
35868
36114
|
.btn-light {
|
|
35869
36115
|
--bs-btn-color: #000;
|
|
35870
36116
|
--bs-btn-bg: #fff;
|
|
@@ -35882,6 +36128,47 @@ textarea.form-control-lg {
|
|
|
35882
36128
|
--bs-btn-disabled-border-color: white;
|
|
35883
36129
|
}
|
|
35884
36130
|
|
|
36131
|
+
.btn-icon-light {
|
|
36132
|
+
width: 2.5rem;
|
|
36133
|
+
height: 2.5rem;
|
|
36134
|
+
line-height: 1;
|
|
36135
|
+
text-align: center;
|
|
36136
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36137
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36138
|
+
--bs-btn-color: #000;
|
|
36139
|
+
--bs-btn-bg: #fff;
|
|
36140
|
+
--bs-btn-border-color: #fff;
|
|
36141
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36142
|
+
--bs-btn-hover-color: #000;
|
|
36143
|
+
--bs-btn-hover-bg: #cccccc;
|
|
36144
|
+
--bs-btn-hover-border-color: #cccccc;
|
|
36145
|
+
--bs-btn-active-color: #000;
|
|
36146
|
+
--bs-btn-active-bg: #999999;
|
|
36147
|
+
--bs-btn-active-border-color: #999999;
|
|
36148
|
+
--bs-btn-disabled-color: #fff;
|
|
36149
|
+
--bs-btn-disabled-border-color: white;
|
|
36150
|
+
}
|
|
36151
|
+
|
|
36152
|
+
.btn-icon-outline-light {
|
|
36153
|
+
width: 2.5rem;
|
|
36154
|
+
height: 2.5rem;
|
|
36155
|
+
line-height: 1;
|
|
36156
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36157
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36158
|
+
--bs-btn-color: #fff;
|
|
36159
|
+
--bs-btn-bg: transparent;
|
|
36160
|
+
--bs-btn-border-color: #fff;
|
|
36161
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36162
|
+
--bs-btn-hover-color: #000;
|
|
36163
|
+
--bs-btn-hover-bg: #fff;
|
|
36164
|
+
--bs-btn-hover-border-color: #fff;
|
|
36165
|
+
--bs-btn-active-color: #000;
|
|
36166
|
+
--bs-btn-active-bg: #999999;
|
|
36167
|
+
--bs-btn-active-border-color: #999999;
|
|
36168
|
+
--bs-btn-disabled-color: #fff;
|
|
36169
|
+
--bs-btn-disabled-border-color: white;
|
|
36170
|
+
}
|
|
36171
|
+
|
|
35885
36172
|
.btn-dark {
|
|
35886
36173
|
--bs-btn-color: #fff;
|
|
35887
36174
|
--bs-btn-bg: rgb(38.6, 39.4, 40.8);
|
|
@@ -35899,6 +36186,84 @@ textarea.form-control-lg {
|
|
|
35899
36186
|
--bs-btn-disabled-border-color: rgb(38.6, 39.4, 40.8);
|
|
35900
36187
|
}
|
|
35901
36188
|
|
|
36189
|
+
.btn-icon-dark {
|
|
36190
|
+
width: 2.5rem;
|
|
36191
|
+
height: 2.5rem;
|
|
36192
|
+
line-height: 1;
|
|
36193
|
+
text-align: center;
|
|
36194
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36195
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36196
|
+
--bs-btn-color: #fff;
|
|
36197
|
+
--bs-btn-bg: rgb(38.6, 39.4, 40.8);
|
|
36198
|
+
--bs-btn-border-color: rgb(38.6, 39.4, 40.8);
|
|
36199
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36200
|
+
--bs-btn-hover-color: #fff;
|
|
36201
|
+
--bs-btn-hover-bg: rgb(30.88, 31.52, 32.64);
|
|
36202
|
+
--bs-btn-hover-border-color: rgb(30.88, 31.52, 32.64);
|
|
36203
|
+
--bs-btn-active-color: #fff;
|
|
36204
|
+
--bs-btn-active-bg: rgb(23.16, 23.64, 24.48);
|
|
36205
|
+
--bs-btn-active-border-color: rgb(23.16, 23.64, 24.48);
|
|
36206
|
+
--bs-btn-disabled-color: #fff;
|
|
36207
|
+
--bs-btn-disabled-border-color: rgb(38.6, 39.4, 40.8);
|
|
36208
|
+
}
|
|
36209
|
+
|
|
36210
|
+
.btn-icon-outline-dark {
|
|
36211
|
+
width: 2.5rem;
|
|
36212
|
+
height: 2.5rem;
|
|
36213
|
+
line-height: 1;
|
|
36214
|
+
--bs-btn-padding-x: 0.5rem;
|
|
36215
|
+
--bs-btn-padding-y: 0.5rem;
|
|
36216
|
+
--bs-btn-color: rgb(38.6, 39.4, 40.8);
|
|
36217
|
+
--bs-btn-bg: transparent;
|
|
36218
|
+
--bs-btn-border-color: rgb(38.6, 39.4, 40.8);
|
|
36219
|
+
--bs-btn-border-radius: var(--bs-border-radius);
|
|
36220
|
+
--bs-btn-hover-color: #fff;
|
|
36221
|
+
--bs-btn-hover-bg: rgb(38.6, 39.4, 40.8);
|
|
36222
|
+
--bs-btn-hover-border-color: rgb(38.6, 39.4, 40.8);
|
|
36223
|
+
--bs-btn-active-color: #fff;
|
|
36224
|
+
--bs-btn-active-bg: rgb(23.16, 23.64, 24.48);
|
|
36225
|
+
--bs-btn-active-border-color: rgb(23.16, 23.64, 24.48);
|
|
36226
|
+
--bs-btn-disabled-color: #fff;
|
|
36227
|
+
--bs-btn-disabled-border-color: rgb(38.6, 39.4, 40.8);
|
|
36228
|
+
}
|
|
36229
|
+
|
|
36230
|
+
[class*=btn-icon-].btn-sm, .btn-group-sm > [class*=btn-icon-].btn,
|
|
36231
|
+
[class*=btn-icon-outline-].btn-sm,
|
|
36232
|
+
.btn-group-sm > [class*=btn-icon-outline-].btn {
|
|
36233
|
+
width: 2rem;
|
|
36234
|
+
height: 2rem;
|
|
36235
|
+
--bs-btn-padding-x: 0;
|
|
36236
|
+
--bs-btn-padding-y: 0;
|
|
36237
|
+
}
|
|
36238
|
+
[class*=btn-icon-].btn-lg, .btn-group-lg > [class*=btn-icon-].btn,
|
|
36239
|
+
[class*=btn-icon-outline-].btn-lg,
|
|
36240
|
+
.btn-group-lg > [class*=btn-icon-outline-].btn {
|
|
36241
|
+
width: 3rem;
|
|
36242
|
+
height: 3rem;
|
|
36243
|
+
}
|
|
36244
|
+
|
|
36245
|
+
.btn-sm > i + *, .btn-group-sm > .btn > i + *,
|
|
36246
|
+
.btn-sm > .icon + *,
|
|
36247
|
+
.btn-group-sm > .btn > .icon + * {
|
|
36248
|
+
margin-left: 0.375rem;
|
|
36249
|
+
}
|
|
36250
|
+
.btn-sm > * + i, .btn-group-sm > .btn > * + i,
|
|
36251
|
+
.btn-sm > * + .icon,
|
|
36252
|
+
.btn-group-sm > .btn > * + .icon {
|
|
36253
|
+
margin-left: 0.375rem;
|
|
36254
|
+
}
|
|
36255
|
+
|
|
36256
|
+
.btn-lg > i + *, .btn-group-lg > .btn > i + *,
|
|
36257
|
+
.btn-lg > .icon + *,
|
|
36258
|
+
.btn-group-lg > .btn > .icon + * {
|
|
36259
|
+
margin-left: 0.625rem;
|
|
36260
|
+
}
|
|
36261
|
+
.btn-lg > * + i, .btn-group-lg > .btn > * + i,
|
|
36262
|
+
.btn-lg > * + .icon,
|
|
36263
|
+
.btn-group-lg > .btn > * + .icon {
|
|
36264
|
+
margin-left: 0.625rem;
|
|
36265
|
+
}
|
|
36266
|
+
|
|
35902
36267
|
.accordion {
|
|
35903
36268
|
--bs-accordion-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
35904
36269
|
border-radius: var(--bs-accordion-border-radius);
|