@open-condo/ui 1.29.0 → 1.30.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/components/ActionBar/actionBar.d.ts +7 -0
- package/dist/components/ActionBar/actionBar.d.ts.map +1 -0
- package/dist/components/ActionBar/index.d.ts +5 -0
- package/dist/components/ActionBar/index.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +473 -31
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +60 -0
- package/dist/styles.min.css +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -8216,3 +8216,63 @@ span.condo-radio + * {
|
|
|
8216
8216
|
display: flex;
|
|
8217
8217
|
}
|
|
8218
8218
|
|
|
8219
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
8220
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
8221
|
+
/* stylelint-disable */
|
|
8222
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
8223
|
+
.condo-affix {
|
|
8224
|
+
position: fixed;
|
|
8225
|
+
z-index: 10;
|
|
8226
|
+
}
|
|
8227
|
+
.condo-affix {
|
|
8228
|
+
height: auto !important;
|
|
8229
|
+
}
|
|
8230
|
+
.condo-affix .condo-affix-content-wrapper {
|
|
8231
|
+
height: 100%;
|
|
8232
|
+
background: #fff;
|
|
8233
|
+
border-radius: 8px;
|
|
8234
|
+
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
8235
|
+
}
|
|
8236
|
+
@media screen and (min-width: 0px ) and (max-width: 767px ) {
|
|
8237
|
+
.condo-affix {
|
|
8238
|
+
width: auto !important;
|
|
8239
|
+
}
|
|
8240
|
+
.condo-affix {
|
|
8241
|
+
right: 0;
|
|
8242
|
+
bottom: 0;
|
|
8243
|
+
left: 0;
|
|
8244
|
+
}
|
|
8245
|
+
.condo-affix .condo-affix-content-wrapper {
|
|
8246
|
+
padding-bottom: 32px;
|
|
8247
|
+
}
|
|
8248
|
+
.condo-affix .condo-affix-content-wrapper > .condo-space-item {
|
|
8249
|
+
padding: 0 16px;
|
|
8250
|
+
}
|
|
8251
|
+
}
|
|
8252
|
+
@media screen and (min-width: 768px ) {
|
|
8253
|
+
.condo-affix {
|
|
8254
|
+
bottom: 24px !important;
|
|
8255
|
+
}
|
|
8256
|
+
}
|
|
8257
|
+
.condo-affix-content-wrapper {
|
|
8258
|
+
height: -webkit-fit-content !important;
|
|
8259
|
+
height: -moz-fit-content !important;
|
|
8260
|
+
height: fit-content !important;
|
|
8261
|
+
}
|
|
8262
|
+
.condo-affix-content-wrapper {
|
|
8263
|
+
position: relative;
|
|
8264
|
+
right: 16px;
|
|
8265
|
+
box-sizing: border-box;
|
|
8266
|
+
width: calc(100% + 16px * 2);
|
|
8267
|
+
padding: 16px;
|
|
8268
|
+
transition: box-shadow 0.15s ease-out;
|
|
8269
|
+
}
|
|
8270
|
+
@media screen and (min-width: 0px ) and (max-width: 767px ) {
|
|
8271
|
+
.condo-affix-content-wrapper > .condo-space-item {
|
|
8272
|
+
width: 100%;
|
|
8273
|
+
}
|
|
8274
|
+
.condo-affix-content-wrapper > .condo-space-item > * {
|
|
8275
|
+
width: 100%;
|
|
8276
|
+
}
|
|
8277
|
+
}
|
|
8278
|
+
|