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