@transferwise/neptune-css 10.0.6-beta.36 → 10.0.6-beta.38
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/README.md +1 -1
- package/dist/css/accordion.css +1 -1
- package/dist/css/alerts.css +1 -1
- package/dist/css/background.css +1 -1
- package/dist/css/badge.css +1 -1
- package/dist/css/breadcrumbs.css +1 -1
- package/dist/css/button-groups.css +1 -1
- package/dist/css/buttons.css +1 -1
- package/dist/css/chevron.css +1 -1
- package/dist/css/circles.css +1 -1
- package/dist/css/close.css +1 -1
- package/dist/css/column-layout.css +1 -1
- package/dist/css/currency-flags.css +1 -1
- package/dist/css/decision.css +1 -1
- package/dist/css/dropdowns.css +1 -0
- package/dist/css/droppable.css +1 -1
- package/dist/css/flex.css +1 -1
- package/dist/css/footer.css +1 -1
- package/dist/css/forms.css +1 -1
- package/dist/css/grid.css +1 -1
- package/dist/css/input-groups.css +1 -1
- package/dist/css/link-callout.css +1 -1
- package/dist/css/list-group.css +1 -1
- package/dist/css/media.css +1 -1
- package/dist/css/modals.css +1 -1
- package/dist/css/navbar-base.css +1 -0
- package/dist/css/navbar.css +1 -1
- package/dist/css/navs.css +1 -1
- package/dist/css/neptune-addons.css +1 -1
- package/dist/css/neptune-core.css +1 -1
- package/dist/css/neptune-social-media.css +1 -1
- package/dist/css/neptune.css +1 -1
- package/dist/css/panels.css +1 -1
- package/dist/css/popovers.css +1 -1
- package/dist/css/process.css +1 -1
- package/dist/css/progress-bars.css +1 -1
- package/dist/css/select.css +1 -1
- package/dist/css/sequences.css +1 -1
- package/dist/css/table.css +1 -1
- package/dist/css/tick.css +1 -1
- package/dist/css/tooltip.css +1 -1
- package/dist/css/utilities.css +1 -1
- package/dist/css/wells.css +1 -1
- package/dist/less/neptune-tokens.less +85 -78
- package/dist/props/neptune-tokens.css +89 -41
- package/package.json +4 -7
- package/src/less/addons/_background-utilities.less +31 -6
- package/src/less/addons/_spacing-utilities.less +4 -4
- package/src/less/addons/_utilities.less +141 -0
- package/src/less/alerts.less +14 -14
- package/src/less/badge.less +65 -4
- package/src/less/breadcrumbs.less +25 -4
- package/src/less/button-groups.less +45 -38
- package/src/less/buttons.less +90 -107
- package/src/less/chevron.less +1 -1
- package/src/less/circles.less +206 -19
- package/src/less/close.less +38 -6
- package/src/less/column-layout.less +160 -3
- package/src/less/core/_scaffolding.less +36 -27
- package/src/less/core/_typography-utilities.less +59 -45
- package/src/less/core/_typography.less +126 -111
- package/src/less/currency-flags.less +4 -4
- package/src/less/decision.less +4 -9
- package/src/less/dropdowns.less +362 -0
- package/src/less/droppable.less +202 -3
- package/src/less/flex.less +17 -16
- package/src/less/footer.less +18 -19
- package/src/less/forms/bootstrap-forms.less +105 -95
- package/src/less/forms/checkbox-radio.less +51 -52
- package/src/less/grid.less +23 -22
- package/src/less/input-groups.less +47 -48
- package/src/less/link-callout.less +4 -1
- package/src/less/list-group.less +281 -4
- package/src/less/media.less +8 -5
- package/src/less/mixins/_alerts.less +15 -7
- package/src/less/mixins/_arrows.less +13 -7
- package/src/less/mixins/_border-radius.less +1 -8
- package/src/less/mixins/_buttons.less +5 -5
- package/src/less/mixins/_center-block.less +7 -0
- package/src/less/mixins/_circle.less +11 -0
- package/src/less/mixins/_forms.less +16 -12
- package/src/less/mixins/_grid-framework.less +11 -8
- package/src/less/mixins/_grid.less +52 -36
- package/src/less/mixins/_hide-text.less +20 -0
- package/src/less/mixins/_list-group.less +23 -0
- package/src/less/mixins/_logical-properties-IE-friendly.less +329 -0
- package/src/less/mixins/_logical-properties-modern-browsers.less +226 -0
- package/src/less/mixins/_logical-properties.less +5 -0
- package/src/less/mixins/_panels.less +23 -0
- package/src/less/mixins/_physical-properties.less +111 -0
- package/src/less/mixins/_reset-text.less +22 -0
- package/src/less/mixins/_sequence.less +197 -0
- package/src/less/mixins/_spacing.less +20 -10
- package/src/less/mixins/_table-row.less +1 -1
- package/src/less/mixins/_text-emphasis.less +7 -1
- package/src/less/modals.less +53 -23
- package/src/less/navbar-base.less +1382 -0
- package/src/less/navbar.less +16 -20
- package/src/less/navs.less +348 -3
- package/src/less/neptune-social-media.less +11 -6
- package/src/less/neptune.bundle.less +2 -1
- package/src/less/panels.less +409 -4
- package/src/less/popovers.less +368 -5
- package/src/less/process.less +358 -3
- package/src/less/progress-bars.less +14 -9
- package/src/less/select.less +8 -6
- package/src/less/sequences.less +504 -8
- package/src/less/table.less +40 -54
- package/src/less/tick.less +14 -1
- package/src/less/tooltip.less +123 -4
- package/src/less/utilities.less +134 -4
- package/src/less/variables/_typography.less +2 -0
- package/src/props/neptune-tokens.css +2 -1
- package/src/variables/neptune-tokens.less +1 -3
package/dist/css/panels.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.panel{margin-bottom:16px;background-color:transparent;border:0;margin-left:-16px;margin-right:-16px}.panel-body{padding:16px;background-color:#fff}.panel-heading{padding:16px 16px 8px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;line-height:32px}.panel-title>a{text-decoration:none}.panel-footer{padding:16px}@media (min-width:576px){.panel{margin-bottom:24px;margin-left:-24px;margin-right:-24px}.panel-heading{padding:16px 24px 8px}.panel-body,.panel-footer{padding:24px}}@media (min-width:768px){.panel{margin-left:0;margin-right:0}.panel-heading{padding:16px 0 8px}}@media (min-width:992px){.panel{margin-bottom:32px;border-radius:3px}.panel-body,.panel-footer{padding:32px}}@media (min-width:768px){.panel-title{line-height:48px}.panel-heading>.btn-sm{margin-top:8px}}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0;border-left:0;border-right:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-radius:0}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-list-group{margin-bottom:0;border-left:0;border-right:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:32px;padding-right:32px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:2px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:2px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:2px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:2px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #f2f5f7}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel>.table-responsive tr>:first-child,.panel>.table tr>:first-child{padding-left:16px}.panel>.table-responsive tr>:last-child,.panel>.table tr>:last-child{padding-right:16px}@media (min-width:768px){.panel>.table-responsive tr>:first-child,.panel>.table tr>:first-child{padding-left:24px}.panel>.table-responsive tr>:last-child,.panel>.table tr>:last-child{padding-right:24px}}@media (min-width:992px){.panel>.table-responsive tr>:first-child,.panel>.table tr>:first-child{padding-left:32px}.panel>.table-responsive tr>:last-child,.panel>.table tr>:last-child{padding-right:32px}}.panel-group{margin-bottom:24px}.panel-group .panel{margin-bottom:0;border-radius:3px}.panel-group .panel+.panel{margin-top:8px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #fff}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #fff}.panel-default{border-color:#e2e6e8!important}.panel-default>.panel-heading{color:#4a5860;border-color:#e2e6e8}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e2e6e8}.panel-default>.panel-heading .badge{color:#fff;background-color:#4a5860}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e2e6e8}.panel-primary{border-color:#37517e!important}.panel-primary>.panel-heading{color:#fff;border-color:#37517e}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#37517e}.panel-primary>.panel-heading .badge{color:#fff;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#37517e}.panel-success{border-color:#2ed06e!important}.panel-success>.panel-heading{color:#1b7940;border-color:#2ed06e}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2ed06e}.panel-success>.panel-heading .badge{color:#fff;background-color:#1b7940}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2ed06e}.panel-info{border-color:#00b9ff!important}.panel-info>.panel-heading{color:#00a4df;border-color:#00b9ff}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00b9ff}.panel-info>.panel-heading .badge{color:#fff;background-color:#00a4df}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00b9ff}.panel-warning{border-color:#ffa600!important}.panel-warning>.panel-heading{color:#9e5f00;border-color:#ffa600}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ffa600}.panel-warning>.panel-heading .badge{color:#fff;background-color:#9e5f00}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ffa600}.panel-danger{border-color:#f53636!important}.panel-danger>.panel-heading{color:#c22e2e;border-color:#f53636}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f53636}.panel-danger>.panel-heading .badge{color:#fff;background-color:#c22e2e}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f53636}.panel ul:last-child{margin-bottom:0}.panel-group .panel{margin-left:0;margin-right:0;border:1px solid #e2e6e8}.panel-group .panel-footer,.panel-group .panel-heading{padding:16px}@media (min-width:576px){.panel-group .panel .panel-footer,.panel-group .panel .panel-heading{padding:24px!important}}@media (min-width:992px){.panel-group .panel .panel-footer,.panel-group .panel .panel-heading{padding:24px 32px}}@media (min-width:768px){.panel{margin-left:0;margin-right:0}}
|
|
1
|
+
.panel{margin-bottom:16px;background-color:transparent;border:0;margin-left:-16px;margin-right:-16px}.panel-body{padding:16px;background-color:#fff;background-color:var(--color-background-screen,#fff)}.panel-heading{padding:16px 16px 8px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;line-height:32px}.panel-title>a{text-decoration:none}.panel-footer{padding:16px}@media (min-width:576px){.panel{margin-bottom:24px;margin-left:-24px;margin-right:-24px}.panel-heading{padding:16px 24px 8px}.panel-body,.panel-footer{padding:24px}}@media (min-width:768px){.panel{margin-left:0;margin-right:0}.panel-heading{padding:16px 0 8px}}@media (min-width:992px){.panel{margin-bottom:32px;border-radius:3px}.panel-body,.panel-footer{padding:32px}}@media (min-width:768px){.panel-title{line-height:48px}.panel-heading>.btn-sm{margin-top:8px}}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0;border-left:0;border-right:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-radius:0}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-list-group{margin-bottom:0;border-left:0;border-right:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:32px;padding-right:32px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:2px;border-top-left-radius:2px}[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,[dir=rtl] .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,[dir=rtl] .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,[dir=rtl] .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,[dir=rtl] .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-right-radius:2px}[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,[dir=rtl] .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,[dir=rtl] .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,[dir=rtl] .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,[dir=rtl] .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,[dir=rtl] .panel>.table:first-child>thead:first-child>tr:first-child th:last-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,html:not([dir=rtl]) .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,html:not([dir=rtl]) .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,html:not([dir=rtl]) .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,html:not([dir=rtl]) .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:2px}html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,html:not([dir=rtl]) .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,html:not([dir=rtl]) .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,html:not([dir=rtl]) .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,html:not([dir=rtl]) .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,html:not([dir=rtl]) .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:2px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,[dir=rtl] .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,[dir=rtl] .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,[dir=rtl] .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,[dir=rtl] .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-right-radius:2px}[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,[dir=rtl] .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,[dir=rtl] .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,[dir=rtl] .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,[dir=rtl] .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,[dir=rtl] .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,html:not([dir=rtl]) .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,html:not([dir=rtl]) .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,html:not([dir=rtl]) .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,html:not([dir=rtl]) .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:2px}html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,html:not([dir=rtl]) .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,html:not([dir=rtl]) .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,html:not([dir=rtl]) .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,html:not([dir=rtl]) .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,html:not([dir=rtl]) .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:2px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #f2f5f7}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}[dir=rtl] .panel>.table-bordered>tbody>tr>td:first-child,[dir=rtl] .panel>.table-bordered>tbody>tr>th:first-child,[dir=rtl] .panel>.table-bordered>tfoot>tr>td:first-child,[dir=rtl] .panel>.table-bordered>tfoot>tr>th:first-child,[dir=rtl] .panel>.table-bordered>thead>tr>td:first-child,[dir=rtl] .panel>.table-bordered>thead>tr>th:first-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,[dir=rtl] .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,[dir=rtl] .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-right:0}[dir=rtl] .panel>.table-bordered>tbody>tr>td:last-child,[dir=rtl] .panel>.table-bordered>tbody>tr>th:last-child,[dir=rtl] .panel>.table-bordered>tfoot>tr>td:last-child,[dir=rtl] .panel>.table-bordered>tfoot>tr>th:last-child,[dir=rtl] .panel>.table-bordered>thead>tr>td:last-child,[dir=rtl] .panel>.table-bordered>thead>tr>th:last-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,[dir=rtl] .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,[dir=rtl] .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,[dir=rtl] .panel>.table-responsive>.table-bordered>thead>tr>th:last-child,html:not([dir=rtl]) .panel>.table-bordered>tbody>tr>td:first-child,html:not([dir=rtl]) .panel>.table-bordered>tbody>tr>th:first-child,html:not([dir=rtl]) .panel>.table-bordered>tfoot>tr>td:first-child,html:not([dir=rtl]) .panel>.table-bordered>tfoot>tr>th:first-child,html:not([dir=rtl]) .panel>.table-bordered>thead>tr>td:first-child,html:not([dir=rtl]) .panel>.table-bordered>thead>tr>th:first-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}html:not([dir=rtl]) .panel>.table-bordered>tbody>tr>td:last-child,html:not([dir=rtl]) .panel>.table-bordered>tbody>tr>th:last-child,html:not([dir=rtl]) .panel>.table-bordered>tfoot>tr>td:last-child,html:not([dir=rtl]) .panel>.table-bordered>tfoot>tr>th:last-child,html:not([dir=rtl]) .panel>.table-bordered>thead>tr>td:last-child,html:not([dir=rtl]) .panel>.table-bordered>thead>tr>th:last-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,html:not([dir=rtl]) .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}[dir=rtl] .panel>.table-responsive tr>:first-child,[dir=rtl] .panel>.table tr>:first-child{padding-right:16px}[dir=rtl] .panel>.table-responsive tr>:last-child,[dir=rtl] .panel>.table tr>:last-child,html:not([dir=rtl]) .panel>.table-responsive tr>:first-child,html:not([dir=rtl]) .panel>.table tr>:first-child{padding-left:16px}html:not([dir=rtl]) .panel>.table-responsive tr>:last-child,html:not([dir=rtl]) .panel>.table tr>:last-child{padding-right:16px}@media (min-width:768px){[dir=rtl] .panel>.table-responsive tr>:first-child,[dir=rtl] .panel>.table tr>:first-child{padding-right:24px}[dir=rtl] .panel>.table-responsive tr>:last-child,[dir=rtl] .panel>.table tr>:last-child,html:not([dir=rtl]) .panel>.table-responsive tr>:first-child,html:not([dir=rtl]) .panel>.table tr>:first-child{padding-left:24px}html:not([dir=rtl]) .panel>.table-responsive tr>:last-child,html:not([dir=rtl]) .panel>.table tr>:last-child{padding-right:24px}}@media (min-width:992px){[dir=rtl] .panel>.table-responsive tr>:first-child,[dir=rtl] .panel>.table tr>:first-child{padding-right:32px}[dir=rtl] .panel>.table-responsive tr>:last-child,[dir=rtl] .panel>.table tr>:last-child,html:not([dir=rtl]) .panel>.table-responsive tr>:first-child,html:not([dir=rtl]) .panel>.table tr>:first-child{padding-left:32px}html:not([dir=rtl]) .panel>.table-responsive tr>:last-child,html:not([dir=rtl]) .panel>.table tr>:last-child{padding-right:32px}}.panel-group{margin-bottom:24px}.panel-group .panel{margin-bottom:0;border-radius:3px}.panel-group .panel+.panel{margin-top:8px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #fff}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #fff}.panel-default{border-color:#e2e6e8!important}.panel-default>.panel-heading{color:#4a5860;border-color:#e2e6e8}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e2e6e8}.panel-default>.panel-heading .badge{color:#fff;background-color:#4a5860}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e2e6e8}.panel-primary{border-color:#37517e!important}.panel-primary>.panel-heading{color:#fff;border-color:#37517e}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#37517e}.panel-primary>.panel-heading .badge{color:#fff;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#37517e}.panel-success{border-color:#2ed06e!important}.panel-success>.panel-heading{color:#1b7940;border-color:#2ed06e}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2ed06e}.panel-success>.panel-heading .badge{color:#fff;background-color:#1b7940}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2ed06e}.panel-info{border-color:#00b9ff!important}.panel-info>.panel-heading{color:#00a4df;border-color:#00b9ff}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00b9ff}.panel-info>.panel-heading .badge{color:#fff;background-color:#00a4df}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00b9ff}.panel-warning{border-color:#ffa600!important}.panel-warning>.panel-heading{color:#9e5f00;border-color:#ffa600}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ffa600}.panel-warning>.panel-heading .badge{color:#fff;background-color:#9e5f00}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ffa600}.panel-danger{border-color:#f53636!important}.panel-danger>.panel-heading{color:#c22e2e;border-color:#f53636}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f53636}.panel-danger>.panel-heading .badge{color:#fff;background-color:#c22e2e}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f53636}.panel ul:last-child{margin-bottom:0}.panel-group .panel{margin-left:0;margin-right:0;border:1px solid #e2e6e8}.panel-group .panel-footer,.panel-group .panel-heading{padding:16px}@media (min-width:576px){.panel-group .panel .panel-footer,.panel-group .panel .panel-heading{padding:24px!important}}@media (min-width:992px){.panel-group .panel .panel-footer,.panel-group .panel .panel-heading{padding:24px 32px}}@media (min-width:768px){.panel{margin-left:0;margin-right:0}}
|
package/dist/css/popovers.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.close{float:right;font-size:32px;font-weight:700;line-height:24px;color:#
|
|
1
|
+
.close{float:right;font-size:32px;font-weight:700;line-height:24px;color:#0097c7;color:var(--color-content-accent,#0097c7);text-decoration:none}[dir=rtl] .close{float:left}.close:focus,.close:hover{color:#0084b3;color:var(--color-content-accent-hover,#0084b3);text-decoration:none;cursor:pointer}.close:focus{outline:thin dotted rgba(0,0,0,.5);outline-offset:2px}.close:active{color:#0077a5;color:var(--color-content-accent-active,#0077a5)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.popover{top:0;z-index:1060;width:276px;padding:18px 24px;font-family:Averta,Avenir W02,Avenir,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:24px;text-align:left;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-color:var(--color-background-screen,#fff);background-clip:padding-box;border-radius:3px;box-shadow:0 20px 66px 0 rgba(34,48,73,.2);position:absolute}[dir=rtl] .popover{right:0}html:not([dir=rtl]) .popover{left:0}[dir=rtl] .popover{text-align:right}.popover.animate{transition:transform .25s}.popover.scale-down{transform:scale(0)}.popover.top{margin-top:-14px;transform-origin:50% 100%}.popover.top-left{margin-top:-14px;transform-origin:calc(100% - 29px) 100%}.popover.top-right{margin-top:-14px;transform-origin:29px 100%}.popover.right{transform-origin:0 50%}[dir=rtl] .popover.right{margin-right:14px}html:not([dir=rtl]) .popover.right{margin-left:14px}.popover.right-top{transform-origin:0 29px}[dir=rtl] .popover.right-top{margin-right:14px}html:not([dir=rtl]) .popover.right-top{margin-left:14px}.popover.right-bottom{transform-origin:0 calc(100% - 29px)}[dir=rtl] .popover.right-bottom{margin-right:14px}html:not([dir=rtl]) .popover.right-bottom{margin-left:14px}.popover.bottom{margin-top:14px;transform-origin:50% 0}.popover.bottom-left{margin-top:14px;transform-origin:calc(100% - 29px) 0}.popover.bottom-right{margin-top:14px;transform-origin:29px 0}.popover.left{transform-origin:100% 50%}[dir=rtl] .popover.left{margin-right:-14px}html:not([dir=rtl]) .popover.left{margin-left:-14px}.popover.left-top{transform-origin:100% 29px}[dir=rtl] .popover.left-top{margin-right:-14px}html:not([dir=rtl]) .popover.left-top{margin-left:-14px}.popover.left-bottom{transform-origin:100% calc(100% - 29px)}[dir=rtl] .popover.left-bottom{margin-right:-14px}html:not([dir=rtl]) .popover.left-bottom{margin-left:-14px}.popover:before{content:" ";position:absolute;display:block;width:14px;height:14px;top:-7px;transform:rotate(45deg);background-color:inherit}[dir=rtl] .popover:before{right:28px}html:not([dir=rtl]) .popover:before{left:28px}.popover.top:before{top:auto;bottom:-7px}[dir=rtl] .popover.top:before{right:50%}html:not([dir=rtl]) .popover.top:before{left:50%}[dir=rtl] .popover.top:before{margin-right:-7px}html:not([dir=rtl]) .popover.top:before{margin-left:-7px}.popover.top-left:before{top:auto;bottom:-7px}[dir=rtl] .popover.top-left:before{left:29px}html:not([dir=rtl]) .popover.top-left:before{right:29px}[dir=rtl] .popover.top-left:before{right:auto}html:not([dir=rtl]) .popover.top-left:before{left:auto}[dir=rtl] .popover.top-left:before{margin-right:-7px}html:not([dir=rtl]) .popover.top-left:before{margin-left:-7px}.popover.top-right:before{top:auto;bottom:-7px}[dir=rtl] .popover.top-right:before{right:29px}html:not([dir=rtl]) .popover.top-right:before{left:29px}[dir=rtl] .popover.top-right:before{left:auto}html:not([dir=rtl]) .popover.top-right:before{right:auto}[dir=rtl] .popover.top-right:before{margin-right:-7px}html:not([dir=rtl]) .popover.top-right:before{margin-left:-7px}.popover.right:before{top:50%;margin-top:-7px}[dir=rtl] .popover.right:before{right:-7px}html:not([dir=rtl]) .popover.right:before{left:-7px}.popover.right-top:before{top:29px;margin-top:-7px}[dir=rtl] .popover.right-top:before{right:-7px}html:not([dir=rtl]) .popover.right-top:before{left:-7px}.popover.right-bottom:before{top:calc(100% - 29px);margin-top:-7px}[dir=rtl] .popover.right-bottom:before{right:-7px}html:not([dir=rtl]) .popover.right-bottom:before{left:-7px}.popover.bottom:before{top:-7px;bottom:auto}[dir=rtl] .popover.bottom:before{right:50%}html:not([dir=rtl]) .popover.bottom:before{left:50%}[dir=rtl] .popover.bottom:before{margin-right:-7px}html:not([dir=rtl]) .popover.bottom:before{margin-left:-7px}.popover.bottom-left:before{top:-7px;bottom:auto}[dir=rtl] .popover.bottom-left:before{left:29px}html:not([dir=rtl]) .popover.bottom-left:before{right:29px}[dir=rtl] .popover.bottom-left:before{right:auto}html:not([dir=rtl]) .popover.bottom-left:before{left:auto}[dir=rtl] .popover.bottom-left:before{margin-right:-7px}html:not([dir=rtl]) .popover.bottom-left:before{margin-left:-7px}.popover.bottom-right:before{top:-7px;bottom:auto}[dir=rtl] .popover.bottom-right:before{left:29px}html:not([dir=rtl]) .popover.bottom-right:before{right:29px}[dir=rtl] .popover.bottom-right:before{right:auto}html:not([dir=rtl]) .popover.bottom-right:before{left:auto}[dir=rtl] .popover.bottom-right:before{margin-right:-7px}html:not([dir=rtl]) .popover.bottom-right:before{margin-left:-7px}.popover.left:before{top:50%;margin-top:-7px}[dir=rtl] .popover.left:before{right:auto}html:not([dir=rtl]) .popover.left:before{left:auto}[dir=rtl] .popover.left:before{left:-7px}html:not([dir=rtl]) .popover.left:before{right:-7px}.popover.left-top:before{top:29px;margin-top:-7px}[dir=rtl] .popover.left-top:before{right:auto}html:not([dir=rtl]) .popover.left-top:before{left:auto}[dir=rtl] .popover.left-top:before{left:-7px}html:not([dir=rtl]) .popover.left-top:before{right:-7px}.popover.left-bottom:before{top:calc(100% - 29px);margin-top:-7px}[dir=rtl] .popover.left-bottom:before{right:auto}html:not([dir=rtl]) .popover.left-bottom:before{left:auto}[dir=rtl] .popover.left-bottom:before{left:-7px}html:not([dir=rtl]) .popover.left-bottom:before{right:-7px}.popover .popover-image,.popover img{width:65%;margin:8px 0}.popover-title{margin:0;background-color:#fff;background-color:var(--color-background-screen,#fff);border-bottom:0;border-radius:2px 2px 0 0;color:#37517e!important;color:var(--color-content-primary,#37517e)!important}.popover-content,.popover-title{padding:0;font-size:14px;line-height:24px;line-height:var(--size-24,24px)}.popover-content{color:#5d7079;color:var(--color-content-secondary,#5d7079)}.popover-content>:last-child{margin-bottom:0}.popover-close{float:right;font-size:32px;font-weight:700;line-height:24px;color:#0097c7;color:var(--color-content-accent,#0097c7);text-decoration:none}[dir=rtl] .popover-close{float:left}.popover-close:focus,.popover-close:hover{color:#0084b3;color:var(--color-content-accent-hover,#0084b3);text-decoration:none;cursor:pointer}.popover-close:focus{outline:thin dotted rgba(0,0,0,.5);outline-offset:2px}.popover-close:active{color:#0077a5;color:var(--color-content-accent-active,#0077a5)}button.popover-close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}[data-toggle=popover]:not(.btn){color:inherit!important;font-weight:inherit!important;text-decoration:none!important;cursor:pointer}[data-toggle=popover]:not(.btn):focus,[data-toggle=popover]:not(.btn):hover,[data-toggle=popover]:not(.btn)[aria-describedby]{color:#0084b3!important;color:var(--color-content-accent-hover,#0084b3)!important;outline:0}.nav>li>a [data-toggle=popover]{border-bottom:0}@media (max-width:991px){.popover-modal{position:fixed;top:0!important;right:0!important;left:0!important;width:272px;margin:32px auto!important;margin:var(--size-32,32px) auto!important}.popover-modal:before{display:none}}@media (min-width:992px){[dir=rtl] .popover-modal.left{margin-left:-var(--size-24)!important}[dir=rtl] .popover-modal.right,html:not([dir=rtl]) .popover-modal.left{margin-right:-var(--size-24)!important}html:not([dir=rtl]) .popover-modal.right{margin-left:-var(--size-24)!important}.popover-modal.top{margin-bottom:-8px!important}.popover-modal.bottom{margin-top:-8px!important}}@keyframes cover-fade-in{0%{opacity:0}to{opacity:.7}}.popover-modal-cover{position:fixed;top:0;z-index:1060;display:none;width:100vw;height:100vh;cursor:pointer;background-color:#fff;background-color:var(--color-background-screen,#fff);opacity:.7;animation:cover-fade-in .35s linear 0s forwards}[dir=rtl] .popover-modal-cover{right:0}html:not([dir=rtl]) .popover-modal-cover{left:0}@media (max-width:991px){.popover-modal-cover{display:block}}.popover-promotion{text-align:center;padding:24px;padding:var(--size-24,24px)}@media (max-width:576px){.popover-promotion{width:auto!important;padding:24px!important;padding:var(--size-24,24px)!important;margin:16px!important;margin:var(--size-16,16px)!important}}@media (min-width:566px) and (max-width:992px){.popover-promotion{width:540px!important;padding:28px 32px!important;padding:28px var(--size-32,32px)!important;margin:32px auto!important;margin:var(--size-32,32px) auto!important}}.popover-promotion .popover-title{font-size:18px;line-height:24px}@media (min-width:768px){.popover-promotion .popover-title{font-size:22px;line-height:30px}}@media (max-width:480px){.popover-promotion .popover-image{width:80%}}@media (min-width:480px) and (max-width:992px){.popover-promotion .popover-image{width:60%}}@media (min-width:992px){.popover-promotion .popover-image{width:80%}}@media (max-width:992px){.popover-promotion{position:absolute!important}}
|
package/dist/css/process.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.process{position:relative;margin:auto;display:block}.process svg{width:100%;height:100%}.process-circle{transform-origin:center center;transition:stroke 1s linear .2s;stroke:#
|
|
1
|
+
.process{position:relative;margin:auto;display:block}.process svg{width:100%;height:100%}.process-circle{transform-origin:center center;transition:stroke 1s linear .2s;stroke:#0097c7;stroke:var(--color-content-accent,#0097c7);stroke-opacity:1;stroke-linecap:round;animation-duration:1.5s;animation-timing-function:ease-out;animation-iteration-count:infinite}.process-inverse .process-circle{stroke:#fff;stroke:var(--color-background-screen,#fff)}.process-icon-container{position:absolute;display:inline-block;transform:rotate(45deg);height:50%;width:50%;left:25%;top:25%}.process-icon-horizontal,.process-icon-vertical{position:absolute;display:block;width:0;height:0}.process-success .process-icon-horizontal{background-color:#008026;background-color:var(--color-content-positive,#008026);bottom:0;left:0}.process-success .process-icon-vertical{background-color:#008026;background-color:var(--color-content-positive,#008026);top:100%;right:0}.process-success .process-circle{stroke:#008026;stroke:var(--color-content-positive,#008026)}.process-danger .process-icon-horizontal{background-color:#cf2929;background-color:var(--color-content-negative,#cf2929);left:0}.process-danger .process-icon-vertical{background-color:#cf2929;background-color:var(--color-content-negative,#cf2929);top:0}.process-danger .process-circle{stroke:#cf2929;stroke:var(--color-content-negative,#cf2929)}.process-danger .process-circle,.process-success .process-circle{animation-duration:1.5s;animation-delay:1ms;animation-timing-function:ease-out;animation-fill-mode:forwards;animation-iteration-count:1}.process-danger .process-icon-horizontal,.process-success .process-icon-horizontal{animation:process-width .3s ease 1.2s forwards}.process-danger .process-icon-vertical,.process-success .process-icon-vertical{animation:process-height .3s ease 1.5s forwards}.process-stopped .process-circle{animation:none}.process-stopped .process-icon-container{display:none}.process-xs{width:24px;height:24px}.process-xs .process-circle{stroke-dashoffset:69.11503838px;stroke-dasharray:69.11503838px;stroke-width:2px}.process-xs.process-danger .process-icon-horizontal{top:5px;height:2px}.process-xs.process-danger .process-icon-vertical{left:5px;width:2px}.process-xs .process-icon-horizontal,.process-xs .process-icon-vertical{border-radius:1px}.process-xs.process-success .process-icon-container{width:5px;height:10px;left:9px}.process-xs.process-success .process-icon-horizontal{height:2px}.process-xs.process-success .process-icon-vertical{width:2px}.process-sm{width:48px;height:48px}.process-sm .process-circle{stroke-dashoffset:144.51326207px;stroke-dasharray:144.51326207px;stroke-width:2.4px}.process-sm.process-danger .process-icon-horizontal{top:10.5px;height:3px}.process-sm.process-danger .process-icon-vertical{left:10.5px;width:3px}.process-sm .process-icon-horizontal,.process-sm .process-icon-vertical{border-radius:1.5px}.process-sm.process-success .process-icon-container{width:10.5px;height:21px;left:18px}.process-sm.process-success .process-icon-horizontal{height:3px}.process-sm.process-success .process-icon-vertical{width:3px}.process-xl{width:128px;height:128px}.process-xl .process-circle{stroke-dashoffset:395.84067435px;stroke-dasharray:395.84067435px;stroke-width:3px}.process-xl.process-danger .process-icon-horizontal{top:28px;height:8px}.process-xl.process-danger .process-icon-vertical{left:28px;width:8px}.process-xl .process-icon-horizontal,.process-xl .process-icon-vertical{border-radius:4px}.process-xl.process-success .process-icon-container{width:28px;height:56px;left:48px}.process-xl.process-success .process-icon-horizontal{height:8px}.process-xl.process-success .process-icon-vertical{width:8px}.process-xs .process-circle{animation-name:process-chase-circle-xs}.process-xs.process-danger .process-circle,.process-xs.process-success .process-circle{animation-name:process-success-circle-xs}.process-sm .process-circle{animation-name:process-chase-circle-sm}.process-sm.process-danger .process-circle,.process-sm.process-success .process-circle{animation-name:process-success-circle-sm}.process-xl .process-circle{animation-name:process-chase-circle-xl}.process-xl.process-danger .process-circle,.process-xl.process-success .process-circle{animation-name:process-success-circle-xl}@keyframes process-chase-circle-xs{0%{transform:rotate(0deg);stroke-dashoffset:206.34511514px;stroke-dasharray:69.11503838px}25%{stroke-dashoffset:68.11503838px;stroke-dasharray:34.55751919px}75%{stroke-dashoffset:68.11503838px;stroke-dasharray:51.83627878px}to{transform:rotate(1turn);stroke-dashoffset:68.11503838px;stroke-dasharray:69.11503838px}}@keyframes process-success-circle-xs{0%{transform:rotate(0deg);stroke-dashoffset:68.11503838px;stroke-dasharray:69.11503838px}to{transform:rotate(1turn);stroke-dashoffset:0;stroke-dasharray:69.11503838px}}@keyframes process-chase-circle-sm{0%{transform:rotate(0deg);stroke-dashoffset:432.5397862px;stroke-dasharray:144.51326207px}25%{stroke-dashoffset:143.51326207px;stroke-dasharray:72.25663103px}75%{stroke-dashoffset:143.51326207px;stroke-dasharray:108.38494655px}to{transform:rotate(1turn);stroke-dashoffset:143.51326207px;stroke-dasharray:144.51326207px}}@keyframes process-success-circle-sm{0%{transform:rotate(0deg);stroke-dashoffset:143.51326207px;stroke-dasharray:144.51326207px}to{transform:rotate(1turn);stroke-dashoffset:0;stroke-dasharray:144.51326207px}}@keyframes process-chase-circle-xl{0%{transform:rotate(0deg);stroke-dashoffset:1186.52202306px;stroke-dasharray:395.84067435px}25%{stroke-dashoffset:394.84067435px;stroke-dasharray:197.92033718px}75%{stroke-dashoffset:394.84067435px;stroke-dasharray:296.88050576px}to{transform:rotate(1turn);stroke-dashoffset:394.84067435px;stroke-dasharray:395.84067435px}}@keyframes process-success-circle-xl{0%{transform:rotate(0deg);stroke-dashoffset:394.84067435px;stroke-dasharray:395.84067435px}to{transform:rotate(1turn);stroke-dashoffset:0;stroke-dasharray:395.84067435px}}@keyframes process-width{to{width:100%}}@keyframes process-height{to{top:0;height:100%}}.btn .process:first-child{float:left}[dir=rtl] .btn .process:first-child{margin-right:-12px}html:not([dir=rtl]) .btn .process:first-child{margin-left:-12px}[dir=rtl] .btn .process:first-child{margin-left:12px}html:not([dir=rtl]) .btn .process:first-child{margin-right:12px}[dir=rtl] .btn .process:first-child{float:right}.btn-block .process:first-child{position:absolute}.btn .process-circle{transition:stroke .5s linear 0s}.btn-primary .process-circle,.btn-success .process-circle{stroke:#fff}.btn-primary .process-icon-horizontal,.btn-primary .process-icon-vertical,.btn-success .process-icon-horizontal,.btn-success .process-icon-vertical{background-color:#fff}.btn:focus .process-circle,.btn:hover .process-circle{stroke:#fff}.btn:focus .process-icon-horizontal,.btn:focus .process-icon-vertical,.btn:hover .process-icon-horizontal,.btn:hover .process-icon-vertical{background-color:#fff}.btn[disabled] .process-circle{stroke:#a8aaac}.btn[disabled] .process-icon-horizontal,.btn[disabled] .process-icon-vertical{background-color:#fff}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.progress{height:2px;margin-top:11px;margin-top:calc(var(--size-24, 24px)/2 - 1px);margin-bottom:11px;margin-bottom:calc(var(--size-24, 24px)/2 - 1px);background-color
|
|
1
|
+
.progress{height:2px;margin-top:11px;margin-top:calc(var(--size-24, 24px)/2 - 1px);margin-bottom:11px;margin-bottom:calc(var(--size-24, 24px)/2 - 1px);background-color:rgba(134,167,189,.10196078431372549);background-color:var(--color-background-neutral,rgba(134,167,189,.10196078431372549));border-radius:1px}.progress-bar{float:left;width:0;height:100%;font-size:1rem;font-size:var(--font-size-16,1rem);font-weight:700;color:#fff;color:var(--color-base-white-light,#fff);text-align:right;background-color:#00b9ff;transition:width .6s ease}[dir=rtl] .progress-bar{float:right;text-align:left}.progress-bar:after{content:"";float:right;margin-top:5px;width:8px;height:8px;background-color:inherit;border-radius:4px}[dir=rtl] .progress-bar:after{float:left;margin-left:4px}html:not([dir=rtl]) .progress-bar:after{margin-right:4px}.progress-bar:first-child{border-top-left-radius:1px;border-bottom-left-radius:1px}.progress-bar:last-child{border-top-right-radius:1px;border-bottom-right-radius:1px}.progress-bar-primary{background-color:#37517e}.progress-bar-success{background-color:#6fd698}.progress-bar-info{background-color:#00b9ff}.progress-bar-warning{background-color:#9a6500;background-color:var(--color-content-warning,#9a6500)}.progress-bar-danger{background-color:#cf2929;background-color:var(--color-content-negative,#cf2929)}
|
package/dist/css/select.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tw-select .tw-icon{display:inline-block;margin-
|
|
1
|
+
.tw-select .tw-icon{display:inline-block;margin-top:-2px;vertical-align:middle}[dir=rtl] .tw-select .tw-icon{margin-left:8px;margin-left:var(--size-8,8px)}html:not([dir=rtl]) .tw-select .tw-icon{margin-right:8px;margin-right:var(--size-8,8px)}.tw-select .tw-dropdown-item--clickable{cursor:pointer}.tw-select .tw-dropdown-item--divider{border-bottom:1px solid rgba(134,167,189,.10196078431372549)}.tw-select .tw-dropdown-item--focused{background-color:rgba(134,167,189,.10196078431372549);background-color:var(--color-background-neutral,rgba(134,167,189,.10196078431372549))}[dir=rtl] .tw-select .tw-dropdown-item .currency-flag{margin-left:8px;margin-left:var(--size-8,8px)}html:not([dir=rtl]) .tw-select .tw-dropdown-item .currency-flag{margin-right:8px;margin-right:var(--size-8,8px)}.tw-select .tw-dropdown-item>a{white-space:normal}[dir=rtl] .tw-select .dropdown-toggle.btn-input.btn-sm{padding-left:32px;padding-left:var(--size-32,32px)}html:not([dir=rtl]) .tw-select .dropdown-toggle.btn-input.btn-sm{padding-right:32px;padding-right:var(--size-32,32px)}[dir=rtl] .tw-select .dropdown-toggle.btn-input.btn-md{padding-left:40px;padding-left:var(--size-40,40px)}html:not([dir=rtl]) .tw-select .dropdown-toggle.btn-input.btn-md{padding-right:40px;padding-right:var(--size-40,40px)}[dir=rtl] .tw-select .dropdown-toggle.btn-input.btn-lg{padding-left:48px;padding-left:var(--size-48,48px)}html:not([dir=rtl]) .tw-select .dropdown-toggle.btn-input.btn-lg{padding-right:48px;padding-right:var(--size-48,48px)}[dir=rtl] .tw-select .dropdown-toggle .tw-select-chevron,[dir=rtl] .tw-select .dropdown-toggle tw-chevron-down-icon>span,html:not([dir=rtl]) .tw-select .dropdown-toggle .tw-select-chevron,html:not([dir=rtl]) .tw-select .dropdown-toggle tw-chevron-down-icon>span{margin:0}.tw-select .dropdown-toggle>span>.tw-icon,.tw-select .dropdown-toggle tw-icon span.tw-icon{position:static;display:inline-block}.tw-select .circle .tw-icon{vertical-align:middle}@media (max-width:575px){.tw-select.dropdown-menu.dropdown-menu--open{max-height:50vh;max-width:100%;opacity:1;overflow:auto;position:static;transform:none;visibility:visible;width:100%!important}}
|
package/dist/css/sequences.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.sequence{padding-left:24px;position:relative;margin-left:25px;margin-top:0;margin-bottom:0;font-size:.875rem;border-color:#d3d5d8}.sequence>li{padding-top:2px;padding-bottom:2px}.sequence>li:first-child{margin-top:16px}.sequence>li:last-child{margin-bottom:16px}@media (min-width:768px){.sequence>li{padding-top:4px;padding-bottom:4px}}.sequence>li:before{margin-top:8px}.sequence>li:after{top:16px}.sequence>li:first-child:after{height:100%}.sequence>li:last-child:after{height:0}.sequence.sequence-top>li:first-child{padding-top:20px;margin-top:0}.sequence.sequence-top>li:first-child:after{height:calc(100% + 16px)}.sequence.sequence-bottom>li:last-child{padding-bottom:20px;margin-bottom:0}.sequence.sequence-bottom>li:last-child:after{height:calc(100% - 16px)}.sequence.sequence-top.sequence-bottom>li:first-child:last-child:after{height:100%}.sequence .sequence-icon{top:2px}@media (min-width:768px){.sequence .sequence-icon{top:4px}}.sequence.sequence-top>li:first-child .sequence-icon{top:20px}.sequence>li:before{margin-left:-27px}.sequence>li:after{left:-24px}.sequence .sequence-icon{margin-left:-35px}.sequence .sequence-icon-md{margin-left:-39px}.sequence .sequence-icon-lg{margin-left:-43px}@media (min-width:768px){.sequence{padding-right:24px;font-size:1rem}}.sequence>li{display:block;line-height:24px;position:relative;border-color:#d3d5d8}.sequence>li>a{display:block;text-decoration:none;font-weight:500;color:#00b9ff;outline-offset:-1px}.sequence>li>a:focus,.sequence>li>a:hover{text-decoration:none;color:#00a4df}.sequence>li>a:active{color:#008ec0}.sequence>li p{margin-bottom:0;padding-bottom:8px;max-width:600px}.sequence>li p:last-child{padding-bottom:0}.sequence>li .btn-toolbar,.sequence>li .h1,.sequence>li .h2,.sequence>li .h3,.sequence>li .h4,.sequence>li h1,.sequence>li h2,.sequence>li h3,.sequence>li h4{margin-bottom:16px}.sequence>li:before{content:"";display:block;position:absolute;width:8px;height:8px;border-radius:50%;z-index:2;border:4px solid;border-color:inherit;outline:0}.sequence>li:after{content:"";position:absolute;width:2px;height:100%;border:0 solid;border-color:inherit;outline:0;background-color:#d3d5d8;background-size:200% 200%;background-position:0 0}.sequence .sequence-item-no-pip:before{display:none}.sequence>.active>a{text-decoration:none;color:#2e4369;font-weight:600}.sequence>.active>a:focus,.sequence>.active>a:hover{text-decoration:none;color:#00a4df}.sequence>.active>a:active{color:#008ec0}.sequence>.active .small{color:#5d7079;font-weight:500}.sequence>.active:before{border-color:#00b9ff}.sequence>.active:after,.sequence>.active~li:after{background-color:#d3d5d8;background-image:none}.sequence>.active~li:before{border-color:#d3d5d8}.sequence a{text-decoration:none;font-weight:500}.sequence-top>li:first-child:after{top:0}.sequence-inverse>li{border-color:#253655}.sequence-inverse>li>a{color:#fff}.sequence-inverse>li:after{background-color:#253655}.sequence-inverse>.active>a{color:#fff}.sequence-inverse>.active .small{color:#f2f5f7}.sequence-inverse>.active:after,.sequence-inverse>.active~li:after{background-color:#253655;background-image:none!important}.sequence-inverse>.active~li:before{border-color:#253655}.sequence-info>li{border-color:#00b9ff}.sequence-info>li:after{background-image:linear-gradient(#00b9ff,#00b9ff 50%,#d3d5d8 0,#d3d5d8)}.sequence-info.sequence-inverse>li:after{background-image:linear-gradient(#00b9ff,#00b9ff 50%,#253655 0,#253655)}.sequence-info>.active:before{border-color:#00b9ff;background-color:#00b9ff}@keyframes sequence-pip-info{0%{border-color:#d3d5d8}to{border-color:#00b9ff}}.sequence-primary>li{border-color:#37517e}.sequence-primary>li:after{background-image:linear-gradient(#37517e,#37517e 50%,#d3d5d8 0,#d3d5d8)}.sequence-primary.sequence-inverse>li:after{background-image:linear-gradient(#37517e,#37517e 50%,#253655 0,#253655)}.sequence-primary>.active:before{border-color:#37517e;background-color:#37517e}@keyframes sequence-pip-primary{0%{border-color:#d3d5d8}to{border-color:#37517e}}.sequence-success>li{border-color:#2ed06e}.sequence-success>li:after{background-image:linear-gradient(#2ed06e,#2ed06e 50%,#d3d5d8 0,#d3d5d8)}.sequence-success.sequence-inverse>li:after{background-image:linear-gradient(#2ed06e,#2ed06e 50%,#253655 0,#253655)}.sequence-success>.active:before{border-color:#2ed06e;background-color:#2ed06e}@keyframes sequence-pip-success{0%{border-color:#d3d5d8}to{border-color:#2ed06e}}.sequence-warning>li{border-color:#ffa600}.sequence-warning>li:after{background-image:linear-gradient(#ffa600,#ffa600 50%,#d3d5d8 0,#d3d5d8)}.sequence-warning.sequence-inverse>li:after{background-image:linear-gradient(#ffa600,#ffa600 50%,#253655 0,#253655)}.sequence-warning>.active:before{border-color:#ffa600;background-color:#ffa600}@keyframes sequence-pip-warning{0%{border-color:#d3d5d8}to{border-color:#ffa600}}.sequence-danger>li{border-color:#f53636}.sequence-danger>li:after{background-image:linear-gradient(#f53636,#f53636 50%,#d3d5d8 0,#d3d5d8)}.sequence-danger.sequence-inverse>li:after{background-image:linear-gradient(#f53636,#f53636 50%,#253655 0,#253655)}.sequence-danger>.active:before{border-color:#f53636;background-color:#f53636}@keyframes sequence-pip-danger{0%{border-color:#d3d5d8}to{border-color:#f53636}}.sequence-hollow>li:before{border-width:2px;background-color:#fff}.sequence-hollow>.active:before{border-width:4px}.sequence-hollow>.active~li:before{background-color:#fff}.sequence-hollow.sequence-inverse>li:before{background-color:#37517e}.sequence-icon{position:absolute;display:block;margin-left:-35px;background-color:#fff;border-radius:50%;width:24px;height:24px;line-height:23px;z-index:2;text-align:center;text-decoration:none!important;border:1px solid #5d7079;top:4px;font-size:12px}.sequence-icon .icon{font-size:16px;line-height:23px}.sequence-inverse .sequence-icon{background-color:#37517e;border-color:#fff}.sequence a .sequence-icon{color:#00b9ff;border-color:#00b9ff}.sequence a:focus .sequence-icon,.sequence a:hover .sequence-icon{color:#00a4df;border-color:#00a4df}.sequence-table{display:table}.sequence-table>li{display:table-row}.sequence-table>li>a{position:absolute}.sequence-table>li>.sequence-table-td,.sequence-table>li>.sequence-table-th{display:table-cell;padding:4px 12px 4px 0}.sequence-table>li>.sequence-table-td:last-child,.sequence-table>li>.sequence-table-th:last-child{padding-right:0}.sequence-table>li>.sequence-table-th{color:#2e4369;white-space:nowrap}.sequence-table>li:before{position:static}.sequence-table>li:after{display:none}.sequence-table>li .sequence-icon{position:static;margin-top:-17px}.sequence-table>li:first-child .sequence-table-td,.sequence-table>li:first-child .sequence-table-th{padding-top:17px}.sequence-table>li:last-child .sequence-table-td,.sequence-table>li:last-child .sequence-table-th{padding-bottom:15px}.sequence-table:before{content:" ";width:2px;left:0;position:absolute;border:1px solid;border-color:inherit;height:calc(100% - 56px);margin-top:28px;display:block}.sequence-table.sequence-top:before{height:calc(100% - 28px);margin-top:0}.sequence-table.sequence-bottom:before{height:calc(100% - 28px)}.sequence-table.sequence-top.sequence-bottom:before{height:100%}.sequence-inverse>li>.sequence-table-td,.sequence-inverse>li>.sequence-table-th{color:#e2e6e8}.sequence-icon-md{width:32px;height:32px;line-height:30px;margin-top:-6px;font-size:14px}.sequence-icon-lg{width:40px;height:40px;line-height:38px;margin-top:-6px;font-size:16px}.sequence-icon-lg .icon{font-size:22px;line-height:35px}.sequence-lg{padding-left:40px}.sequence-lg>li{padding-top:8px;padding-bottom:8px}.sequence-lg>li:first-child{margin-top:24px}.sequence-lg>li:last-child{margin-bottom:24px}@media (min-width:768px){.sequence-lg>li{padding-top:8px;padding-bottom:8px}}.sequence-lg>li:before{margin-top:8px}.sequence-lg>li:after{top:20px}.sequence-lg>li:first-child:after{height:100%}.sequence-lg>li:last-child:after{height:0}.sequence-lg.sequence-top>li:first-child{padding-top:32px;margin-top:0}.sequence-lg.sequence-top>li:first-child:after{height:calc(100% + 20px)}.sequence-lg.sequence-bottom>li:last-child{padding-bottom:32px;margin-bottom:0}.sequence-lg.sequence-bottom>li:last-child:after{height:calc(100% - 20px)}.sequence-lg.sequence-top.sequence-bottom>li:first-child:last-child:after{height:100%}.sequence-lg .sequence-icon{top:8px}@media (min-width:768px){.sequence-lg .sequence-icon{top:8px}}.sequence-lg.sequence-top>li:first-child .sequence-icon{top:32px}.sequence-lg>li:before{margin-left:-43px}.sequence-lg>li:after{left:-40px}.sequence-lg .sequence-icon{margin-left:-51px}.sequence-lg .sequence-icon-md{margin-left:-55px}.sequence-lg .sequence-icon-lg{margin-left:-59px}@media (min-width:768px){.sequence-lg{padding-left:48px}.sequence-lg>li:before{margin-left:-51px}.sequence-lg>li:after{left:-48px}.sequence-lg .sequence-icon{margin-left:-59px}.sequence-lg .sequence-icon-md{margin-left:-63px}.sequence-lg .sequence-icon-lg{margin-left:-67px}}.sequence-animate>li:after{background-size:200% 200%;animation:sequence-fill .3s linear 0s both}.sequence-animate.sequence-info>li:before{animation:sequence-pip-info .3s linear .3s both,sequence-pulse-info 3s linear .3s forwards}.sequence-animate.sequence-info>.active:before{animation:sequence-pip-info .3s linear .3s both,sequence-pulse-info 3s linear .3s infinite}.sequence-animate.sequence-warning>li:before{animation:sequence-pip-warning .3s linear .3s both,sequence-pulse-warning 3s linear .3s forwards}.sequence-animate.sequence-warning>.active:before{animation:sequence-pip-warning .3s linear .3s both,sequence-pulse-warning 3s linear .3s infinite}.sequence-animate.sequence-success>li:before{animation:sequence-pip-success .3s linear .3s both,sequence-pulse-success 3s linear .3s forwards}.sequence-animate.sequence-success>.active:before{animation:sequence-pip-success .3s linear .3s both,sequence-pulse-success 3s linear .3s infinite}.sequence-animate.sequence-danger>li:before{animation:sequence-pip-danger .3s linear .3s both,sequence-pulse-danger 3s linear .3s forwards}.sequence-animate.sequence-danger>.active:before{animation:sequence-pip-danger .3s linear .3s both,sequence-pulse-danger 3s linear .3s infinite}.sequence-animate>li:first-child:after,.sequence-animate>li:first-child:before{animation-delay:.3s!important}.sequence-animate>li:nth-child(2):after,.sequence-animate>li:nth-child(2):before{animation-delay:.6s!important}.sequence-animate>li:nth-child(3):after,.sequence-animate>li:nth-child(3):before{animation-delay:.9s!important}.sequence-animate>li:nth-child(4):after,.sequence-animate>li:nth-child(4):before{animation-delay:1.2s!important}.sequence-animate>li:nth-child(5):after,.sequence-animate>li:nth-child(5):before{animation-delay:1.5s!important}.sequence-animate>li:nth-child(6):after,.sequence-animate>li:nth-child(6):before{animation-delay:1.8s!important}.sequence-animate>li:nth-child(7):after,.sequence-animate>li:nth-child(7):before{animation-delay:2.1s!important}.sequence-animate>li:nth-child(8):after,.sequence-animate>li:nth-child(8):before{animation-delay:2.4s!important}.sequence-animate>li:nth-child(9):after,.sequence-animate>li:nth-child(9):before{animation-delay:2.7s!important}.sequence-animate>li:nth-child(10):after,.sequence-animate>li:nth-child(10):before{animation-delay:3s!important}.sequence-animate>.active~li:after,.sequence-animate>.active~li:before{animation:none}@keyframes sequence-fill{0%{background-position:0 100%}to{background-position:0 0}}@keyframes sequence-pulse-info{0%{box-shadow:0 0 0 0 rgba(0,185,255,.3)}50%{box-shadow:0 0 0 16px rgba(0,185,255,0)}to{box-shadow:0 0 0 0 rgba(0,185,255,0)}}@keyframes sequence-pulse-warning{0%{box-shadow:0 0 0 0 rgba(255,166,0,.3)}50%{box-shadow:0 0 0 16px rgba(255,166,0,0)}to{box-shadow:0 0 0 0 rgba(255,166,0,0)}}@keyframes sequence-pulse-success{0%{box-shadow:0 0 0 0 rgba(26,208,110,.3)}50%{box-shadow:0 0 0 16px rgba(26,208,110,0)}to{box-shadow:0 0 0 0 rgba(226,208,110,0)}}@keyframes sequence-pulse-danger{0%{box-shadow:0 0 0 0 rgba(245,54,54,.3)}50%{box-shadow:0 0 0 16px rgba(245,54,54,0)}to{box-shadow:0 0 0 0 rgba(245,54,54,0)}}.sequence>li:after{border-width:0}
|
|
1
|
+
.sequence{position:relative;margin-top:0;margin-bottom:0;font-size:.875rem;border-color:rgba(0,0,0,.10196078431372549);border-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549))}.sequence>li{padding-top:2px;padding-bottom:2px}.sequence>li:first-child{margin-top:16px}.sequence>li:last-child{margin-bottom:16px}@media (min-width:768px){.sequence>li{padding-top:4px;padding-bottom:4px}}.sequence>li:before{margin-top:8px}.sequence>li:after{top:16px}.sequence>li:first-child:after{height:100%}.sequence>li:last-child:after{height:0}.sequence.sequence-top>li:first-child{padding-top:20px;margin-top:0}.sequence.sequence-top>li:first-child:after{height:calc(100% + 16px)}.sequence.sequence-bottom>li:last-child{padding-bottom:20px;margin-bottom:0}.sequence.sequence-bottom>li:last-child:after{height:calc(100% - 16px)}.sequence.sequence-top.sequence-bottom>li:first-child:last-child:after{height:100%}.sequence .sequence-icon{top:2px}@media (min-width:768px){.sequence .sequence-icon{top:4px}}.sequence.sequence-top>li:first-child .sequence-icon{top:20px}[dir=rtl] .sequence{padding-right:24px}html:not([dir=rtl]) .sequence{padding-left:24px}[dir=rtl] .sequence>li:before{margin-right:-27px}html:not([dir=rtl]) .sequence>li:before{margin-left:-27px}[dir=rtl] .sequence>li:after{right:-24px}html:not([dir=rtl]) .sequence>li:after{left:-24px}[dir=rtl] .sequence .sequence-icon{margin-right:-35px}html:not([dir=rtl]) .sequence .sequence-icon{margin-left:-35px}[dir=rtl] .sequence .sequence-icon-md{margin-right:-39px}html:not([dir=rtl]) .sequence .sequence-icon-md{margin-left:-39px}[dir=rtl] .sequence .sequence-icon-lg{margin-right:-43px}html:not([dir=rtl]) .sequence .sequence-icon-lg{margin-left:-43px}[dir=rtl] .sequence{margin-right:25px}html:not([dir=rtl]) .sequence{margin-left:25px}@media (min-width:768px){.sequence{font-size:1rem}[dir=rtl] .sequence{padding-left:24px}html:not([dir=rtl]) .sequence{padding-right:24px}}.sequence>li{display:block;line-height:24px;position:relative;border-color:rgba(0,0,0,.10196078431372549);border-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549))}.sequence>li>a{display:block;text-decoration:none;font-weight:500;color:#0097c7;color:var(--color-content-accent,#0097c7);outline-offset:-1px}.sequence>li>a:focus,.sequence>li>a:hover{text-decoration:none;color:#0084b3;color:var(--color-content-accent-hover,#0084b3)}.sequence>li>a:active{color:#0077a5;color:var(--color-content-accent-active,#0077a5)}.sequence>li p{margin-bottom:0;padding-bottom:8px;max-width:600px}.sequence>li p:last-child{padding-bottom:0}.sequence>li .btn-toolbar,.sequence>li .h1,.sequence>li .h2,.sequence>li .h3,.sequence>li .h4,.sequence>li h1,.sequence>li h2,.sequence>li h3,.sequence>li h4{margin-bottom:16px}.sequence>li:before{content:"";display:block;position:absolute;width:8px;height:8px;border-radius:50%;z-index:2;border:4px solid;border-color:inherit;outline:0}.sequence>li:after{content:"";position:absolute;width:2px;height:100%;border:0 solid;border-color:inherit;outline:0;background-color:rgba(0,0,0,.10196078431372549);background-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549));background-size:200% 200%;background-position:0 0}.sequence .sequence-item-no-pip:before{display:none}.sequence>.active>a{font-weight:600}.sequence>.active>a,.sequence>.active>a:focus,.sequence>.active>a:hover{text-decoration:none;color:#37517e;color:var(--color-content-primary,#37517e)}.sequence>.active>a:active{color:#37517e;color:var(--color-content-primary,#37517e)}.sequence>.active:before{border-color:#0097c7;border-color:var(--color-content-accent,#0097c7)}.sequence>.active:after,.sequence>.active~li:after{background-color:rgba(0,0,0,.10196078431372549);background-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549));background-image:none}.sequence>.active~li:before{border-color:rgba(0,0,0,.10196078431372549);border-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549))}.sequence a{text-decoration:none;font-weight:500}.sequence-top>li:first-child:after{top:0}.sequence-inverse>li{border-color:rgba(0,0,0,.10196078431372549);border-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549))}.sequence-inverse>li>a{color:#fff}.sequence-inverse>li:after{background-color:#37517e;background-color:var(--color-base-navy-light,#37517e)}.sequence-inverse>.active>a{color:#fff}.sequence-inverse>.active .small{color:#5d7079;color:var(--color-content-secondary,#5d7079)}.sequence-inverse>.active:after,.sequence-inverse>.active~li:after{background-color:#37517e;background-color:var(--color-base-navy-light,#37517e);background-image:none!important}.sequence-inverse>.active~li:before{border-color:#37517e;border-color:var(--color-base-navy-light,#37517e)}.sequence-info>li{border-color:#00a2dd;border-color:var(--color-interactive-accent,#00a2dd)}.sequence-info>li:after{background-image:linear-gradient(#00a2dd,#00a2dd 50%,#d3d5d8 0,#d3d5d8);background-image:linear-gradient(var(--color-interactive-accent,#00a2dd),var(--color-interactive-accent,#00a2dd) 50%,#d3d5d8 0,#d3d5d8)}.sequence-info.sequence-inverse>li:after{background-image:linear-gradient(#00a2dd,#00a2dd 50%,#253655 0,#253655);background-image:linear-gradient(var(--color-interactive-accent,#00a2dd),var(--color-interactive-accent,#00a2dd) 50%,#253655 0,#253655)}.sequence-info>.active:before{border-color:#00a2dd;border-color:var(--color-interactive-accent,#00a2dd);background-color:#00a2dd;background-color:var(--color-interactive-accent,#00a2dd)}@keyframes sequence-pip-info{0%{border-color:#d3d5d8}to{border-color:#00a2dd;border-color:var(--color-interactive-accent,#00a2dd)}}.sequence-primary>li{border-color:#37517e;border-color:var(--color-base-navy-light,#37517e)}.sequence-primary>li:after{background-image:linear-gradient(#37517e,#37517e 50%,#d3d5d8 0,#d3d5d8);background-image:linear-gradient(var(--color-base-navy-light,#37517e),var(--color-base-navy-light,#37517e) 50%,#d3d5d8 0,#d3d5d8)}.sequence-primary.sequence-inverse>li:after{background-image:linear-gradient(#37517e,#37517e 50%,#253655 0,#253655);background-image:linear-gradient(var(--color-base-navy-light,#37517e),var(--color-base-navy-light,#37517e) 50%,#253655 0,#253655)}.sequence-primary>.active:before{border-color:#37517e;border-color:var(--color-base-navy-light,#37517e);background-color:#37517e;background-color:var(--color-base-navy-light,#37517e)}@keyframes sequence-pip-primary{0%{border-color:#d3d5d8}to{border-color:#37517e;border-color:var(--color-base-navy-light,#37517e)}}.sequence-success>li{border-color:#2ead4b;border-color:var(--color-interactive-positive,#2ead4b)}.sequence-success>li:after{background-image:linear-gradient(#2ead4b,#2ead4b 50%,#d3d5d8 0,#d3d5d8);background-image:linear-gradient(var(--color-interactive-positive,#2ead4b),var(--color-interactive-positive,#2ead4b) 50%,#d3d5d8 0,#d3d5d8)}.sequence-success.sequence-inverse>li:after{background-image:linear-gradient(#2ead4b,#2ead4b 50%,#253655 0,#253655);background-image:linear-gradient(var(--color-interactive-positive,#2ead4b),var(--color-interactive-positive,#2ead4b) 50%,#253655 0,#253655)}.sequence-success>.active:before{border-color:#2ead4b;border-color:var(--color-interactive-positive,#2ead4b);background-color:#2ead4b;background-color:var(--color-interactive-positive,#2ead4b)}@keyframes sequence-pip-success{0%{border-color:#d3d5d8}to{border-color:#2ead4b;border-color:var(--color-interactive-positive,#2ead4b)}}.sequence-warning>li{border-color:#df8700;border-color:var(--color-interactive-warning,#df8700)}.sequence-warning>li:after{background-image:linear-gradient(#df8700,#df8700 50%,#d3d5d8 0,#d3d5d8);background-image:linear-gradient(var(--color-interactive-warning,#df8700),var(--color-interactive-warning,#df8700) 50%,#d3d5d8 0,#d3d5d8)}.sequence-warning.sequence-inverse>li:after{background-image:linear-gradient(#df8700,#df8700 50%,#253655 0,#253655);background-image:linear-gradient(var(--color-interactive-warning,#df8700),var(--color-interactive-warning,#df8700) 50%,#253655 0,#253655)}.sequence-warning>.active:before{border-color:#df8700;border-color:var(--color-interactive-warning,#df8700);background-color:#df8700;background-color:var(--color-interactive-warning,#df8700)}@keyframes sequence-pip-warning{0%{border-color:#d3d5d8}to{border-color:#df8700;border-color:var(--color-interactive-warning,#df8700)}}.sequence-danger>li{border-color:#e74848;border-color:var(--color-interactive-negative,#e74848)}.sequence-danger>li:after{background-image:linear-gradient(#e74848,#e74848 50%,#d3d5d8 0,#d3d5d8);background-image:linear-gradient(var(--color-interactive-negative,#e74848),var(--color-interactive-negative,#e74848) 50%,#d3d5d8 0,#d3d5d8)}.sequence-danger.sequence-inverse>li:after{background-image:linear-gradient(#e74848,#e74848 50%,#253655 0,#253655);background-image:linear-gradient(var(--color-interactive-negative,#e74848),var(--color-interactive-negative,#e74848) 50%,#253655 0,#253655)}.sequence-danger>.active:before{border-color:#e74848;border-color:var(--color-interactive-negative,#e74848);background-color:#e74848;background-color:var(--color-interactive-negative,#e74848)}@keyframes sequence-pip-danger{0%{border-color:#d3d5d8}to{border-color:#e74848;border-color:var(--color-interactive-negative,#e74848)}}.sequence-hollow>li:before{border-width:2px;background-color:#fff;background-color:var(--color-background-screen,#fff)}.sequence-hollow>.active:before{border-width:4px}.sequence-hollow>.active~li:before{background-color:#fff;background-color:var(--color-background-screen,#fff)}.sequence-hollow.sequence-inverse>li:before{background-color:#37517e;background-color:var(--color-base-navy-light,#37517e)}.sequence-icon{position:absolute;display:block;background-color:#fff;background-color:var(--color-background-screen,#fff);border-radius:50%;width:24px;height:24px;line-height:23px;z-index:2;text-align:center;text-decoration:none!important;border:1px solid rgba(0,0,0,.10196078431372549);border-color:var(--color-border-neutral,rgba(0,0,0,.10196078431372549));top:4px;font-size:12px;font-size:var(--size-12,12px)}[dir=rtl] .sequence-icon{margin-right:-35px}html:not([dir=rtl]) .sequence-icon{margin-left:-35px}.sequence-icon .icon{font-size:16px;line-height:23px}.sequence-inverse .sequence-icon{background-color:#37517e;background-color:var(--color-base-navy-light,#37517e);border-color:#fff}.sequence a .sequence-icon{color:#0097c7;color:var(--color-content-accent,#0097c7);border-color:#00a2dd;border-color:var(--color-interactive-accent,#00a2dd)}.sequence a:focus .sequence-icon,.sequence a:hover .sequence-icon{color:#0084b3;color:var(--color-content-accent-hover,#0084b3);border-color:#008fc9;border-color:var(--color-interactive-accent-hover,#008fc9)}.sequence-table{display:table}.sequence-table>li{display:table-row}.sequence-table>li>a{position:absolute}.sequence-table>li>.sequence-table-td,.sequence-table>li>.sequence-table-th{display:table-cell;padding:4px 12px;padding:var(--size-4,4px) var(--size-12,12px)}[dir=rtl] .sequence-table>li>.sequence-table-td,[dir=rtl] .sequence-table>li>.sequence-table-th{padding-right:0}[dir=rtl] .sequence-table>li>.sequence-table-td:last-child,[dir=rtl] .sequence-table>li>.sequence-table-th:last-child,html:not([dir=rtl]) .sequence-table>li>.sequence-table-td,html:not([dir=rtl]) .sequence-table>li>.sequence-table-th{padding-left:0}html:not([dir=rtl]) .sequence-table>li>.sequence-table-td:last-child,html:not([dir=rtl]) .sequence-table>li>.sequence-table-th:last-child{padding-right:0}.sequence-table>li>.sequence-table-th{color:#37517e;color:var(--color-content-primary,#37517e);white-space:nowrap}.sequence-table>li:before{position:static}.sequence-table>li:after{display:none}.sequence-table>li .sequence-icon{position:static;margin-top:-17px}.sequence-table>li:first-child .sequence-table-td,.sequence-table>li:first-child .sequence-table-th{padding-top:17px}.sequence-table>li:last-child .sequence-table-td,.sequence-table>li:last-child .sequence-table-th{padding-bottom:15px}.sequence-table:before{content:" ";width:2px;position:absolute;border:1px solid;border-color:inherit;height:calc(100% - 56px);margin-top:28px;display:block}[dir=rtl] .sequence-table:before{right:0}html:not([dir=rtl]) .sequence-table:before{left:0}.sequence-table.sequence-top:before{height:calc(100% - 28px);margin-top:0}.sequence-table.sequence-bottom:before{height:calc(100% - 28px)}.sequence-table.sequence-top.sequence-bottom:before{height:100%}.sequence-inverse>li>.sequence-table-td,.sequence-inverse>li>.sequence-table-th{color:#5d7079;color:var(--color-content-secondary,#5d7079)}.sequence-icon-md{width:32px;height:32px;line-height:30px;margin-top:-6px;font-size:14px}.sequence-icon-lg{width:40px;height:40px;line-height:38px;margin-top:-6px;font-size:16px}.sequence-icon-lg .icon{font-size:22px;line-height:35px}.sequence-lg>li{padding-top:8px;padding-bottom:8px}.sequence-lg>li:first-child{margin-top:24px}.sequence-lg>li:last-child{margin-bottom:24px}@media (min-width:768px){.sequence-lg>li{padding-top:8px;padding-bottom:8px}}.sequence-lg>li:before{margin-top:8px}.sequence-lg>li:after{top:20px}.sequence-lg>li:first-child:after{height:100%}.sequence-lg>li:last-child:after{height:0}.sequence-lg.sequence-top>li:first-child{padding-top:32px;margin-top:0}.sequence-lg.sequence-top>li:first-child:after{height:calc(100% + 20px)}.sequence-lg.sequence-bottom>li:last-child{padding-bottom:32px;margin-bottom:0}.sequence-lg.sequence-bottom>li:last-child:after{height:calc(100% - 20px)}.sequence-lg.sequence-top.sequence-bottom>li:first-child:last-child:after{height:100%}.sequence-lg .sequence-icon{top:8px}@media (min-width:768px){.sequence-lg .sequence-icon{top:8px}}.sequence-lg.sequence-top>li:first-child .sequence-icon{top:32px}[dir=rtl] .sequence-lg{padding-right:40px}html:not([dir=rtl]) .sequence-lg{padding-left:40px}[dir=rtl] .sequence-lg>li:before{margin-right:-43px}html:not([dir=rtl]) .sequence-lg>li:before{margin-left:-43px}[dir=rtl] .sequence-lg>li:after{right:-40px}html:not([dir=rtl]) .sequence-lg>li:after{left:-40px}[dir=rtl] .sequence-lg .sequence-icon{margin-right:-51px}html:not([dir=rtl]) .sequence-lg .sequence-icon{margin-left:-51px}[dir=rtl] .sequence-lg .sequence-icon-md{margin-right:-55px}html:not([dir=rtl]) .sequence-lg .sequence-icon-md{margin-left:-55px}[dir=rtl] .sequence-lg .sequence-icon-lg{margin-right:-59px}html:not([dir=rtl]) .sequence-lg .sequence-icon-lg{margin-left:-59px}@media (min-width:768px){[dir=rtl] .sequence-lg{padding-right:48px}html:not([dir=rtl]) .sequence-lg{padding-left:48px}[dir=rtl] .sequence-lg>li:before{margin-right:-51px}html:not([dir=rtl]) .sequence-lg>li:before{margin-left:-51px}[dir=rtl] .sequence-lg>li:after{right:-48px}html:not([dir=rtl]) .sequence-lg>li:after{left:-48px}[dir=rtl] .sequence-lg .sequence-icon{margin-right:-59px}html:not([dir=rtl]) .sequence-lg .sequence-icon{margin-left:-59px}[dir=rtl] .sequence-lg .sequence-icon-md{margin-right:-63px}html:not([dir=rtl]) .sequence-lg .sequence-icon-md{margin-left:-63px}[dir=rtl] .sequence-lg .sequence-icon-lg{margin-right:-67px}html:not([dir=rtl]) .sequence-lg .sequence-icon-lg{margin-left:-67px}}.sequence-animate>li:after{background-size:200% 200%;animation:sequence-fill .3s linear 0s both}.sequence-animate.sequence-info>li:before{animation:sequence-pip-info .3s linear .3s both,sequence-pulse-info 3s linear .3s forwards}.sequence-animate.sequence-info>.active:before{animation:sequence-pip-info .3s linear .3s both,sequence-pulse-info 3s linear .3s infinite}.sequence-animate.sequence-warning>li:before{animation:sequence-pip-warning .3s linear .3s both,sequence-pulse-warning 3s linear .3s forwards}.sequence-animate.sequence-warning>.active:before{animation:sequence-pip-warning .3s linear .3s both,sequence-pulse-warning 3s linear .3s infinite}.sequence-animate.sequence-success>li:before{animation:sequence-pip-success .3s linear .3s both,sequence-pulse-success 3s linear .3s forwards}.sequence-animate.sequence-success>.active:before{animation:sequence-pip-success .3s linear .3s both,sequence-pulse-success 3s linear .3s infinite}.sequence-animate.sequence-danger>li:before{animation:sequence-pip-danger .3s linear .3s both,sequence-pulse-danger 3s linear .3s forwards}.sequence-animate.sequence-danger>.active:before{animation:sequence-pip-danger .3s linear .3s both,sequence-pulse-danger 3s linear .3s infinite}.sequence-animate>li:first-child:after,.sequence-animate>li:first-child:before{animation-delay:.3s!important}.sequence-animate>li:nth-child(2):after,.sequence-animate>li:nth-child(2):before{animation-delay:.6s!important}.sequence-animate>li:nth-child(3):after,.sequence-animate>li:nth-child(3):before{animation-delay:.9s!important}.sequence-animate>li:nth-child(4):after,.sequence-animate>li:nth-child(4):before{animation-delay:1.2s!important}.sequence-animate>li:nth-child(5):after,.sequence-animate>li:nth-child(5):before{animation-delay:1.5s!important}.sequence-animate>li:nth-child(6):after,.sequence-animate>li:nth-child(6):before{animation-delay:1.8s!important}.sequence-animate>li:nth-child(7):after,.sequence-animate>li:nth-child(7):before{animation-delay:2.1s!important}.sequence-animate>li:nth-child(8):after,.sequence-animate>li:nth-child(8):before{animation-delay:2.4s!important}.sequence-animate>li:nth-child(9):after,.sequence-animate>li:nth-child(9):before{animation-delay:2.7s!important}.sequence-animate>li:nth-child(10):after,.sequence-animate>li:nth-child(10):before{animation-delay:3s!important}.sequence-animate>.active~li:after,.sequence-animate>.active~li:before{animation:none}@keyframes sequence-fill{0%{background-position:0 100%}to{background-position:0 0}}@keyframes sequence-pulse-info{0%{box-shadow:0 0 0 0 rgba(0,185,255,.3)}50%{box-shadow:0 0 0 16px rgba(0,185,255,0)}to{box-shadow:0 0 0 0 rgba(0,185,255,0)}}@keyframes sequence-pulse-warning{0%{box-shadow:0 0 0 0 rgba(255,166,0,.3)}50%{box-shadow:0 0 0 16px rgba(255,166,0,0)}to{box-shadow:0 0 0 0 rgba(255,166,0,0)}}@keyframes sequence-pulse-success{0%{box-shadow:0 0 0 0 rgba(26,208,110,.3)}50%{box-shadow:0 0 0 16px rgba(26,208,110,0)}to{box-shadow:0 0 0 0 rgba(226,208,110,0)}}@keyframes sequence-pulse-danger{0%{box-shadow:0 0 0 0 rgba(245,54,54,.3)}50%{box-shadow:0 0 0 16px rgba(245,54,54,0)}to{box-shadow:0 0 0 0 rgba(245,54,54,0)}}
|
package/dist/css/table.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
table{background-color:#fff;border-collapse:separate}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}caption{padding-top:16px;padding-bottom:16px;color:#a8aaac}caption
|
|
1
|
+
table{background-color:#fff;background-color:var(--color-background-screen,#fff);border-collapse:separate}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}caption{padding-top:16px;padding-bottom:16px;color:#a8aaac;color:var(--color-content-disabled,#a8aaac);text-align:left}[dir=rtl] caption{text-align:right}th{text-align:left}[dir=rtl] th{text-align:right}.table{width:100%;max-width:100%;margin-bottom:24px;margin-bottom:var(--size-24,24px)}.table>.tbody>dl>dd,.table>.tfoot>ol>li,.table>.thead>ol>li,.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:24px 16px;padding:var(--size-24,24px) 16px;line-height:1.5;line-height:var(--line-height-body,1.5);vertical-align:top;border-top:1px solid rgba(134,167,189,.10196078431372549);border-top:1px solid var(--color-background-neutral,rgba(134,167,189,.10196078431372549));border-bottom:0;transition:border .15s ease}.table>.thead>ol>li,.table>thead>tr>th{vertical-align:bottom}.table>.thead>ol>li a,.table>thead>tr>th a{text-decoration:none}.table>.thead>ol>li .tw-icon,.table>thead>tr>th .tw-icon{margin-top:-3px}.table>.thead:first-child>ol:first-child>li,.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:1px solid rgba(0,0,0,.10196078431372549);border-top:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549))}.table .table{background-color:#fff;background-color:var(--color-background-screen,#fff)}.table>.tfoot,.table>.thead,.table>tfoot,.table>thead{color:#37517e;color:var(--color-content-primary,#37517e)}.table>.tbody,.table>.tfoot,.table>.thead,.table>tbody,.table>tfoot,.table>thead{font-size:.875rem;font-size:var(--font-size-14,.875rem)}.table>.tbody>dl>.th,.table>tbody>tr>th{color:#37517e;color:var(--color-content-primary,#37517e)}.table-condensed>.tbody>dl>dd,.table-condensed>.thead>ol>li,.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:8px}.table-bordered{border:1px solid rgba(0,0,0,.10196078431372549);border:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549));border-radius:3px}.table-bordered .thead,.table-bordered thead{background-color:rgba(134,167,189,.10196078431372549);background-color:var(--color-background-neutral,rgba(134,167,189,.10196078431372549))}@media (max-width:767px){div.table-bordered:not(.table-responsive){border:0}}.table-striped>tbody>tr:nth-of-type(odd){background-color:rgba(134,167,189,.10196078431372549);background-color:var(--color-background-neutral,rgba(134,167,189,.10196078431372549))}@media (min-width:768px){.table-striped>.tbody>dl:nth-of-type(odd){background-color:rgba(134,167,189,.10196078431372549);background-color:var(--color-background-neutral,rgba(134,167,189,.10196078431372549))}}table col[class*=col-]{position:static;float:none;display:table-column}.table-hover>tbody>tr.primary:hover>td,.table-hover>tbody>tr.primary:hover>th,.table-hover>tbody>tr:hover>.primary,.table-hover>tbody>tr>td.primary:hover,.table-hover>tbody>tr>th.primary:hover,.table>tbody>tr.primary>td,.table>tbody>tr.primary>th,.table>tbody>tr>td.primary,.table>tbody>tr>th.primary,.table>tfoot>tr.primary>td,.table>tfoot>tr.primary>th,.table>tfoot>tr>td.primary,.table>tfoot>tr>th.primary,.table>thead>tr.primary>td,.table>thead>tr.primary>th,.table>thead>tr>td.primary,.table>thead>tr>th.primary{background-color:#37517e;background-color:var(--color-base-navy-light,#37517e)}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#fff;background-color:var(--color-background-screen,#fff)}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:rgba(54,199,151,.10196078431372549);background-color:var(--color-background-positive,rgba(54,199,151,.10196078431372549))}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:rgba(56,200,255,.10196078431372549);background-color:var(--color-background-accent,rgba(56,200,255,.10196078431372549))}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:rgba(255,172,0,.10196078431372549);background-color:var(--color-background-warning,rgba(255,172,0,.10196078431372549))}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:rgba(255,135,135,.10196078431372549);background-color:var(--color-background-negative,rgba(255,135,135,.10196078431372549))}.table-hover>tbody>tr.default:hover>td,.table-hover>tbody>tr.default:hover>th,.table-hover>tbody>tr:hover>.default,.table-hover>tbody>tr>td.default:hover,.table-hover>tbody>tr>th.default:hover,.table>tbody>tr.default>td,.table>tbody>tr.default>th,.table>tbody>tr>td.default,.table>tbody>tr>th.default,.table>tfoot>tr.default>td,.table>tfoot>tr.default>th,.table>tfoot>tr>td.default,.table>tfoot>tr>th.default,.table>thead>tr.default>td,.table>thead>tr.default>th,.table>thead>tr>td.default,.table>thead>tr>th.default{background-color:var(--color-background-secondary)}.table-responsive{overflow-x:auto;min-height:.01%}.table-responsive.table-bordered{border:0}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:24px;margin-bottom:var(--size-24,24px);overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.table-responsive.table-bordered{border:1px solid rgba(134,167,189,.10196078431372549);border:1px solid var(--color-background-neutral,rgba(134,167,189,.10196078431372549));border-radius:3px}}@media (min-width:768px){.table{display:table}.table>.thead{display:table-header-group}.table>.thead>ol{display:table-row}.table>.thead>ol>li{display:table-cell;font-weight:800;font-weight:var(--font-weight-bold,800);color:#37517e;color:var(--color-content-primary,#37517e)}.table>.tbody{display:table-row-group}.table>.tbody>dl{display:table-row}.table>.tbody>dl>dt{display:none}.table>.tbody>dl>dd{display:table-cell;font-size:.875rem;font-size:var(--font-size-14,.875rem);color:#5d7079;color:var(--color-content-secondary,#5d7079)}.table>.tfoot{display:table-footer-group}}@media (max-width:767px){.table>.thead{display:none}.table>.tbody>dl{border:1px solid #c9cbce;border:1px solid var(--color-interactive-secondary,#c9cbce);border-radius:3px;margin-bottom:24px;margin-bottom:var(--size-24,24px);padding:24px 1.5 0;padding:var(--size-24,24px) var(--line-height-body,1.5) 0}.table>.tbody>dl>dd{padding:0;border:0}.table>.tbody>dl>dd:empty{margin:0}}@media (max-width:575px){.table>.tbody>dl{padding-bottom:8px}}.table-calendar{min-width:300px}.table-calendar>tbody>tr>td{padding:0}.table-calendar>tbody>tr>td>a{display:block;padding:4px 0;margin:4px 2px;border-radius:3px;text-align:center;text-decoration:none}.table-calendar>tbody>tr>td>a.active{background-color:#37517e;color:#fff}.table-calendar>tbody>tr>td>a:not([disabled]):hover{background-color:#0097c7;background-color:var(--color-content-accent,#0097c7);color:#fff}.table-calendar>thead>tr>th{text-align:center}
|
package/dist/css/tick.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tw-checkbox-check{position:relative;display:inline-block;width:10px;height:8px}.tw-checkbox-check:after,.tw-checkbox-check:before{content:"";position:absolute;background:#fff;background:var(--color-background-screen,#fff);transform:translateX(.5px) rotate(-45deg);transform-origin:left bottom;left:8px;left:var(--size-8,8px)}.tw-checkbox-button[disabled] .tw-checkbox-check:after,.tw-checkbox-button[disabled] .tw-checkbox-check:before,input[type=checkbox]:disabled+.tw-checkbox-button .tw-checkbox-check:after,input[type=checkbox]:disabled+.tw-checkbox-button .tw-checkbox-check:before{background-color:#a8aaac;background-color:var(--color-
|
|
1
|
+
.tw-checkbox-check{position:relative;display:inline-block;width:10px;height:8px}.tw-checkbox-check:after,.tw-checkbox-check:before{content:"";position:absolute;background:#fff;background:var(--color-background-screen,#fff);transform:translateX(.5px) rotate(-45deg);transform-origin:left bottom;left:8px;left:var(--size-8,8px)}.tw-checkbox-button+.tw-checkbox-button .tw-checkbox-check:after,.tw-checkbox-button+.tw-checkbox-button .tw-checkbox-check:before,.tw-checkbox-button[disabled] .tw-checkbox-check:after,.tw-checkbox-button[disabled] .tw-checkbox-check:before,input[type=checkbox]:disabled+.tw-checkbox-button .tw-checkbox-check:after,input[type=checkbox]:disabled+.tw-checkbox-button .tw-checkbox-check:before{background-color:#a8aaac;background-color:var(--color-interactive-disabled,#a8aaac)}.tw-checkbox-check .has-error:after,.tw-checkbox-check .has-error:before{background-color:#e74848;background-color:var(--color-interactive-negative,#e74848)}.tw-checkbox-check:before{top:9px;height:6px;width:2px}.tw-checkbox-check:after{bottom:5px;height:2px;width:11px}
|
package/dist/css/tooltip.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tooltip{position:absolute;z-index:1070;display:block;font-family:Averta,Avenir W02,Avenir,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:24px;text-align:left;text-
|
|
1
|
+
.tooltip{position:absolute;z-index:1070;display:block;font-family:Averta,Avenir W02,Avenir,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:24px;text-align:left;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;opacity:0}[dir=rtl] .tooltip{text-align:right}.tooltip.in{opacity:1}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{padding:0 5px}[dir=rtl] .tooltip.right{margin-right:3px}html:not([dir=rtl]) .tooltip.right{margin-left:3px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{padding:0 5px}[dir=rtl] .tooltip.left{margin-right:-3px}html:not([dir=rtl]) .tooltip.left{margin-left:-3px}.tooltip-inner{max-width:200px;padding:16px;padding:var(--size-16,16px) var(--size-16,16px);color:#37517e;color:var(--color-content-primary,#37517e);text-align:center;background-color:#fff;background-color:var(--color-background-screen,#fff);border-radius:3px;box-shadow:0 1px 28px 0 rgba(34,48,73,.2)}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#fff;border-top-color:var(--color-background-screen,#fff)}[dir=rtl] .tooltip.top .tooltip-arrow{right:50%}html:not([dir=rtl]) .tooltip.top .tooltip-arrow{left:50%}[dir=rtl] .tooltip.top .tooltip-arrow{margin-right:-5px}html:not([dir=rtl]) .tooltip.top .tooltip-arrow{margin-left:-5px}.tooltip.right .tooltip-arrow{top:50%;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#fff;border-right-color:var(--color-background-screen,#fff)}[dir=rtl] .tooltip.right .tooltip-arrow{right:0}html:not([dir=rtl]) .tooltip.right .tooltip-arrow{left:0}.tooltip.left .tooltip-arrow{top:50%;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#fff;border-left-color:var(--color-background-screen,#fff)}[dir=rtl] .tooltip.left .tooltip-arrow{left:0}html:not([dir=rtl]) .tooltip.left .tooltip-arrow{right:0}.tooltip.bottom .tooltip-arrow{top:0;border-width:0 5px 5px;border-bottom-color:#fff;border-bottom-color:var(--color-background-screen,#fff)}[dir=rtl] .tooltip.bottom .tooltip-arrow{right:50%}html:not([dir=rtl]) .tooltip.bottom .tooltip-arrow{left:50%}[dir=rtl] .tooltip.bottom .tooltip-arrow{margin-right:-5px}html:not([dir=rtl]) .tooltip.bottom .tooltip-arrow{margin-left:-5px}[data-toggle=tooltip]:not(.btn){cursor:pointer}[data-toggle=tooltip]:not(.btn):focus,[data-toggle=tooltip]:not(.btn):hover{color:#00a4df!important;outline:0}a[data-toggle=tooltip]{white-space:nowrap}
|
package/dist/css/utilities.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right,.pull-xs-right{float:right!important}.pull-left,.pull-xs-left{float:left!important}.pull-xs-none{float:none!important}@media (min-width:576px){.pull-sm-left{float:left!important}.pull-sm-right{float:right!important}.pull-sm-none{float:none!important}}@media (min-width:768px){.pull-md-left{float:left!important}.pull-md-right{float:right!important}.pull-md-none{float:none!important}}@media (min-width:992px){.pull-lg-left{float:left!important}.pull-lg-right{float:right!important}.pull-lg-none{float:none!important}}@media (min-width:1200px){.pull-xl-left{float:left!important}.pull-xl-right{float:right!important}.pull-xl-none{float:none!important}}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{
|
|
1
|
+
.d-inline-block{display:inline-block}.d-inline{display:inline}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right,.pull-xs-right{float:right!important}.pull-left,.pull-xs-left,[dir=rtl] .pull-right,[dir=rtl] .pull-xs-right{float:left!important}[dir=rtl] .pull-left,[dir=rtl] .pull-xs-left{float:right!important}.pull-xs-none{float:none!important}@media (min-width:576px){.pull-sm-left{float:left!important}.pull-sm-right,[dir=rtl] .pull-sm-left{float:right!important}[dir=rtl] .pull-sm-right{float:left!important}.pull-sm-none{float:none!important}}@media (min-width:768px){.pull-md-left{float:left!important}.pull-md-right,[dir=rtl] .pull-md-left{float:right!important}[dir=rtl] .pull-md-right{float:left!important}.pull-md-none{float:none!important}}@media (min-width:992px){.pull-lg-left{float:left!important}.pull-lg-right,[dir=rtl] .pull-lg-left{float:right!important}[dir=rtl] .pull-lg-right{float:left!important}.pull-lg-none{float:none!important}}@media (min-width:1200px){.pull-xl-left{float:left!important}.pull-xl-right,[dir=rtl] .pull-xl-left{float:right!important}[dir=rtl] .pull-xl-right{float:left!important}.pull-xl-none{float:none!important}}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}.rotate90{transform:rotate(90deg)}.rotate180{transform:rotate(180deg)}.rotate270{transform:rotate(270deg)}.rotate-90{transform:rotate(-90deg)}
|
package/dist/css/wells.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.well,.well-xs{min-height:24px;min-height:var(--size-24,24px);margin-bottom:24px;margin-bottom:var(--size-24,24px);border-radius:3px;border-radius:var(--radius-small,3px);border:1px solid
|
|
1
|
+
.well,.well-xs{min-height:24px;min-height:var(--size-24,24px);margin-bottom:24px;margin-bottom:var(--size-24,24px);border-radius:3px;border-radius:var(--radius-small,3px);border:1px solid rgba(0,0,0,.10196078431372549);border:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549));padding:24px;padding:var(--size-24,24px);box-shadow:none}@media only screen and (min-width:576px){.well-sm{min-height:24px;min-height:var(--size-24,24px);margin-bottom:24px;margin-bottom:var(--size-24,24px);border-radius:3px;border-radius:var(--radius-small,3px);border:1px solid rgba(0,0,0,.10196078431372549);border:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549));padding:24px;padding:var(--size-24,24px);box-shadow:none}}@media only screen and (min-width:768px){.well-md{min-height:24px;min-height:var(--size-24,24px);margin-bottom:24px;margin-bottom:var(--size-24,24px);border-radius:3px;border-radius:var(--radius-small,3px);border:1px solid rgba(0,0,0,.10196078431372549);border:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549));padding:24px;padding:var(--size-24,24px);box-shadow:none}}@media only screen and (min-width:992px){.well-lg{min-height:24px;min-height:var(--size-24,24px);margin-bottom:24px;margin-bottom:var(--size-24,24px);border-radius:3px;border-radius:var(--radius-small,3px);border:1px solid rgba(0,0,0,.10196078431372549);border:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549));padding:24px;padding:var(--size-24,24px);box-shadow:none}}@media only screen and (min-width:1200px){.well-xl{min-height:24px;min-height:var(--size-24,24px);margin-bottom:24px;margin-bottom:var(--size-24,24px);border-radius:3px;border-radius:var(--radius-small,3px);border:1px solid rgba(0,0,0,.10196078431372549);border:1px solid var(--color-border-neutral,rgba(0,0,0,.10196078431372549));padding:24px;padding:var(--size-24,24px);box-shadow:none}}
|
|
@@ -1,48 +1,92 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Mon, 23 Aug 2021 09:29:19 GMT
|
|
4
4
|
|
|
5
|
-
@color-
|
|
6
|
-
@color-
|
|
7
|
-
@color-
|
|
8
|
-
@color-
|
|
9
|
-
@color-
|
|
10
|
-
@color-
|
|
11
|
-
@color-
|
|
12
|
-
@color-
|
|
13
|
-
@color-
|
|
14
|
-
@color-
|
|
15
|
-
@color-
|
|
16
|
-
@color-
|
|
17
|
-
@color-
|
|
18
|
-
@color-
|
|
19
|
-
@color-
|
|
20
|
-
@color-
|
|
21
|
-
@color-
|
|
22
|
-
@color-
|
|
23
|
-
@color-
|
|
24
|
-
@color-
|
|
25
|
-
@color-
|
|
26
|
-
@color-
|
|
27
|
-
@color-
|
|
28
|
-
@color-
|
|
29
|
-
@color-
|
|
30
|
-
@color-
|
|
31
|
-
@color-
|
|
32
|
-
@color-
|
|
33
|
-
@color-
|
|
34
|
-
@color-
|
|
35
|
-
@color-
|
|
36
|
-
@color-
|
|
37
|
-
@color-
|
|
38
|
-
@color-
|
|
5
|
+
@color-base-blue-light: #00b9ff;
|
|
6
|
+
@color-base-blue-mid: #00a2dd;
|
|
7
|
+
@color-base-blue-dark: #0097c7;
|
|
8
|
+
@color-base-blue-fade: #38c8ff1a;
|
|
9
|
+
@color-base-green-light: #6fd698;
|
|
10
|
+
@color-base-green-mid: #2ead4b;
|
|
11
|
+
@color-base-green-dark: #008026;
|
|
12
|
+
@color-base-green-fade: #36c7971a;
|
|
13
|
+
@color-base-red-light: #ffa6a9;
|
|
14
|
+
@color-base-red-mid: #e74848;
|
|
15
|
+
@color-base-red-dark: #cf2929;
|
|
16
|
+
@color-base-red-fade: #ff87871a;
|
|
17
|
+
@color-base-orange-light: #ffd184;
|
|
18
|
+
@color-base-orange-mid: #df8700;
|
|
19
|
+
@color-base-orange-dark: #9a6500;
|
|
20
|
+
@color-base-orange-fade: #ffac001a;
|
|
21
|
+
@color-base-smoke-light: #e2e6e8;
|
|
22
|
+
@color-base-smoke-mid: #c9cbce;
|
|
23
|
+
@color-base-smoke-dark: #a8aaac;
|
|
24
|
+
@color-base-smoke-fade: #86a7bd1a;
|
|
25
|
+
@color-base-navy-light: #37517e;
|
|
26
|
+
@color-base-navy-mid: #2e4369;
|
|
27
|
+
@color-base-navy-dark: #253655;
|
|
28
|
+
@color-base-navy-fade: #849cc51a;
|
|
29
|
+
@color-base-grey-light: #829ca9;
|
|
30
|
+
@color-base-grey-mid: #6f8691;
|
|
31
|
+
@color-base-grey-dark: #5d7079;
|
|
32
|
+
@color-base-grey-fade: #829ca91a;
|
|
33
|
+
@color-base-white-light: #ffffff;
|
|
34
|
+
@color-base-white-mid: #ebebeb;
|
|
35
|
+
@color-base-white-fade: #ffffff1a;
|
|
36
|
+
@color-base-black-light: #202020;
|
|
37
|
+
@color-base-black-mid: #181818;
|
|
38
|
+
@color-base-black-dark: #000000;
|
|
39
|
+
@color-base-black-fade: #0000001a;
|
|
40
|
+
@color-base-brand-blue: #00b9ff;
|
|
41
|
+
@color-base-brand-purple: #485cc7;
|
|
42
|
+
@color-base-brand-amber: #ffb619;
|
|
43
|
+
@color-base-brand-borderless: #44ee70;
|
|
44
|
+
|
|
45
|
+
// Do not edit directly
|
|
46
|
+
// Generated on Mon, 23 Aug 2021 09:29:19 GMT
|
|
47
|
+
|
|
48
|
+
@color-content-primary: #37517e;
|
|
49
|
+
@color-content-secondary: #5d7079;
|
|
50
|
+
@color-content-accent: #0097c7;
|
|
51
|
+
@color-content-accent-hover: #0084b3;
|
|
52
|
+
@color-content-accent-active: #0077a5;
|
|
53
|
+
@color-content-positive: #008026;
|
|
54
|
+
@color-content-positive-hover: #006d13;
|
|
55
|
+
@color-content-positive-active: #006002;
|
|
56
|
+
@color-content-negative: #cf2929;
|
|
57
|
+
@color-content-negative-hover: #b80419;
|
|
58
|
+
@color-content-negative-active: #a7000d;
|
|
59
|
+
@color-content-warning: #9a6500;
|
|
60
|
+
@color-content-warning-hover: #855400;
|
|
61
|
+
@color-content-warning-active: #764700;
|
|
62
|
+
@color-content-disabled: #a8aaac;
|
|
63
|
+
@color-interactive-accent: #00a2dd;
|
|
64
|
+
@color-interactive-accent-hover: #008fc9;
|
|
65
|
+
@color-interactive-accent-active: #0081ba;
|
|
66
|
+
@color-interactive-positive: #2ead4b;
|
|
67
|
+
@color-interactive-positive-hover: #069939;
|
|
68
|
+
@color-interactive-positive-active: #008b2b;
|
|
69
|
+
@color-interactive-negative: #e74848;
|
|
70
|
+
@color-interactive-negative-hover: #d03238;
|
|
71
|
+
@color-interactive-negative-active: #bf1e2c;
|
|
72
|
+
@color-interactive-warning: #df8700;
|
|
73
|
+
@color-interactive-warning-hover: #c97500;
|
|
74
|
+
@color-interactive-warning-active: #b86700;
|
|
75
|
+
@color-interactive-secondary: #c9cbce;
|
|
76
|
+
@color-interactive-secondary-hover: #b5b7ba;
|
|
77
|
+
@color-interactive-secondary-active: #a7a9ab;
|
|
78
|
+
@color-interactive-disabled: #a8aaac;
|
|
39
79
|
@color-background-screen: #ffffff;
|
|
40
80
|
@color-background-elevated: #ffffff;
|
|
41
|
-
@color-background-neutral: #
|
|
42
|
-
@color-background-accent: #
|
|
43
|
-
@color-background-positive: #
|
|
44
|
-
@color-background-negative: #
|
|
45
|
-
@color-background-warning: #
|
|
81
|
+
@color-background-neutral: #86a7bd1a;
|
|
82
|
+
@color-background-accent: #38c8ff1a;
|
|
83
|
+
@color-background-positive: #36c7971a;
|
|
84
|
+
@color-background-negative: #ff87871a;
|
|
85
|
+
@color-background-warning: #ffac001a;
|
|
86
|
+
@color-background-overlay: #0000001a;
|
|
87
|
+
@color-border-neutral: #0000001a;
|
|
88
|
+
@color-border-overlay: #0000001a;
|
|
89
|
+
@color-core-contrast: #000000;
|
|
46
90
|
@radius-small: 3px;
|
|
47
91
|
@radius-medium: 10px;
|
|
48
92
|
@size-4: 4px;
|
|
@@ -63,6 +107,7 @@
|
|
|
63
107
|
@size-112: 112px;
|
|
64
108
|
@size-120: 120px;
|
|
65
109
|
@size-128: 128px;
|
|
110
|
+
@space-content-horizontal: 16px;
|
|
66
111
|
@font-size-12: 0.75rem;
|
|
67
112
|
@font-size-14: 0.875rem;
|
|
68
113
|
@font-size-16: 1rem;
|
|
@@ -75,41 +120,3 @@
|
|
|
75
120
|
@font-weight-regular: 500;
|
|
76
121
|
@font-weight-semi-bold: 600;
|
|
77
122
|
@font-weight-bold: 800;
|
|
78
|
-
|
|
79
|
-
// Including colours which aren't semantic props yet.
|
|
80
|
-
|
|
81
|
-
// Do not edit directly
|
|
82
|
-
// Generated on Tue, 20 Apr 2021 11:20:11 GMT
|
|
83
|
-
|
|
84
|
-
@color-base-blue-light: #00b9ff;
|
|
85
|
-
@color-base-blue-mid: #00a4df;
|
|
86
|
-
@color-base-blue-dark: #008ec0;
|
|
87
|
-
@color-base-blue-fade: #d8f1fa;
|
|
88
|
-
@color-base-green-light: #2ed06e;
|
|
89
|
-
@color-base-green-mid: #28b862;
|
|
90
|
-
@color-base-green-dark: #1d8547;
|
|
91
|
-
@color-base-green-fade: #d6f6e2;
|
|
92
|
-
@color-base-red-light: #f53636;
|
|
93
|
-
@color-base-red-mid: #cf3131;
|
|
94
|
-
@color-base-red-dark: #b62a18;
|
|
95
|
-
@color-base-red-fade: #ffdfdf;
|
|
96
|
-
@color-base-orange-light: #ffa600;
|
|
97
|
-
@color-base-orange-mid: #df8700;
|
|
98
|
-
@color-base-orange-dark: #c07500;
|
|
99
|
-
@color-base-orange-fade: #fff4dd;
|
|
100
|
-
@color-base-smoke-light: #e2e6e8;
|
|
101
|
-
@color-base-smoke-mid: #d3d5d8;
|
|
102
|
-
@color-base-smoke-dark: #a8aaac;
|
|
103
|
-
@color-base-smoke-fade: #f2f5f7;
|
|
104
|
-
@color-base-navy-light: #37517e;
|
|
105
|
-
@color-base-navy-mid: #2e4369;
|
|
106
|
-
@color-base-navy-dark: #253655;
|
|
107
|
-
@color-base-navy-fade: #a8afbb;
|
|
108
|
-
@color-base-grey-light: #829ca9;
|
|
109
|
-
@color-base-grey-mid: #6f8691;
|
|
110
|
-
@color-base-grey-dark: #5d7079;
|
|
111
|
-
@color-base-brand-blue: #00b9ff;
|
|
112
|
-
@color-base-brand-purple: #485cc7;
|
|
113
|
-
@color-base-brand-amber: #ffb619;
|
|
114
|
-
@color-base-brand-borderless: #44ee70;
|
|
115
|
-
@color-base-white: #ffffff;
|