microboard-ui-temp 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/dist/{chunk-1pn0bvy7.css → chunk-2yb1xtbd.css} +46 -0
- package/dist/{chunk-4x5gzkx7.js → chunk-vznck1jr.js} +2195 -2097
- package/dist/example.html +2 -2
- package/dist/index.css +46 -0
- package/dist/index.html +2 -2
- package/dist/index.js +2195 -2097
- package/dist/spa.css +46 -0
- package/dist/spa.js +2195 -2097
- package/dist/types/features/Pickers/ColorPicker/SemanticColorPicker.d.ts +2 -1
- package/dist/types/features/Pickers/ColorPicker/SquareColorItem.d.ts +10 -0
- package/package.json +2 -2
package/dist/spa.css
CHANGED
|
@@ -696,6 +696,8 @@
|
|
|
696
696
|
|
|
697
697
|
.tipContainer_woN4eg.bottom_woN4eg {
|
|
698
698
|
top: calc(100% + 1.2rem);
|
|
699
|
+
left: 50%;
|
|
700
|
+
transform: translateX(-50%);
|
|
699
701
|
}
|
|
700
702
|
|
|
701
703
|
.withoutArrowTip_woN4eg {
|
|
@@ -7936,6 +7938,50 @@ td.currentTariff_0VfwRg {
|
|
|
7936
7938
|
transform: translate(-50%, -50%)rotate(45deg);
|
|
7937
7939
|
}
|
|
7938
7940
|
|
|
7941
|
+
/* src/features/Pickers/ColorPicker/SquareColorItem.module.css */
|
|
7942
|
+
.button_ClApmw {
|
|
7943
|
+
position: relative;
|
|
7944
|
+
display: flex;
|
|
7945
|
+
cursor: pointer;
|
|
7946
|
+
background: none;
|
|
7947
|
+
border-radius: 5px;
|
|
7948
|
+
justify-content: center;
|
|
7949
|
+
align-items: center;
|
|
7950
|
+
width: 40px;
|
|
7951
|
+
height: 40px;
|
|
7952
|
+
padding: 7.5px;
|
|
7953
|
+
transition: all .2s ease-out;
|
|
7954
|
+
}
|
|
7955
|
+
|
|
7956
|
+
@media (hover: hover) {
|
|
7957
|
+
.button_ClApmw:hover {
|
|
7958
|
+
background-color: #e9eaec;
|
|
7959
|
+
}
|
|
7960
|
+
}
|
|
7961
|
+
|
|
7962
|
+
.button_ClApmw.active_ClApmw {
|
|
7963
|
+
background-color: #e9eaec;
|
|
7964
|
+
}
|
|
7965
|
+
|
|
7966
|
+
.button_ClApmw span {
|
|
7967
|
+
border: 1px solid #1f1f1f40;
|
|
7968
|
+
width: 25px;
|
|
7969
|
+
height: 25px;
|
|
7970
|
+
}
|
|
7971
|
+
|
|
7972
|
+
@media screen and (max-width: 748px) {
|
|
7973
|
+
.button_ClApmw {
|
|
7974
|
+
width: 30px;
|
|
7975
|
+
height: 30px;
|
|
7976
|
+
padding: 5px;
|
|
7977
|
+
}
|
|
7978
|
+
|
|
7979
|
+
.button_ClApmw span {
|
|
7980
|
+
width: 20px;
|
|
7981
|
+
height: 20px;
|
|
7982
|
+
}
|
|
7983
|
+
}
|
|
7984
|
+
|
|
7939
7985
|
/* src/shared/ui-lib/UiColorInput/UiColorInput.module.css */
|
|
7940
7986
|
.colorPickerContainer_ENyM7A {
|
|
7941
7987
|
position: relative;
|