@jiaozhiye/qm-design-react 1.7.25 → 1.7.26
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/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/style/index.css +21 -2
- package/lib/style/index.min.css +1 -1
- package/lib/tour/index.d.ts +1 -1
- package/lib/tour/src/Pause.d.ts +10 -0
- package/lib/tour/src/Tour.d.ts +9 -2
- package/lib/tour/src/TourStep/index.d.ts +2 -0
- package/lib/tour/src/util.d.ts +2 -0
- package/lib/tour/style/index.less +21 -2
- package/package.json +1 -1
package/lib/style/index.css
CHANGED
|
@@ -29935,7 +29935,7 @@ table {
|
|
|
29935
29935
|
* @Author: 焦质晔
|
|
29936
29936
|
* @Date: 2022-01-11 18:01:20
|
|
29937
29937
|
* @Last Modified by: 焦质晔
|
|
29938
|
-
* @Last Modified time: 2023-07-
|
|
29938
|
+
* @Last Modified time: 2023-07-26 17:22:16
|
|
29939
29939
|
*/
|
|
29940
29940
|
.qm-tour {
|
|
29941
29941
|
box-sizing: border-box;
|
|
@@ -29992,7 +29992,7 @@ table {
|
|
|
29992
29992
|
}
|
|
29993
29993
|
.qm-tour .qm-tour-inner {
|
|
29994
29994
|
box-shadow: rgba(0, 0, 0, 0.03) 0px 1px 2px 0px, rgba(0, 0, 0, 0.02) 0px 1px 6px -1px, rgba(0, 0, 0, 0.02) 0px 2px 4px 0px;
|
|
29995
|
-
background-color: #
|
|
29995
|
+
background-color: #fff;
|
|
29996
29996
|
background-clip: padding-box;
|
|
29997
29997
|
text-decoration: none;
|
|
29998
29998
|
border-radius: 8px;
|
|
@@ -30055,6 +30055,25 @@ table {
|
|
|
30055
30055
|
-webkit-margin-start: auto;
|
|
30056
30056
|
margin-inline-start: auto;
|
|
30057
30057
|
}
|
|
30058
|
+
.qm-tour-control {
|
|
30059
|
+
position: fixed;
|
|
30060
|
+
right: 20px;
|
|
30061
|
+
bottom: 20px;
|
|
30062
|
+
width: 40px;
|
|
30063
|
+
height: 40px;
|
|
30064
|
+
border-radius: 50%;
|
|
30065
|
+
border: 2px solid #fff;
|
|
30066
|
+
background: linear-gradient(to right bottom, #69c0ff, #096dd9);
|
|
30067
|
+
display: flex;
|
|
30068
|
+
align-items: center;
|
|
30069
|
+
justify-content: center;
|
|
30070
|
+
pointer-events: auto;
|
|
30071
|
+
cursor: pointer;
|
|
30072
|
+
}
|
|
30073
|
+
.qm-tour-control .anticon {
|
|
30074
|
+
color: #fff;
|
|
30075
|
+
font-size: 20px;
|
|
30076
|
+
}
|
|
30058
30077
|
.qm-tour-mask .qm-tour-placeholder-animated {
|
|
30059
30078
|
transition: all 0.2s ease;
|
|
30060
30079
|
}
|